Most recent trade

LastTrade

interface LastTrade {
    trade_id: string;
    contract_address: string;
    token_id: string;
    price_details: MarketPriceDetails[];
    amount: string;
    created_at: string;
}

Properties

trade_id: string

Trade ID

LastTrade

contract_address: string

ETH Address of collection that the asset belongs to

LastTrade

token_id: string

Token id of the traded asset (uint256 as string)

LastTrade

price_details: MarketPriceDetails[]

Price details, list of payments involved in this trade

LastTrade

amount: string

Amount of the trade (uint256 as string)

LastTrade

created_at: string

When the trade was created

LastTrade