public Web3.Web3 GetWeb3()
 {
     if (_web3 == null)
     {
         _web3 = new Web3.Web3(AccountFactory.GetAccount(), ClientFactory.GetClient());
     }
     return(_web3);
 }
Ejemplo n.º 2
0
 public static Web3.Web3 GetWeb3Managed()
 {
     return(new Web3.Web3(AccountFactory.GetManagedAccount(), ClientFactory.GetClient()));
 }