nonceSequenceNumber method

Future<BigInt> nonceSequenceNumber(
  1. EthereumAddress $param20,
  2. BigInt $param21,
  3. {BlockNum? atBlock}
)

The optional atBlock parameter can be used to view historical data. When set, the function will be evaluated in the specified block. By default, the latest on-chain block will be used.

Implementation

Future<BigInt> nonceSequenceNumber(
  _i1.EthereumAddress $param20,
  BigInt $param21, {
  _i1.BlockNum? atBlock,
}) async {
  final function = self.abi.functions[14];
  assert(checkSignature(function, '1b2e01b8'));
  final params = [
    $param20,
    $param21,
  ];
  final response = await read(
    function,
    params,
    atBlock,
  );
  return (response[0] as BigInt);
}