MintAsset

interface MintAsset {
    reference_id: string;
    owner_address: string;
    token_id?: null | string;
    amount?: null | string;
    metadata?: NFTMetadataRequest;
}

Properties

reference_id: string

The id of this asset in the system that originates the mint request

MintAsset

owner_address: string

The address of the receiver

MintAsset

token_id?: null | string

An optional uint256 token id as string. Required for ERC1155 collections.

MintAsset

amount?: null | string

Optional mount of tokens to mint. Required for ERC1155 collections. ERC712 collections can omit this field or set it to 1

MintAsset

MintAsset