Overview
AgentScore v1 uses a deterministic, weighted factor model. The same inputs always produce the same score. There are no LLMs, no randomness, and no external dependencies in the scoring path. Every score is reproducible given the model version, input data, and computation timestamp.Factors and weights
The composite score is a weighted sum of five factor scores, each ranging from 0 to 100.| Factor | Weight | What it measures |
|---|---|---|
| Volume | 0.20 | Total transaction count (log scale) |
| Diversity | 0.25 | Unique counterparties interacted with (log scale) |
| Consistency | 0.20 | Regularity of activity: active months, distinct active days, gap penalty |
| Recency | 0.20 | How recently the wallet was active (exponential decay, 90-day window) |
| Tenure | 0.15 | How long the wallet has been active (log scale, up to 180 days) |
Factor details
Volume
Measures total transaction count on a logarithmic scale. A wallet with 1,000 transactions scores 100.Diversity
Measures unique counterparties on a logarithmic scale. A wallet interacting with 100 unique counterparties scores 100.Consistency
Combines three sub-signals:- Month score (30%): Number of active months (capped at 4 months for max score)
- Day score (40%): Distinct days with activity (capped at 20 days for max score)
- Gap penalty (30%): Penalizes long gaps between activity (2 points per day of inactivity)
Recency
Exponential decay based on days since last activity. Score of 100 if active today, dropping to 0 after 90 days.Tenure
Logarithmic scale based on wallet age in days, up to 180 days. A minimum score of 10 is applied to any wallet with a known first transaction.Grade scale
Scores map to letter grades:| Grade | Score range |
|---|---|
| A | 90 — 100 |
| B | 75 — 89 |
| C | 50 — 74 |
| D | 25 — 49 |
| F | 0 — 24 |
Anti-gaming considerations
The model is designed to resist common manipulation vectors:- Self-loop transactions — Volume increases but Diversity stays low, limiting overall score
- Sybil clusters — Coordinated wallets tend to show low diversity and unnatural consistency patterns
- Recency gaming — One transaction resets recency, but Volume, Diversity, and Consistency remain low
- Fake diversity — Creating many wallets for counterparty inflation is costly and produces thin transaction histories
Reproducibility
Every reputation response includes:model_version— which scoring model was used (currentlyv1)computed_at— exact timestamp of computationdata_through— chain and block number of the latest data included
Data sources
v1 scoring draws from:- x402 payment transactions on Base (primary)
- ERC-8004 agent registry on Ethereum and Base (identity enrichment)