August 2018
Intermediate to advanced
404 pages
11h 19m
English
Nethereum is a .NET library for Ethereum, which allows interaction with Ethereum nodes, both public and permission-based, in a similar way to geth, Parity, or Quorum.
PM > Install-Package Nethereum.Web3 // OR PM > Install-Package Nethereum.Portable
dotnet add package Nethereum.Web3// ORdotnet add package Nethereum.Portable
// Will connect to default nodevar web3 = new Nethereum.Web3.Web3();// Custom node addressvar web3 = new Nethereum.Web3.Web3("https://localhost:7545");// IPC Connectionvar ipcClient = new Nethereum.JsonRpc.IpcClient("./geth.ipc" ...