Type alias Order

Order: {
    chain: string;
    order_hash: string;
    price: Price;
    protocol_address: string;
    protocol_data: ProtocolData;
}

Base Order type shared between Listings and Offers.

Type declaration

  • chain: string

    Chain the offer exists on

  • order_hash: string

    Offer Identifier

  • price: Price

    The price of the order.

  • protocol_address: string

    The contract address of the protocol.

  • protocol_data: ProtocolData

    The protocol data for the order. Only 'seaport' is currently supported.