forked from coinbase/x402
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
96 lines (73 loc) · 3.23 KB
/
main.py
File metadata and controls
96 lines (73 loc) · 3.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
"""x402 requests client example - sync HTTP with automatic payment handling."""
import os
import sys
from dotenv import load_dotenv
from eth_account import Account
from x402 import x402ClientSync
from x402.http import x402HTTPClientSync
from x402.http.clients import x402_requests
from x402.mechanisms.evm import EthAccountSigner
from x402.mechanisms.evm.exact.register import register_exact_evm_client
from x402.mechanisms.svm import KeypairSigner
from x402.mechanisms.svm.exact.register import register_exact_svm_client
# Load environment variables
load_dotenv()
def validate_environment() -> tuple[str | None, str | None, str, str]:
"""Validate required environment variables.
Returns:
Tuple of (evm_private_key, svm_private_key, base_url, endpoint_path).
Raises:
SystemExit: If required environment variables are missing.
"""
evm_private_key = os.getenv("EVM_PRIVATE_KEY")
svm_private_key = os.getenv("SVM_PRIVATE_KEY")
base_url = os.getenv("RESOURCE_SERVER_URL")
endpoint_path = os.getenv("ENDPOINT_PATH")
missing = []
if not evm_private_key and not svm_private_key:
missing.append("EVM_PRIVATE_KEY or SVM_PRIVATE_KEY")
if not base_url:
missing.append("RESOURCE_SERVER_URL")
if not endpoint_path:
missing.append("ENDPOINT_PATH")
if missing:
print(f"Error: Missing required environment variables: {', '.join(missing)}")
print("Please copy .env-local to .env and fill in the values.")
sys.exit(1)
return evm_private_key, svm_private_key, base_url, endpoint_path
def main() -> None:
"""Main entry point demonstrating requests with x402 payments."""
# Validate environment
evm_private_key, svm_private_key, base_url, endpoint_path = validate_environment()
# Create x402 client (sync variant for requests)
client = x402ClientSync()
# Register EVM payment scheme if private key provided
if evm_private_key:
account = Account.from_key(evm_private_key)
register_exact_evm_client(client, EthAccountSigner(account))
print(f"Initialized EVM account: {account.address}")
# Register SVM payment scheme if private key provided
if svm_private_key:
svm_signer = KeypairSigner.from_base58(svm_private_key)
register_exact_svm_client(client, svm_signer)
print(f"Initialized SVM account: {svm_signer.address}")
# Create HTTP client helper for payment response extraction (sync)
http_client = x402HTTPClientSync(client)
# Build full URL
url = f"{base_url}{endpoint_path}"
print(f"Making request to: {url}\n")
# Make request using context manager for proper cleanup
with x402_requests(client) as session:
response = session.get(url)
print(f"Response status: {response.status_code}")
print(f"Response body: {response.text}")
# Extract and print payment response if present
try:
settle_response = http_client.get_payment_settle_response(
lambda name: response.headers.get(name)
)
print(f"\nPayment response: {settle_response.model_dump_json(indent=2)}")
except ValueError:
print("\nNo payment response header found")
if __name__ == "__main__":
main()