GetMintRequestResult

interface GetMintRequestResult {
    chain: blockchainData.Types.Chain;
    collection_address: string;
    reference_id: string;
    owner_address: string;
    token_id: null | string;
    amount?: null | string;
    activity_id?: null | string;
    transaction_hash: null | string;
    created_at: string;
    updated_at: string;
    error: null | MintRequestErrorMessage;
    status: MintRequestStatus;
}

Properties

GetMintRequestResult

collection_address: string

The address of the contract

GetMintRequestResult

reference_id: string

The reference id of this mint request

GetMintRequestResult

owner_address: string

The address of the owner of the NFT

GetMintRequestResult

token_id: null | string

An uint256 token id as string. Only available when the mint request succeeds

GetMintRequestResult

amount?: null | string

An uint256 amount as string. Only relevant for mint requests on ERC1155 contracts

GetMintRequestResult

activity_id?: null | string

The id of the mint activity associated with this mint request

GetMintRequestResult

transaction_hash: null | string

The transaction hash of the activity

GetMintRequestResult

created_at: string

When the mint request was created

GetMintRequestResult

updated_at: string

When the mint request was last updated

GetMintRequestResult

GetMintRequestResult

GetMintRequestResult