OrderCore: Token & {
    direction: TradeDirection;
    erc20Token: string;
    erc20TokenAmount: Bignumber;
    expiry: string;
    fees: Fee[];
    maker: UserAddress;
    nonce: string;
    signedAt: string;
    taker: UserAddress;
}

Type declaration

  • direction: TradeDirection
  • erc20Token: string

    the token used for the payment

  • erc20TokenAmount: Bignumber

    the amount of tokens used for the payment

  • expiry: string

    Expiration date of the order

  • fees: Fee[]
  • maker: UserAddress
  • nonce: string

    A generated unique identifier of the order. It's strongly adviced to use UUIDs.

  • signedAt: string

    Date of the signature

  • taker: UserAddress