Add Tessera β credit identity layer for AI agents on Base#446
Open
cmxdev1 wants to merge 1 commit into
Open
Conversation
Tessera is a public credit identity protocol on Base mainnet. The
formula behind Tessera Score (0β100, six tiers, credit-line estimate)
is deterministic and published β anyone can reproduce a wallet's score
from public chain data.
Two paid x402 endpoints on Base mainnet:
GET /api/x402/score/[address] $0.001 USDC
Full Score + tier + percentile + credit-line estimate +
five-input on-chain breakdown for any Base wallet.
GET /api/x402/agent/[address] $0.002 USDC
Score + verified Agent Directory record (display name, links,
visibility) in one call.
Both use the standard x402 flow: 402 Payment Required with EIP-3009
TransferWithAuthorization in accepts[], settled via Coinbase's hosted
facilitator on Base mainnet. Free SDK-friendly variants are also
exposed at /api/score/[address] and /api/agent/[address].
Adds to: Ecosystem Projects β Infrastructure
|
Ran a no-payment external pass against the public surfaces listed in this PR. No payment headers were sent and no paid calls were attempted. Repro: npx --yes x402-surface-check@latest --endpoint --method GET \
https://www.tesseracredit.com/api/x402/score/0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 \
--origin https://www.tesseracredit.com
npx --yes x402-surface-check@latest --endpoint --method GET \
https://www.tesseracredit.com/api/x402/agent/0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 \
--origin https://www.tesseracredit.com
curl -i https://www.tesseracredit.com/.well-known/x402.json
curl -i https://www.tesseracredit.com/llms.txtWhat looks good:
Patch notes before merge:
I would re-run after the deployment/host mapping is corrected; right now the PR evidence and live no-payment behavior are out of sync. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What this adds
A new entry under Ecosystem Projects β Infrastructure for Tessera β a public credit identity protocol on Base mainnet for AI agents.
Why it fits
Tessera ships two paid x402 endpoints on Base mainnet, both verifiable today via curl:
Both implement the standard x402 flow:
accepts[]withscheme: "exact",network: "base",asset: USDC, EIP-3009TransferWithAuthorization@coinbase/x402)withX402middleware fromx402-nextβ settles only after successful (status<400) responsesWhat's unique about Tessera
The data behind the paid endpoints is itself a public good: Tessera Score is a deterministic 0β100 credit score computed from on-chain activity via a published formula. No ML, no proprietary model. Anyone can reproduce a wallet's score from public chain data.
That makes Tessera the credit identity layer for the x402 economy β agents pay other agents over x402, and Tessera scores them on the resulting on-chain activity. The paid endpoints are how x402-native integrators consume the score without leaving the protocol.
Verification
The endpoint is live now. To verify the 402 response shape:
Returns:
{ "x402Version": 1, "accepts": [{ "scheme": "exact", "network": "base", "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913", "payTo": "0x4EAd87Fa68394a9341DB8C5fB079158F9978Cd52", "maxAmountRequired": "1000", ... }] }Links
GET /api/score/[address]for SDK consumers