createWithdrawFeeBody method

Cell createWithdrawFeeBody({
  1. BigInt? queryId,
})

Implementation

Cell createWithdrawFeeBody({
  BigInt? queryId,
}) {
  return beginCell()
      .storeUint(DexOpCodes.WITHDRAW_FEE.op, 32)
      .storeUint(queryId ?? BigInt.zero, 64)
      .endCell();
}