public Nethereum.Web3.Web3 GetWeb3()
 {
     if (_web3 == null)
     {
         _web3 = new Nethereum.Web3.Web3(AccountFactory.GetAccount(), ClientFactory.GetClient());
     }
     return(_web3);
 }
 public static Nethereum.Web3.Web3 GetWeb3Managed()
 {
     return(new Nethereum.Web3.Web3(AccountFactory.GetManagedAccount(), ClientFactory.GetClient()));
 }