Docs

ClaimedToken

type ClaimedToken = {
  collectionTitle: string;
  contractAddress: string;
  metadata: {
    description: string | undefined;
    image: string | undefined;
    name: string;
    properties: object | undefined;
  };
  tokenId: string;
  transactions: {
    claimExplorerUrl: string;
    claimHash: string;
    transferExplorerUrl: string | undefined;
    transferHash: string | undefined;
  };
};