Type Alias WrapperPlaceOrderReverseParamsExternal

WrapperPlaceOrderReverseParamsExternal: {
    clientOrderId: bignum;
    isBid: boolean;
    numBaseTokens: number;
    orderType: OrderType;
    spreadBps: number;
    tokenPrice: number;
}

Same as the autogenerated WrapperPlaceOrderParamsExternal except lastValidSlot is spread.

Type declaration

  • clientOrderId: bignum

    Client order id used for cancelling orders. Does not need to be unique.

  • isBid: boolean

    Boolean for whether this order is on the bid side.

  • numBaseTokens: number

    Number of base tokens in the order.

  • orderType: OrderType

    Type of order (Limit, PostOnly, ...).

  • spreadBps: number

    Spread in bps. Can be between 0 and 6553 in increments of .1

  • tokenPrice: number

    Price as float in quote tokens per base tokens.