Direct Contract Integration

Everyone can easily integrate with our polygon smart contract and retrieve all informations.

The LogicContract is public at this address : 0xaFc1415C2EfdDf1a2e24Ccedb0E1A6088732d7d5

GetOwner()

You can retrieve the nickname owner address thanks to the getOwner() function.

function getOwner(string calldata nickname) view external returns (address){}

GetAddress()

With getAddress() function you can retrieve the mapped address related to the a specific nickname.

function getAddress(string calldata nickname) view external returns (address){}

Please note: by default when users buy a nickname the mapped address is automatically set to the user address, but it can be changed in a second moment.

For advanced integration see "Collaborations" section

Last updated