forked from google-agentic-commerce/AP2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathx402_constants.py
More file actions
20 lines (16 loc) · 815 Bytes
/
Copy pathx402_constants.py
File metadata and controls
20 lines (16 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""Constants and standard fallback values for x402 Web3 simulation."""
# Standard local development key (Anvil/Hardhat Account 0)
DEFAULT_USER_PRIVATE_KEY = (
"0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80"
)
DEFAULT_USER_ADDRESS = "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266"
# Standard merchant receiver (Anvil/Hardhat Account 1)
DEFAULT_MERCHANT_ADDRESS = "0x70997970C51812dc3A010C7d01b50e0d17dc79C8"
# Standard facilitator relayer (Anvil/Hardhat Account 2)
DEFAULT_FACILITATOR_PRIVATE_KEY = (
"0x5de4111afa1a4b94908f83103eb1f1706367c2e68ca870fc3fb9a804cdab365a"
)
DEFAULT_FACILITATOR_ADDRESS = "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC"
# Base Sepolia Constants
DEFAULT_USDC_CONTRACT = "0x036CbD53842c5426634e7929541eC2318f3dCF7e"
DEFAULT_RPC_URL = "https://sepolia.base.org"