Skip to main content

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

License

Business Source License 1.1 — source-available, converts to MIT on 2029-08-25. See the LICENSE file in the repository.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

x402_trinity-0.1.4.tar.gz (20.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

x402_trinity-0.1.4-py3-none-any.whl (20.2 kB view details)

Uploaded Python 3

File details

Details for the file x402_trinity-0.1.4.tar.gz.

File metadata

  • Download URL: x402_trinity-0.1.4.tar.gz
  • Upload date:
  • Size: 20.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.10.11

File hashes

Hashes for x402_trinity-0.1.4.tar.gz
Algorithm Hash digest
SHA256 0875f6a7c16050f7904d05cc83b8cd4033d5908ae77488f1ee99cadc791eef8c
MD5 16979f4eb88c9562911dfee618c03f54
BLAKE2b-256 f67dc90d71becebd2037693e66b052eae0329faeb7a4f9cc9512c78b9597ece9

See more details on using hashes here.

File details

Details for the file x402_trinity-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: x402_trinity-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 20.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.10.11

File hashes

Hashes for x402_trinity-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 1d7fdcbb336a68186cd49519df840040c06665e6328be7a8cfe088e4fe115d09
MD5 0f13d38b5e584cf04f005cdf50ea21e6
BLAKE2b-256 e34a2a63f869ac0d85e64da0c11f15373d31387b1ef56e145d67060d6ca42ac1

See more details on using hashes here.

Release history Release notifications | RSS feed

0.1.9

2 files

0.1.8

2 files

0.1.7

2 files

0.1.6

2 files

0.1.5

2 files

This release

0.1.4 This release

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page