Inheritance: RpcClientWrapper
Example #1
0
 public Web3(string url = @"http://localhost:8545/")
 {
     IntialiseRpcClient(url);
     Eth = new Eth(Client);
     Shh = new Shh(Client);
     Net =new Net(Client);
 }
Example #2
0
 private void InitialiseInnerServices()
 {
     Eth = new Eth(Client);
     Shh = new Shh(Client);
     Net = new Net(Client);
     Personal = new Personal(Client);
     Miner = new Miner(Client);
     DebugGeth = new DebugGeth(Client);
     Admin = new Admin(Client);
     Convert = new UnitConversion();
     sha3Keccack = new Sha3Keccack();
     OfflineTransactionSigning = new TransactionSigning();
     addressUtil = new AddressUtil();
 }