Interface Transfer

interface Transfer {
    receiver: string;
    status: string;
    timestamp: null | string;
    token: Token;
    transaction_id: number;
    user: string;
}

Hierarchy

  • Transfer
    • Transfer

Properties

receiver: string

Ethereum address of the user who received this transfer

Transfer

status: string

Status of the transaction

Transfer

timestamp: null | string

Timestamp of the transfer

Transfer

token: Token

Transfer

transaction_id: number

Sequential transaction ID

Transfer

user: string

Ethereum address of the user who submitted this transfer

Transfer