public Erc20WalletScanner(Erc20Account account, EthereumAccount ethereumAccount)
 {
     Account         = account ?? throw new ArgumentNullException(nameof(account));
     EthereumAccount = ethereumAccount ?? throw new ArgumentNullException(nameof(ethereumAccount));
 }
Beispiel #2
0
 public EthereumWalletScanner(EthereumAccount account)
 {
     Account = account ?? throw new ArgumentNullException(nameof(account));
 }