getTransactionCount method

Future<int> getTransactionCount([
  1. dynamic blockTag
])

Returns the number of transactions this account has ever sent at blockTag.

This is the value required to be included in transactions as the nonce.

Implementation

Future<int> getTransactionCount([dynamic blockTag]) =>
    _call<int>('getTransactionCount', blockTag != null ? [blockTag] : []);