Interface UnsignedOrderRequest

Parameter required to create an Order

interface UnsignedOrderRequest {
    buy: TokenAmount;
    sell: TokenAmount;
    expiration_timestamp?: number;
    fees?: FeeEntry[];
}

Properties

The amount of tokens that will be bought for this order

The amount of tokens that will be sold for this order

expiration_timestamp?: number

ExpirationTimestamp in Unix time. Note: will be rounded down to the nearest hour

fees?: FeeEntry[]

Inclusion of either maker or taker fees