AetherNet.Tipping
1.8.0
dotnet add package AetherNet.Tipping --version 1.8.0
NuGet\Install-Package AetherNet.Tipping -Version 1.8.0
<PackageReference Include="AetherNet.Tipping" Version="1.8.0" />
<PackageVersion Include="AetherNet.Tipping" Version="1.8.0" />
<PackageReference Include="AetherNet.Tipping" />
paket add AetherNet.Tipping --version 1.8.0
#r "nuget: AetherNet.Tipping, 1.8.0"
#:package AetherNet.Tipping@1.8.0
#addin nuget:?package=AetherNet.Tipping&version=1.8.0
#tool nuget:?package=AetherNet.Tipping&version=1.8.0
AetherNet.Tipping
Optional incentive / tipping layer for AetherNet — the offline-first mesh protocol. Relay and gateway nodes can be rewarded for forwarding traffic; this package carries the generic, currency-agnostic surface for that.
It provides:
- the
TipPacket(packet type 24) wire payload + send/receive path (IMeshTipServicelives inAetherNet.Core), - the settlement seam — a host plugs its wallet in by implementing
IAetherNetIncentiveProvider.SettleMeshTipAsync; the default is a no-op (a node accepts and relays tip packets but settles nothing), - in-tree services that queue and batch-sync incentive/reward events.
The amount is just a number. No currency is baked into the wire — settlement currency is entirely the host's concern. A wallet-backed deployment supplies its own SettleMeshTipAsync and its own backend; the protocol only carries the signal.
Install
dotnet add package AetherNet.Tipping
Quick start
using AetherNet.DependencyInjection;
services.AddAetherNet(b => b
.AddSignalProtocol()
.AddRouting()
.AddMeshTip() // generic tip wire surface (TipPacket 24)
.AddTipping()); // queue + batch-sync + settlement seam
// Reward a relay. `amount` is the host's own unit — nothing currency-specific on the wire:
await meshTip.SendTipAsync(recipientUhid, amount: 0.10m, trafficType: "message-relay");
The TipPacket wire format and signing are byte-identical across every AetherNet implementation (C#, Go, Python, TypeScript, Kotlin, Swift, Rust, C, ArkTS), verified against shared cross-language fixtures.
MIT licensed.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- AetherNet.Core (>= 1.8.0)
- AetherNet.Security (>= 1.8.0)
- Microsoft.Extensions.Http (>= 10.0.2)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.2)
-
net9.0
- AetherNet.Core (>= 1.8.0)
- AetherNet.Security (>= 1.8.0)
- Microsoft.Extensions.Http (>= 10.0.2)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.2)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on AetherNet.Tipping:
| Package | Downloads |
|---|---|
|
AetherNet.DependencyInjection
One-call DI registration and health checks for the Aether mesh networking protocol stack. Hosts call services.AddAetherNetProtocol(...) to wire routing, DTN, Signal Protocol, and messaging — opt-in per capability. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.8.0 | 35 | 6/14/2026 |