createRefundBody method

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

Implementation

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