getTransactionCount method

Future<BigInt> getTransactionCount(
  1. String address, [
  2. String block = 'latest'
])

Gets the transaction count (nonce) for an address.

Implementation

Future<BigInt> getTransactionCount(
  String address, [
  String block = 'latest',
]) async {
  return provider.getTransactionCount(address, block);
}