Nethereum.Web3.Eth.Eth C# (CSharp) Method

Eth() public method

public Eth ( IClient client ) : Nethereum.JsonRpc.Client
client IClient
return Nethereum.JsonRpc.Client
        public Eth(IClient client) : base(client)
        {
            Client = client;


            DeployContract = new DeployContract(client);

            Accounts = new EthAccounts(client);
            CoinBase = new EthCoinBase(client);
            GasPrice = new EthGasPrice(client);
            GetBalance = new EthGetBalance(client);
            GetCode = new EthGetCode(client);
            GetStorageAt = new EthGetStorageAt(client);
            ProtocolVersion = new EthProtocolVersion(client);
            Sign = new EthSign(client);
            Syncing = new EthSyncing(client);

            Transactions = new EthTransactionsService(client);
            Filters = new EthFilterService(client);
            Blocks = new EthBlockService(client);
            Uncles = new EthUncleService(client);
            Mining = new EthMiningService(client);
            Compile = new EthCompilerService(client);

            DefaultBlock = BlockParameter.CreateLatest();
        }