Bid

interface Bid {
    bid_id: string;
    price_details: MarketPriceDetails;
    token_id: null | string;
    contract_address: string;
    creator: string;
    amount: string;
}

Properties

bid_id: string

Global Order identifier

Bid

price_details: MarketPriceDetails

Bid

token_id: null | string

Token ID. Null for collection bids that can be fulfilled by any asset in the collection

Bid

contract_address: string

ETH Address of collection that the asset belongs to

Bid

creator: string

ETH Address of listing creator

Bid

amount: string

Amount of token included in the listing

Bid