wire_Contract_new method

WireSyncRust2DartDco wire_Contract_new(
  1. int account_id,
  2. int sub_account_id,
  3. int slot_id,
  4. int nonce,
  5. int pair_id,
  6. Pointer<wire_cst_list_prim_u_8_strict> size,
  7. Pointer<wire_cst_list_prim_u_8_strict> price,
  8. bool direction,
  9. int maker_fee_rate,
  10. int taker_fee_rate,
  11. bool has_subsidy,
)

Implementation

WireSyncRust2DartDco wire_Contract_new(
  int account_id,
  int sub_account_id,
  int slot_id,
  int nonce,
  int pair_id,
  ffi.Pointer<wire_cst_list_prim_u_8_strict> size,
  ffi.Pointer<wire_cst_list_prim_u_8_strict> price,
  bool direction,
  int maker_fee_rate,
  int taker_fee_rate,
  bool has_subsidy,
) {
  return _wire_Contract_new(
    account_id,
    sub_account_id,
    slot_id,
    nonce,
    pair_id,
    size,
    price,
    direction,
    maker_fee_rate,
    taker_fee_rate,
    has_subsidy,
  );
}