🔒
certDAO Documentation
sitegovgithub
  • Overview
  • DAOenomics
  • Registration
  • Integration
Powered by GitBook
On this page

Integration

PreviousRegistration

Last updated 2 years ago

Integration with certDAO is simple. All you need to do is add a few lines of code to your wallet or interface.

The most current certDAO ABI is available .

Integration example

There is one main view method that you will need to call to verify that a contract is the intended contract for a given domain.

    function verify(address contractAddress, string memory domainName)
        external
        view
        returns (bool);

The method takes in the contract address and the URL without the protocol or www and returns a bool indicating whether or not the contract is the intended contract for the given domain.

e.g verify(0x12345678910, "certdao.net") will return true if the contract is the intended contract for certdao.net.

There are also many view methods allowing for verification of the contract owner, the contract address, the domain name, and the registration status.

You can view them all .

If you have any more questions, please reach out on discord!

here
here