opensea-js - v8.0.20
    Preparing search index...

    Type Alias OrderV2

    The latest OpenSea Order schema.

    type OrderV2 = {
        cancelled: boolean;
        clientSignature: string | null;
        closingDate: string | null;
        createdDate: string;
        currentPrice: bigint;
        expirationTime: number;
        finalized: boolean;
        listingTime: number;
        maker: OpenSeaAccount;
        makerFees: OrderFee[];
        markedInvalid: boolean;
        orderHash: string | null;
        orderType: OrderType;
        protocolAddress: string;
        protocolData: ProtocolData;
        remainingQuantity: number;
        side: OrderSide;
        taker: OpenSeaAccount | null;
        takerFees: OrderFee[];
    }
    Index

    Properties

    cancelled: boolean

    Whether or not the maker has cancelled the order.

    clientSignature: string | null

    The signature the order is signed with.

    closingDate: string | null

    The date the order was closed.

    createdDate: string

    The date the order was created.

    currentPrice: bigint

    The current price of the order.

    expirationTime: number

    The date the order expires.

    finalized: boolean

    Whether or not the order is finalized.

    listingTime: number

    The date the order was listed. Order can be created before the listing time.

    The account that created the order.

    makerFees: OrderFee[]

    The maker fees for the order.

    markedInvalid: boolean

    Whether or not the order is marked invalid and therefore not fillable.

    orderHash: string | null

    The hash of the order.

    orderType: OrderType

    The type of the order. Basic/English/Criteria

    protocolAddress: string

    The contract address of the protocol.

    protocolData: ProtocolData

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

    remainingQuantity: number

    Amount of items left in the order which can be taken.

    side: OrderSide

    The side of the order. Listing/Offer

    taker: OpenSeaAccount | null

    The account that filled the order.

    takerFees: OrderFee[]

    The taker fees for the order.