x402-trinity
Let a Python process pay for things by itself — with hard spending limits, no hosted wallet service, and no changes to the code doing the fetching.
Standard library only. No dependencies, at all.
pip install x402-trinity
Why
When a script hits a paid resource it gets 402 Payment Required. Without something to handle
that, the request simply fails.
x402-trinity handles it: reads the challenge, checks it against limits you set, signs, retries. All of it locally — no hosted wallet service, no third-party API, and the key never leaves your process.
Gas exists but the payer doesn't pay it — under EIP-3009 the facilitator submits the transfer, so the wallet only ever needs USDC.
Use
import os
from x402_trinity import X402Client, Policy
client = X402Client(
private_key=os.environ["X402_PRIVATE_KEY"],
policy=Policy(
max_amount_per_request=5000, # 0.005 USDC per call (REQUIRED)
total_budget=1_000_000, # 1.00 USDC lifetime (REQUIRED)
allow_hosts=["api.example.com"],
),
)
body = client.urlopen("https://api.example.com/data").read()
Or as a decorator, so payment-unaware code just works:
from x402_trinity import x402_telemetry, Policy
@x402_telemetry(private_key=KEY, policy=Policy(max_amount_per_request=5000,
total_budget=1_000_000))
def harvest():
return urllib.request.urlopen("https://sensor.local/v1/lidar").read()
Inside the decorated function urllib.request.urlopen pays 402s automatically. Existing code
is untouched.
Scope
Buyer only. To charge for a resource, use the TypeScript seller in the same project.
Base mainnet + USDC. Other EVM chains work by passing custom_chains to X402Client.
Check any entry against the deployed contract first: call DOMAIN_SEPARATOR() and confirm it
equals what this library computes. A wrong name or version produces a signature that looks
valid and the contract rejects.
Limits are not optional
max_amount_per_request and total_budget are required arguments. An auto-payer without caps
is a money leak controlled by whoever runs the server on the other end. Set allow_hosts and
nothing else can be paid, however convincing the challenge looks.
Before you use it with real money
This software signs payment authorizations. You are responsible for the funds in any wallet you configure it with, for the limits you set, and for the behaviour of any autonomous process you connect to it. Use a dedicated wallet holding only what you would accept losing.
Links
- Source: https://github.com/devmster/x402-trinity
- TypeScript package (buyer, seller, MCP server):
npm install x402-trinity
MIT
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file x402_trinity-0.1.3.tar.gz.
File metadata
- Download URL: x402_trinity-0.1.3.tar.gz
- Upload date:
- Size: 21.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
422281e6238c1f9cd53c0c02111c1a5460bfb12e673cb81cf0ddb11a80ba7e8b
|
|
| MD5 |
2142b1ea2db7337781f567f36339304f
|
|
| BLAKE2b-256 |
315d5e69af8a2daf68842e8dacb3b6829562bf05bdbfc35ef4388f6c84796fb3
|
File details
Details for the file x402_trinity-0.1.3-py3-none-any.whl.
File metadata
- Download URL: x402_trinity-0.1.3-py3-none-any.whl
- Upload date:
- Size: 20.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce1ae01fae162995a54962cf9577ea52333c43ed02cbd88931d0ddfa3b28cb9c
|
|
| MD5 |
93f14bb81456686e0dfdbfd29e84d70c
|
|
| BLAKE2b-256 |
c5ac0ca9135c8815535880306ecef969578aba73601d052d908bdf3ba4977736
|