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;  };};
The title of the collection.
type collectionTitle = string;
The address of the NFT contract.
type contractAddress = string;
type metadata = {  description: string | undefined;  image: string | undefined;  name: string;  properties: object | undefined;};
The ID of the token in the collection that was claimed. For ERC-721 collections, this ID is unique for each claim. For ERC-1155 collections, this ID is identical for all buyers of this NFT token.
type tokenId = string;
type transactions = {  claimExplorerUrl: string;  claimHash: string;  transferExplorerUrl: string | undefined;  transferHash: string | undefined;};