createCollectFeesBody method

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

Implementation

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