forked from x402-rs/x402-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json.example
More file actions
45 lines (45 loc) · 1.01 KB
/
config.json.example
File metadata and controls
45 lines (45 loc) · 1.01 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
{
"port": 8080,
"host": "0.0.0.0",
"chains": {
"eip155:84532": {
"_comment": "Base Sepolia"
"eip1559": true,
"flashblocks": true,
"signers": [
"0xWALLET"
],
"rpc": [
{
"http": "https://rpc.com/eip155/84532",
"rate_limit": 50
}
]
},
"solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp": {
"_comment": "Solana Mainnet"
"signer": "SOLANA_PRIVATE_KEY",
"rpc": "https://rpc.com/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"pubsub": "wss://rpc.com/solana/5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp"
}
},
"schemes": [
{
"id": "v1-eip155-exact",
"chains": "eip155:*"
},
{
"id": "v2-eip155-exact",
"chains": "eip155:*"
},
{
"_comment": "Solana schemes allow Phantom Lighthouse program by default",
"id": "v1-solana-exact",
"chains": "solana:*"
},
{
"id": "v2-solana-exact",
"chains": "solana:*"
}
]
}