VOOZH about

URL: https://www.nuget.org/packages/AetherNet.Tipping/

⇱ NuGet Gallery | AetherNet.Tipping 1.8.0




AetherNet.Tipping 1.8.0

dotnet add package AetherNet.Tipping --version 1.8.0
 
 
NuGet\Install-Package AetherNet.Tipping -Version 1.8.0
 
 
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AetherNet.Tipping" Version="1.8.0" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AetherNet.Tipping" Version="1.8.0" />
 
Directory.Packages.props
<PackageReference Include="AetherNet.Tipping" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AetherNet.Tipping --version 1.8.0
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: AetherNet.Tipping, 1.8.0"
 
 
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package AetherNet.Tipping@1.8.0
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AetherNet.Tipping&version=1.8.0
 
Install as a Cake Addin
#tool nuget:?package=AetherNet.Tipping&version=1.8.0
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

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 (IMeshTipService lives in AetherNet.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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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 98 6/14/2026