Type alias SellOrder

SellOrder: {
    sellToken: SellToken;
    buyToken: BuyToken;
    makerFees?: OrderFee[];
    orderExpiry?: Date;
}

The type representing the sell order to create a listing from

Type declaration

  • sellToken: SellToken

    the token to be listed for sale

  • buyToken: BuyToken

    the token info of the price of the item

  • Optional makerFees?: OrderFee[]

    optional array of makerFees to be applied to the listing

  • Optional orderExpiry?: Date

    optional order expiry date. Default order expiry to 2 years from now

Generated using TypeDoc