Metadata-Version: 2.4
Name: xclaw02
Version: 0.1.1
Summary: xClaw02 - x402 payments SDK for OpenClaw agents. Pay and charge for APIs with stablecoins.
Author-email: Primer Systems <support@primer.systems>
License: MIT
Project-URL: Homepage, https://x402.org
Project-URL: Documentation, https://x402.org/docs
Project-URL: Repository, https://github.com/primer-systems/xClaw02
Project-URL: Issues, https://github.com/primer-systems/xClaw02/issues
Keywords: x402,xclaw02,payments,crypto,usdc,stablecoin,ethereum,base,eip-3009,web3,ai-payments,micropayments,http-402,ai-agents,openclaw,clawhub
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Office/Business :: Financial
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: web3>=6.0.0
Requires-Dist: eth-account>=0.11.0
Requires-Dist: requests>=2.28.0
Provides-Extra: httpx
Requires-Dist: httpx>=0.24.0; extra == "httpx"
Provides-Extra: flask
Requires-Dist: flask>=2.0.0; extra == "flask"
Provides-Extra: fastapi
Requires-Dist: fastapi>=0.100.0; extra == "fastapi"
Requires-Dist: starlette>=0.27.0; extra == "fastapi"
Provides-Extra: all
Requires-Dist: httpx>=0.24.0; extra == "all"
Requires-Dist: flask>=2.0.0; extra == "all"
Requires-Dist: fastapi>=0.100.0; extra == "all"
Requires-Dist: starlette>=0.27.0; extra == "all"
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
Requires-Dist: httpx>=0.24.0; extra == "dev"
Requires-Dist: flask>=2.0.0; extra == "dev"
Requires-Dist: fastapi>=0.100.0; extra == "dev"
Requires-Dist: starlette>=0.27.0; extra == "dev"

# xClaw02

