getCollectFeeTxParams method

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

Implementation

SenderArguments getCollectFeeTxParams({
  BigInt? gasAmount,
  BigInt? queryId,
}) {
  final to = this.address;
  final body = createCollectFeesBody(queryId: queryId);
  final value = gasAmount ?? gasConstants.collectFees;

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