Claim from drop contract using contract explorer
This support guide will teach you how to claim using Contract Explorer by calling the claim contract function of your NFT Drop, Edition Drop & Token Drop
Prerequisite
Claim
button, which is much easier than doing this on contract explorer if you have an allowlist. - How to claim using Contract Explorer by calling the
claim
contract function of your Token Drop contract - Go to your Dashboard and connect your wallet.
- Click the
Explorer
tab from the left panel of your dashboard. - After that, click the
Write
tab and look for theclaim
function. - Use the following reference input values to claim your ERC-20 from Token Drop.
- Done, execute the smart contract function.
Receiver - The wallet address of the receiver.
Quantity - The quantity you want to claim from the Token Drop. This should be in wei
value.
Currency - The currency you want to use for claiming the tokens. This should be in wei
value.
Allowlist Proof - You can use the following allowlist proof specifically for public claim phase.
{
"proof": [],
"quantityLimitPerWallet": "0",
"pricePerToken": "0",
"currency": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee"
}
Data - For this one use []
- How to claim using Contract Explorer by calling the
claim
contract function of your Edition Drop contract - Go to your Dashboard and connect your wallet.
- Click the
Explorer
tab from the left panel of your dashboard. After that, click theWrite
tab and look for theclaim
contract function. - Use the following reference input values to claim your ERC-1155 from NFT Drop.
- Done, execute the smart contract function.
Receiver - The wallet address of the receiver.
Token Id - The token ID of the token you want to mint.
Quantity - The quantity you want to claim from the Edition Drop. (e.g. 1
)
Currency - The currency you want to use for claiming the tokens. If you want to use the native currency. Use the following below.
0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
Price Per Token - The price of each token in wei
value.
Allowlist Proof - You can use the proof values below specifically for the public claim condition.
{
"proof": [],
"quantityLimitPerWallet": "0",
"pricePerToken": "0",
"currency": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee"
}
Data - For this one use []
Native Token Value - Calculate it by multiplying the quantity and the price per token in ether
value. (e.g. quantity
* pricePerToken
)
- How to claim using Contract Explorer by calling the
claim
contract function of your NFT Drop contract. - Go to your Dashboard and connect your wallet.
- Click the
Explorer
tab from the left panel of your dashboard. After that, click theWrite
tab and look for theclaim
contract function. - Use the following reference input values to claim your ERC-721 from NFT Drop.
- Done, execute the smart contract function.
Receiver - The wallet address of the receiver.
Quantity - The quantity you want to claim from the NFT Drop. (e.g. 1
)
Currency - The currency you want to use for claiming the tokens. If you want to use the native currency. Use the following below.
0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
Price Per Token - The price of each token in wei
value.
Allowlist Proof - You can use the proof values below specifically for the public claim condition.
{
"proof": [],
"quantityLimitPerWallet": "0",
"pricePerToken": "0",
"currency": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee"
}
Data - For this one use []
Native Token Value - Calculate it by multiplying the quantity and the price per token in ether
value. (e.g. quantity
* pricePerToken
)
Can’t get this working? If you’ve followed the above and still have issues, contact our support team for help.