Reputation
AntSeed derives core on-chain seller stats directly from AntseedChannels. Completed channels, ghost channels, and settled volume live in the Channels contract itself. An optional AntseedStats contract can additionally ingest buyer-signed metadata during settlement to aggregate token and request counters.
On-Chain Stats
Each seller's ERC-8004 agentId maintains the following core counters in AntseedChannels:
| Counter | Updated During | Description |
|---|---|---|
channelCount | close() | Number of completed channels |
ghostCount | withdraw() when nothing was settled | Timed-out channels with no proven spend |
totalVolumeUsdc | settle() / close() | Cumulative USDC volume settled |
lastSettledAt | settle() / close() | Timestamp of most recent settlement |
If the optional AntseedStats contract is configured, it can also track:
| Counter | Updated During | Description |
|---|---|---|
totalInputTokens | settle() / topUp() settle path | Buyer-signed cumulative input tokens, delta-accounted per channel |
totalOutputTokens | settle() / topUp() settle path | Buyer-signed cumulative output tokens, delta-accounted per channel |
totalRequestCount | settle() / topUp() settle path | Buyer-signed cumulative request count, delta-accounted per channel |
No counter can be incremented without a corresponding on-chain state transition and buyer-signed metadata hash.
Staking
From September 10, 2026 at 09:54:21 UTC (epoch 22), seller eligibility is resolved through AntseedSellerRegistry and ANTS pool positions contribute epoch power. Legacy USDC stake can remain an eligibility fallback while enabled; recognized-usage rewards require pool power. See Recognized Usage and legacy USDC staking.
ERC-8004 Feedback
Buyers submit structured feedback via the deployed ERC-8004 ReputationRegistry (Base: 0x8004BAa1...). Feedback signals:
| Signal | Type | Range |
|---|---|---|
| Quality | uint8 | 0-100 |
| Latency | uint8 | 0-100 |
| Accuracy | uint8 | 0-100 |
| Reliability | uint8 | 0-100 |
Feedback and routing reputation do not automatically grant ANTS or apply a fixed on-chain reward multiplier. Recognized-usage accounting applies the configured reward policies; the registered historical wash-trading policy can zero future rewards without changing settlement stats.
ANTS Rewards
Protocol start: September 10, 2026 at 09:54:21 UTC (epoch 22).
Routing reputation helps a buyer choose a seller. ANTS reward accounting is separate: it uses recognized usage, seller-pool power, and the configured policies. A high routing score does not override a reward exclusion.
See Recognized Usage and ANTS Rewards for the standard reward model. Looking for pre-migration emissions? The legacy guide covers the 65% seller / 5% buyer split and historical claims.
Buyer Route Scoring
On-chain trust and reputation feed into model-only seller selection. The buyer proxy and desktop share the route ranking exported by @antseed/node/model-routing, and /v1/models/:id returns peer offers in that same policy order.
The default model routing preferences are:
{
preferFreePeers: false,
maxInputUsdPerMillion: 25,
minTrustScore: 60,
allowedPeerIds: [],
blockedPeerIds: [],
}
The minimum trust score and allow/block lists are hard eligibility rules. Eligible offers are ranked by effective trust, token or image price, cached-input pricing coverage, free-peer preference, recent failures, and cooldown state. If at least one seller for a model advertises cached-input pricing, offers that omit it receive a model-specific reputation reduction; if none advertise it, no seller is penalized. A recognized conversation softly prefers its previous successful seller while that offer remains healthy and eligible.
The lower-level @antseed/router-core package also exposes generic router weights for plugin authors:
| Factor | Weight |
|---|---|
| Price | 0.30 |
| Latency | 0.25 |
| Capacity | 0.20 |
| Reputation | 0.10 |
| Freshness | 0.10 |
| Reliability | 0.05 |
Scoring Rules
- Model-only eligibility: Defaults to
minTrustScore: 60. Buyers can lowerbuyer.routingPreferences.minTrustScore, or set it to0to consider unscored and lower-trust peers. - Legacy policy filter:
buyer.minPeerReputationand hierarchicalmaxPricingremain separate hard policy checks applied before the model-route ranking. - On-chain precedence: When on-chain reputation data is available, it takes precedence over locally reported reputation. Runtime metrics such as latency and failure history are handled separately by router scoring.
- Score composition: On-chain score is multi-factor. Settled USDC volume carries the largest weight through an exponent-shaped logarithmic curve, so large settled-volume differences continue to matter and many tiny channels cannot rank highly by themselves. Completed
channelCount, average settled value per channel,lastSettledAtrecency, and seller stake age also contribute.ghostCountapplies a penalty based on the ghost-channel rate. - Latency: Tracked as an exponential moving average (alpha: 0.3).
- Failure backoff: Peers with consecutive failures enter exponential backoff cooldown.