MintAsset

interface MintAsset {
    reference_id: string;
    owner_address: string;
    token_id?: 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. It is recommended to omit token_id for more efficient minting

MintAsset

MintAsset