NFT Collection Configuration
We need to provide the chain and the NFT collection, which the IDP Kit must check, when users are trying to log in. The values can be set in the config/idp-config.json
under default_nft_token_claim
Choose the ecosystem of where your NFT collection is hosted
"default_nft_token_claim": {
"EVM": {
"chain": "MUMBAI",
"factorySmartContractAddress": "",
"smartContractAddress": "0x3496756a84E186DC8C0d7ef91BcD393200ef5Ebc",
"collectionPath": ""
}
}
Now that we have finished the configuration, we need to rebuild the project for the changes to take effect, run the API and connect our client to it.
Rebuild the project
./gradlew build install
2. Expose the API
idpkit run
Last updated
Was this helpful?