interface Listing {
    type: "LISTING";
    sell: (ERC721Item | ERC1155Item)[];
    buy: (NativeItem | ERC20Item)[];
    id: string;
    chain: {
        id: string;
        name: string;
    };
    accountAddress: string;
    fees: orderbook.Fee[];
    status: OrderStatus;
    fillStatus: {
        numerator: string;
        denominator: string;
    };
    startAt: string;
    endAt: string;
    salt: string;
    signature: string;
    orderHash: string;
    protocolData: {
        orderType: "FULL_RESTRICTED" | "PARTIAL_RESTRICTED";
        zoneAddress: string;
        counter: string;
        seaportAddress: string;
        seaportVersion: string;
    };
    createdAt: string;
    updatedAt: string;
}

Hierarchy

  • OrderFields
    • Listing

Properties

type: "LISTING"
id: string
chain: {
    id: string;
    name: string;
}
accountAddress: string
fees: orderbook.Fee[]
status: OrderStatus
fillStatus: {
    numerator: string;
    denominator: string;
}
startAt: string

Time after which the Order is considered active

endAt: string

Time after which the Order is expired

salt: string
signature: string
orderHash: string
protocolData: {
    orderType: "FULL_RESTRICTED" | "PARTIAL_RESTRICTED";
    zoneAddress: string;
    counter: string;
    seaportAddress: string;
    seaportVersion: string;
}
createdAt: string
updatedAt: string