Ethereum constructor

Ethereum(
  1. EthereumINetworkAdapter _networkAdapter
)

Default constructor

Implementation

Ethereum(this._networkAdapter) {
  rpcClient = EthereumRpcClient(_networkAdapter);

  /// Construct the API classes
  _eth = EthereumApiEth(this);
  _admin = EthereumApiAdmin(this);
}