![]() |
VOOZH | about |
dotnet add package Nethereum.JsonRpc.IpcClient --version 6.1.0
NuGet\Install-Package Nethereum.JsonRpc.IpcClient -Version 6.1.0
<PackageReference Include="Nethereum.JsonRpc.IpcClient" Version="6.1.0" />
<PackageVersion Include="Nethereum.JsonRpc.IpcClient" Version="6.1.0" />Directory.Packages.props
<PackageReference Include="Nethereum.JsonRpc.IpcClient" />Project file
paket add Nethereum.JsonRpc.IpcClient --version 6.1.0
#r "nuget: Nethereum.JsonRpc.IpcClient, 6.1.0"
#:package Nethereum.JsonRpc.IpcClient@6.1.0
#addin nuget:?package=Nethereum.JsonRpc.IpcClient&version=6.1.0Install as a Cake Addin
#tool nuget:?package=Nethereum.JsonRpc.IpcClient&version=6.1.0Install as a Cake Tool
High-performance IPC (Inter-Process Communication) JSON-RPC client for local Ethereum node communication.
Nethereum.JsonRpc.IpcClient provides IPC transport implementations for communicating with local Ethereum nodes via Named Pipes (Windows) and Unix Domain Sockets (Linux/macOS). IPC offers significantly lower latency than HTTP for local node communication, making it ideal for high-performance applications running on the same machine as the Ethereum node.
Key Features:
Use Cases:
dotnet add package Nethereum.JsonRpc.IpcClient
Platform Support:
IpcClient)UnixIpcClient)Nethereum:
External:
using Nethereum.JsonRpc.IpcClient;
using Nethereum.RPC.Eth;
// Connect to Geth IPC endpoint (Windows)
var client = new IpcClient(@"\\.\pipe\geth.ipc");
// Query blockchain with ultra-low latency
var ethBlockNumber = new EthBlockNumber(client);
var blockNumber = await ethBlockNumber.SendRequestAsync();
Console.WriteLine($"Current block: {blockNumber.Value}");
// Typical latency: ~1ms (vs ~5ms for HTTP localhost)
using Nethereum.JsonRpc.IpcClient;
using Nethereum.RPC.Eth;
// Connect to Geth IPC endpoint (Linux/macOS)
var client = new UnixIpcClient("/home/user/.ethereum/geth.ipc");
// Query blockchain
var ethChainId = new EthChainId(client);
var chainId = await ethChainId.SendRequestAsync();
Console.WriteLine($"Chain ID: {chainId.Value}");
using Nethereum.JsonRpc.IpcClient;
using Nethereum.RPC.Eth;
using System.Runtime.InteropServices;
// Platform-specific IPC path detection
IClient client;
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
// Windows: Named pipe
client = new IpcClient(@"\\.\pipe\geth.ipc");
}
else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
{
// Linux: Unix socket
client = new UnixIpcClient("/home/user/.ethereum/geth.ipc");
}
else if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
{
// macOS: Unix socket
client = new UnixIpcClient("/Users/user/Library/Ethereum/geth.ipc");
}
else
{
throw new PlatformNotSupportedException();
}
// Use with RPC services
var ethBlockNumber = new EthBlockNumber(client);
var blockNumber = await ethBlockNumber.SendRequestAsync();
Console.WriteLine($"Block: {blockNumber.Value}");
using Nethereum.JsonRpc.IpcClient;
using Nethereum.RPC.Eth;
var client = new IpcClient(@"\\.\pipe\geth.ipc");
// Default timeout is 120 seconds
Console.WriteLine($"Default timeout: {client.ConnectionTimeout.TotalSeconds}s");
// Set custom timeout
client.ConnectionTimeout = TimeSpan.FromSeconds(10);
try
{
var ethAccounts = new EthAccounts(client);
var accounts = await ethAccounts.SendRequestAsync();
Console.WriteLine($"Accounts: {string.Join(", ", accounts)}");
}
catch (RpcClientTimeoutException ex)
{
Console.WriteLine($"IPC connection timed out: {ex.Message}");
}
using Nethereum.JsonRpc.IpcClient;
using Microsoft.Extensions.Logging;
using Nethereum.RPC.Eth;
// Create logger
var loggerFactory = LoggerFactory.Create(builder =>
{
builder.AddConsole();
builder.SetMinimumLevel(LogLevel.Debug);
});
var logger = loggerFactory.CreateLogger<IpcClient>();
// Create client with logging
var client = new UnixIpcClient(
"/home/user/.ethereum/geth.ipc",
jsonSerializerSettings: null,
log: logger
);
// All requests are logged
var ethGasPrice = new EthGasPrice(client);
var gasPrice = await ethGasPrice.SendRequestAsync();
// Console output: Sending request: {"jsonrpc":"2.0","method":"eth_gasPrice","params":[],"id":1}
// Console output: Received response: {"jsonrpc":"2.0","result":"0x...","id":1}
using Nethereum.Web3;
using Nethereum.JsonRpc.IpcClient;
using System.Runtime.InteropServices;
// Create IPC client
IClient ipcClient = RuntimeInformation.IsOSPlatform(OSPlatform.Windows)
? new IpcClient(@"\\.\pipe\geth.ipc")
: new UnixIpcClient("/home/user/.ethereum/geth.ipc") as IClient;
// Use with Web3
var web3 = new Web3(ipcClient);
// Ultra-fast local queries
var balance = await web3.Eth.GetBalance.SendRequestAsync(
"0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb"
);
var blockNumber = await web3.Eth.Blocks.GetBlockNumber.SendRequestAsync();
Console.WriteLine($"Balance: {Web3.Convert.FromWei(balance)} ETH");
Console.WriteLine($"Block: {blockNumber.Value}");
using Nethereum.JsonRpc.IpcClient;
using Nethereum.RPC.Eth;
using System.Diagnostics;
var client = new UnixIpcClient("/home/user/.ethereum/geth.ipc");
client.ConnectionTimeout = TimeSpan.FromSeconds(5);
// High-frequency block monitoring with minimal latency
var ethBlockNumber = new EthBlockNumber(client);
var lastBlock = BigInteger.Zero;
while (true)
{
var sw = Stopwatch.StartNew();
var currentBlock = await ethBlockNumber.SendRequestAsync();
sw.Stop();
if (currentBlock.Value > lastBlock)
{
Console.WriteLine($"New block {currentBlock.Value} detected in {sw.ElapsedMilliseconds}ms");
lastBlock = currentBlock.Value;
// Execute time-sensitive logic here (MEV, arbitrage, etc.)
}
await Task.Delay(100); // Poll every 100ms
}
// Typical latency: 1-2ms (IPC) vs 5-10ms (HTTP localhost)
using Nethereum.JsonRpc.IpcClient;
using Nethereum.RPC.Eth;
using Polly;
var client = new IpcClient(@"\\.\pipe\geth.ipc");
client.ConnectionTimeout = TimeSpan.FromSeconds(10);
// Define retry policy for IPC connection failures
var retryPolicy = Policy
.Handle<RpcClientTimeoutException>()
.Or<RpcClientUnknownException>()
.Or<IOException>()
.WaitAndRetryAsync(
retryCount: 3,
sleepDurationProvider: attempt => TimeSpan.FromSeconds(Math.Pow(2, attempt)),
onRetry: (exception, timeSpan, retryCount, context) =>
{
Console.WriteLine($"IPC retry {retryCount} after {timeSpan.TotalSeconds}s: {exception.Message}");
}
);
try
{
var blockNumber = await retryPolicy.ExecuteAsync(async () =>
{
var ethBlockNumber = new EthBlockNumber(client);
return await ethBlockNumber.SendRequestAsync();
});
Console.WriteLine($"Success! Block: {blockNumber.Value}");
}
catch (RpcClientTimeoutException ex)
{
Console.WriteLine($"IPC timeout after retries: {ex.Message}");
Console.WriteLine("Is Geth running? Check IPC path.");
}
catch (RpcClientUnknownException ex)
{
Console.WriteLine($"IPC connection error: {ex.Message}");
Console.WriteLine($"IPC path: {client.IpcPath}");
}
using Nethereum.JsonRpc.IpcClient;
using Nethereum.RPC.Eth;
// Erigon default IPC paths
var client = RuntimeInformation.IsOSPlatform(OSPlatform.Windows)
? new IpcClient(@"\\.\pipe\erigon.ipc")
: new UnixIpcClient("/home/user/.local/share/erigon/erigon.ipc") as IClient;
// Erigon-specific RPC methods work over IPC
var ethBlockNumber = new EthBlockNumber(client);
var blockNumber = await ethBlockNumber.SendRequestAsync();
Console.WriteLine($"Erigon block: {blockNumber.Value}");
using Nethereum.JsonRpc.IpcClient;
using Newtonsoft.Json;
using Nethereum.RPC.Eth;
// Create custom serializer settings
var settings = new JsonSerializerSettings
{
NullValueHandling = NullValueHandling.Ignore,
Formatting = Formatting.None,
DateTimeZoneHandling = DateTimeZoneHandling.Utc
};
// Create client with custom settings
var client = new IpcClient(
@"\\.\pipe\geth.ipc",
jsonSerializerSettings: settings
);
var ethChainId = new EthChainId(client);
var chainId = await ethChainId.SendRequestAsync();
Console.WriteLine($"Chain ID: {chainId.Value}");
using Nethereum.JsonRpc.IpcClient;
using Nethereum.RPC.Eth;
// IpcClient implements IDisposable - always dispose properly
using (var client = new UnixIpcClient("/home/user/.ethereum/geth.ipc"))
{
var ethBlockNumber = new EthBlockNumber(client);
var blockNumber = await ethBlockNumber.SendRequestAsync();
Console.WriteLine($"Block: {blockNumber.Value}");
// Client automatically disposed and connection closed
}
// For long-running applications, reuse the client
var persistentClient = new IpcClient(@"\\.\pipe\geth.ipc");
try
{
// Use throughout application lifetime
while (true)
{
var ethBlockNumber = new EthBlockNumber(persistentClient);
var block = await ethBlockNumber.SendRequestAsync();
await Task.Delay(1000);
}
}
finally
{
persistentClient.Dispose();
}
public class IpcClient : IpcClientBase, IDisposable
{
public IpcClient(string ipcPath,
JsonSerializerSettings jsonSerializerSettings = null,
ILogger log = null)
}
Parameters:
ipcPath: Named pipe path (e.g., \\.\pipe\geth.ipc)jsonSerializerSettings: Optional custom JSON settingslog: Optional logger instancepublic class UnixIpcClient : IpcClientBase, IDisposable
{
public UnixIpcClient(string ipcPath,
JsonSerializerSettings jsonSerializerSettings = null,
ILogger log = null)
}
Parameters:
ipcPath: Unix socket path (e.g., /home/user/.ethereum/geth.ipc)jsonSerializerSettings: Optional custom JSON settingslog: Optional logger instancepublic TimeSpan ConnectionTimeout { get; set; } // Default: 120 seconds
public string IpcPath { get; }
public int ForceCompleteReadTotalMiliseconds { get; set; } // Default: 2000
public override Task<RpcResponseMessage> SendAsync(RpcRequestMessage request, string route = null)
public void Dispose()
Geth:
| Platform | Default IPC Path |
|----------|------------------|
| Windows | \\.\pipe\geth.ipc |
| Linux | /home/user/.ethereum/geth.ipc |
| macOS | /Users/user/Library/Ethereum/geth.ipc |
Erigon:
| Platform | Default IPC Path |
|----------|------------------|
| Windows | \\.\pipe\erigon.ipc |
| Linux | /home/user/.local/share/erigon/erigon.ipc |
| macOS | /Users/user/Library/Erigon/erigon.ipc |
Besu:
| Platform | Default IPC Path |
|----------|------------------|
| Windows | Not officially supported |
| Linux | /tmp/besu.ipc |
| macOS | /tmp/besu.ipc |
| Transport | Latency (localhost) | Use Case |
|---|---|---|
| IPC | 0.5-2ms | Local node, high-frequency |
| HTTP | 3-10ms | Local node, standard |
| HTTPS (remote) | 50-200ms | Cloud providers |
IPC is ~5x faster than HTTP for local communication.
IPC clients support batch requests via inherited SendBatchRequestAsync:
var batch = new RpcRequestResponseBatch();
batch.BatchItems.Add(new RpcRequestResponseBatchItem<string>(
new RpcRequestMessage(1, "eth_blockNumber")
));
batch.BatchItems.Add(new RpcRequestResponseBatchItem<string>(
new RpcRequestMessage(2, "eth_chainId")
));
var result = await client.SendBatchRequestAsync(batch);
However, IPC is already very fast - batching provides less benefit than with HTTP.
| Exception | Cause | Solution |
|---|---|---|
| RpcClientTimeoutException | Connection timeout | Check node is running, verify IPC path |
| RpcClientUnknownException | IPC communication error | Verify IPC path, check permissions |
| IOException | Pipe/socket error | Restart node, check file system |
eth_subscribeUse IPC when:
Use HTTP when:
Use WebSocket when:
eth_subscribe)# Linux/macOS
geth --ipcpath /home/user/.ethereum/geth.ipc
# Windows
geth --ipcpath \\.\pipe\geth.ipc
# Default IPC is enabled automatically
geth --http --http.api eth,net,web3
# Linux
erigon --private.api.addr /home/user/.local/share/erigon/erigon.ipc
# Default IPC is enabled
erigon
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 is compatible. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net461 net461 is compatible. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
This package is not used by any NuGet packages.
Showing the top 1 popular GitHub repositories that depend on Nethereum.JsonRpc.IpcClient:
| Repository | Stars |
|---|---|
|
ChainSafe/web3.unity
🕹 Unity SDK for building games that interact with blockchains.
|
| Version | Downloads | Last Updated |
|---|---|---|
| 6.1.0 | 243 | 3/25/2026 |
| 6.0.4 | 170 | 3/18/2026 |
| 6.0.3 | 117 | 3/18/2026 |
| 6.0.1 | 139 | 3/17/2026 |
| 6.0.0 | 129 | 3/16/2026 |
| 5.8.0 | 191 | 1/6/2026 |
| 5.0.0 | 882 | 5/28/2025 |
| 4.29.0 | 3,064 | 2/10/2025 |
| 4.28.0 | 343 | 1/7/2025 |
| 4.27.1 | 280 | 12/24/2024 |
| 4.27.0 | 273 | 12/24/2024 |
| 4.26.0 | 500 | 10/1/2024 |
| 4.25.0 | 327 | 9/19/2024 |
| 4.21.4 | 369 | 8/9/2024 |
| 4.21.3 | 301 | 7/22/2024 |
| 4.21.2 | 2,944 | 6/26/2024 |
| 4.21.1 | 328 | 6/26/2024 |
| 4.21.0 | 973 | 6/18/2024 |
| 4.20.0 | 392 | 3/28/2024 |
| 4.19.0 | 410 | 2/16/2024 |