getTransactionCount method
Gets the transaction count (nonce) for an address.
Implementation
Future<BigInt> getTransactionCount(
String address, [
String block = 'latest',
]) async {
return provider.getTransactionCount(address, block);
}
Gets the transaction count (nonce) for an address.
Future<BigInt> getTransactionCount(
String address, [
String block = 'latest',
]) async {
return provider.getTransactionCount(address, block);
}