Interface Deposit

interface Deposit {
    status: string;
    timestamp: string;
    token: Token;
    transaction_id: number;
    user: string;
}

Hierarchy

  • Deposit
    • Deposit

Properties

status: string

Status of this deposit in Immutable X

Deposit

timestamp: string

Timestamp of the deposit

Deposit

token: Token

Deposit

transaction_id: number

Sequential ID of this transaction within Immutable X

Deposit

user: string

Ethereum address of the user making this deposit

Deposit