[![PyPI version](https://img.shields.io/pypi/v/xclaw02.svg)](https://pypi.org/project/xclaw02/)
[![Python](https://img.shields.io/pypi/pyversions/xclaw02.svg)](https://pypi.org/project/xclaw02/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

**Python SDK for x402 HTTP payments by [Primer](https://primer.systems).** Built for OpenClaw 🦞

Easily add pay-per-request monetization to your Python APIs using the [x402 protocol](https://x402.org). Accept stablecoin payments (USDC, EURC) or any ERC-20 token with gasless transactions—payers never pay gas fees.

## Quick Start (CLI)

```bash
# Create a new wallet
xclaw02 wallet create

# Check balance
xclaw02 wallet balance 0xYourAddress

# Probe a URL for x402 support
xclaw02 probe https://api.example.com/paid

# Set up for OpenClaw
xclaw02 openclaw init
```

## Why x402?

- **HTTP-native payments** - Uses the standard HTTP 402 Payment Required status code
- **Gasless for payers** - Payments are authorized via EIP-712 signatures; facilitators handle gas
- **Stablecoin support** - Native support for USDC/EURC via EIP-3009 `transferWithAuthorization`
- **Any ERC-20 token** - Support for other tokens via Primer's *Prism* settlement contract
- **Multi-chain** - Base, Ethereum, Arbitrum, Optimism, Polygon (mainnet + testnet)
- **Framework integrations** - Flask, FastAPI middleware included
- **Testing utilities** - Mock facilitator for integration testing

## Installation

```bash
pip install xclaw02
```

With optional dependencies:

```bash
pip install xclaw02[flask]     # Flask middleware
pip install xclaw02[fastapi]   # FastAPI middleware
pip install xclaw02[httpx]     # Async HTTP client
pip install xclaw02[all]       # All optional dependencies
```

## Quick Start

### Payer (Client)

Wrap your HTTP client to automatically handle 402 responses:

```python
import os
from xclaw02 import create_signer, x402_requests

# Create a signer with your wallet
signer = create_signer('eip155:8453', os.environ['PRIVATE_KEY'])

# Create a session that handles 402 payments automatically
with x402_requests(signer, max_amount='1.00') as session:
    response = session.get('https://api.example.com/paid-endpoint')
    print(response.json())
```

When the server returns `402 Payment Required`, the SDK automatically:
1. Parses the payment requirements from the response
2. Creates a signed payment authorization (no gas required)
3. Retries the request with the payment header
4. Returns the successful response

### Payee (Server)

Add payment requirements to your API routes:

```python
from flask import Flask, jsonify
from xclaw02 import x402_flask

app = Flask(__name__)

@app.before_request
@x402_flask('0xYourWalletAddress', {
    '/api/premium': {
        'amount': '0.01',                                    # $0.01 USDC
        'asset': '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913',  # USDC on Base
        'network': 'eip155:8453'                             # Base mainnet
    }
})
def require_payment():
    pass

@app.route('/api/premium')
def premium_content():
    return jsonify({'data': 'premium content'})
```

## Token Types

### EIP-3009 Tokens (USDC, EURC)

These tokens support gasless transfers natively via `transferWithAuthorization`. The payer signs an authorization, and the facilitator executes the transfer—payer pays zero gas.

### Standard ERC-20 Tokens

For other ERC-20 tokens, Primer's *Prism* contract enables gasless payments:

1. **One-time approval** - Approve the Prism contract to spend your tokens
2. **Gasless payments** - Sign authorizations; Prism handles the transfers

```python
from xclaw02 import create_signer, approve_token

signer = create_signer('eip155:8453', os.environ['PRIVATE_KEY'])

# One-time approval (this transaction requires gas)
receipt = approve_token(signer, '0xTokenAddress')

# Now you can make gasless payments with this token
```

## Supported Networks

Networks use [CAIP-2](https://github.com/ChainAgnostic/CAIPs/blob/main/CAIPs/caip-2.md) identifiers.

| Network | CAIP-2 ID | Default Facilitator |
|---------|-----------|---------------------|
| Base | `eip155:8453` | Primer |
| Base Sepolia | `eip155:84532` | Primer |
| Ethereum | `eip155:1` | Custom required |
| Arbitrum | `eip155:42161` | Custom required |
| Optimism | `eip155:10` | Custom required |
| Polygon | `eip155:137` | Custom required |

> Legacy network names (`'base'`, `'ethereum'`) are accepted for compatibility but CAIP-2 is recommended.

### Custom Facilitator

For non-Base networks, provide your own facilitator:

```python
# Payer
session = x402_requests(signer, max_amount='1.00', facilitator='https://your-facilitator.com')

# Payee
@x402_flask('0xAddress', routes, facilitator='https://your-facilitator.com')
```

## FastAPI Example

```python
from fastapi import FastAPI
from xclaw02 import x402_fastapi

app = FastAPI()

app.add_middleware(x402_fastapi(
    '0xYourWalletAddress',
    {
        '/api/premium': {
            'amount': '0.01',
            'asset': '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913',
            'network': 'eip155:8453'
        }
    }
))

@app.get('/api/premium')
async def premium():
    return {'data': 'premium content'}
```

## Testing

The SDK includes utilities for testing your integration without real payments:

```python
import pytest
from xclaw02.testing import create_mock_facilitator, create_test_payment

@pytest.fixture
def mock_facilitator():
    mock = create_mock_facilitator(mode='approve')
    yield mock
    mock.close()

def test_paid_endpoint(client, mock_facilitator):
    payment = create_test_payment(amount='10000')  # 0.01 USDC

    response = client.get(
        '/api/premium',
        headers={'X-PAYMENT': payment}
    )

    assert response.status_code == 200
```

## Debug Logging

```python
import logging
logging.getLogger('xclaw02').setLevel(logging.DEBUG)
```

## CLI Reference

```bash
xclaw02 <command> [options]
```

| Command | Description |
|---------|-------------|
| `wallet create` | Create a new wallet |
| `wallet balance <address>` | Check USDC/ETH balance |
| `wallet from-mnemonic` | Restore wallet from mnemonic |
| `probe <url>` | Check if URL supports x402 |
| `pay <url>` | Make a payment to a 402 endpoint |
| `pay <url> --dry-run` | Preview payment without paying |
| `networks` | List supported networks |
| `facilitator` | Show facilitator info |
| `openclaw init` | Set up x402 for OpenClaw |
| `openclaw status` | Check OpenClaw status |

### Environment Variables

| Variable | Description |
|----------|-------------|
| `XCLAW02_PRIVATE_KEY` | Wallet private key |
| `XCLAW02_NETWORK` | Default network (default: base) |
| `XCLAW02_MAX_AMOUNT` | Default max payment amount |
| `XCLAW02_FACILITATOR` | Facilitator URL override |

### Examples

```bash
# Create wallet and save output
xclaw02 wallet create --json > wallet.json

# Check balance on Arbitrum
xclaw02 wallet balance 0x... --network arbitrum

# Preview payment (dry run)
xclaw02 pay https://api.example.com/data --dry-run

# Pay for an API
XCLAW02_PRIVATE_KEY=0x... xclaw02 pay https://api.example.com/data --max-amount 0.10
```

## Wallet Utilities

```python
from xclaw02 import create_wallet, get_balance, x402_probe

# Create wallet
wallet = create_wallet()
print(wallet.address, wallet.private_key, wallet.mnemonic)

# Check balance
balance = get_balance('0x...', 'base', 'USDC')
print(f"{balance.balance} {balance.token}")

# Probe URL
probe = x402_probe('https://api.example.com/paid')
if probe.supports_402:
    print(probe.requirements)
```

## Error Handling

```python
from xclaw02 import X402Error, ErrorCodes

try:
    response = session.get(url)
except X402Error as e:
    if e.code == ErrorCodes.INSUFFICIENT_FUNDS:
        print(f"Need more funds: {e.details}")
```

## OpenClaw Integration

```bash
pip install xclaw02
xclaw02 openclaw init
```

Or install skill from ClawHub: `clawhub install xclaw02`

## Changelog

### v0.1.0
- Initial release
- CLI for wallet management, probing, and payments
- Flask and FastAPI middleware
- Testing utilities with mock facilitator
- OpenClaw skill integration

## Links

- [x402 Protocol Specification](https://x402.org)
- [Primer Systems](https://primer.systems)
- [GitHub Repository](https://github.com/primer-systems/x402)
- [TypeScript SDK](https://www.npmjs.com/package/xclaw02)

## License

MIT - [Primer Systems](https://primer.systems)
