Hello anybody I need help with the merkleproof I have the proofs but don now how work the function I need to execute is claim
This is the smart contract 0x393a6aAeF8810EEE8Fd262cE62754E6DEB95f509
Is ethereum contract
Hi, welcome to the community!
It seems like you should call this function to claim:
function claim(
uint256 index, // the beneficiary's index in the merkle root
address beneficiary, // the address that will receive tokens
uint256 totalAmount, // the total claimable by this beneficiary
bytes32[] calldata merkleProof
) {}
So in addition to the parameter merkleProof
, you need three other parameters.