Token Ownership Claiming
Explains the recommended user experience for how a user should claim something based on ownership.
User experience steps
// A rough example const filteredDelegations = incomingDelegations.filter(delegation => { return delegation.type === "ALL" || delegation.type === "CONTRACT" && delegation.contract === NFT_CONTRACT || delegation.type === "ERC721" && delegation.contract === NFT_CONTRACT })const delegatedWallets = [...new Set(filteredDelegations.map(delegation => delegation.from))];
Last updated