Interface Exchange

interface Exchange {
    created_at?: string;
    data?: OptionalExchangeData;
    id?: number;
    provider?: string;
    status?: string;
    type?: string;
    updated_at?: string;
    wallet_address?: string;
}

Hierarchy

  • Exchange
    • Exchange

Properties

created_at?: string

Time this transaction was created

Exchange

data?: OptionalExchangeData

Exchange

id?: number

Transaction ID

Exchange

provider?: string

Provider name

Exchange

status?: string

Transaction status

Exchange

type?: string

Transaction type

Exchange

updated_at?: string

Time this transaction was updates

Exchange

wallet_address?: string

Ethereum address of the user who created transaction

Exchange