public Erc20WalletScanner(Erc20Account account, EthereumAccount ethereumAccount)
 {
     Account         = account ?? throw new ArgumentNullException(nameof(account));
     EthereumAccount = ethereumAccount ?? throw new ArgumentNullException(nameof(ethereumAccount));
 }
Exemplo n.º 2
0
 public EthereumWalletScanner(EthereumAccount account)
 {
     Account = account ?? throw new ArgumentNullException(nameof(account));
 }