createResetGasBody method

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

Implementation

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