getResetGasTxParams method

SenderArguments getResetGasTxParams({
  1. BigInt? queryId,
  2. BigInt? gasAmount,
})

Implementation

SenderArguments getResetGasTxParams({
  BigInt? queryId,
  BigInt? gasAmount,
}) {
  final to = this.address;
  final body = createResetGasBody(queryId: queryId);
  final value = gasAmount ?? gasConstants.resetGas;

  return SenderArguments(to: to, value: value, body: body);
}