Interface Mint

interface Mint {
    fees?: Fee[];
    status: string;
    timestamp: string;
    token: Token;
    transaction_id: number;
    user: string;
}

Hierarchy

  • Mint
    • Mint

Properties

fees?: Fee[]

Fee details

Mint

status: string

Status of this mint

Mint

timestamp: string

Timestamp this mint was initiated

Mint

token: Token

Mint

transaction_id: number

Sequential ID of transaction in Immutable X

Mint

user: string

Ethereum address of the user to whom the asset has been minted

Mint