-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsf.config.example.json
More file actions
50 lines (50 loc) · 987 Bytes
/
sf.config.example.json
File metadata and controls
50 lines (50 loc) · 987 Bytes
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
{
"server": {
"rpcPort": 8899,
"wsPort": 8900,
"db": {
"mode": "persistent",
"path": ".solforge/db.db"
}
},
"svm": {
"initialLamports": "1000000000000000",
"faucetSOL": 1000
},
"clone": {
"endpoint": "https://api.mainnet-beta.solana.com",
"programs": [
"JUP6LkbZbjS1jKKwapdHNy74zcZ3tLUZoi5QNyVTaV4"
],
"tokens": [
"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
],
"programAccounts": []
},
"gui": {
"enabled": true,
"port": 42069
},
"agi": {
"enabled": true,
"port": 3456,
"host": "127.0.0.1",
"domain": "https://agi.solforge.sh",
"corsOrigins": [
"https://app.example.com",
"http://localhost:3000"
],
"provider": "openrouter",
"model": "anthropic/claude-3.5-sonnet",
"apiKey": "",
"agent": "general"
},
"bootstrap": {
"airdrops": [
{
"address": "YourWalletAddressHere",
"amountSol": 100
}
]
}
}