-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json
84 lines (84 loc) · 2.4 KB
/
config.json
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
{
"libpath": "libsolana_geyser_sqs.so",
"node": "my-unique-node-name",
"log": {
"level": "info",
"filters": false
},
"prometheus": {
"address": "0.0.0.0:8999"
},
"sqs": {
"auth": {
"access_key_id": "access_key_id",
"secret_access_key": "secret_access_key"
},
"region": "us-east-2",
"url": {
"slots": "https://sqs.us-east-2.amazonaws.com/<account_id>/<accounts_queue>",
"accounts": "https://sqs.us-east-2.amazonaws.com/<account_id>/<accounts_queue>",
"transactions": "https://sqs.us-east-2.amazonaws.com/<account_id>/<accounts_queue>"
},
"max_requests": "10_000",
"attributes": {
"my-custom-attribute": "value of the attribute"
}
},
"s3": {
"auth": {
"access_key_id": "access_key_id",
"secret_access_key": "secret_access_key"
},
"region": "us-east-2",
"bucket": "solana-geyser",
"prefix": "bucket_folder",
"max_requests": "10_000"
},
"redis": {
"url": "redis://127.0.0.1:6379/",
"channel": "admin",
"config": "config"
},
"messages": {
"commitment_level": "confirmed",
"accounts_data_compression": {"algo": "none"}
},
"filters": {
"redis_logs": {
"url": "redis://127.0.0.1:6379/1",
"map_key": "transactions-%Y-%m-%d-%H-%M",
"batch_size": 10,
"concurrency": 50
},
"slots": {
"enabled": false
},
"accounts": {
"owner-and-size": {
"owner": ["AAACCCDDDEee"],
"data_size": [80]
},
"tokenkeg-owner-and-size": {
"tokenkeg_owner": ["GUnde212311"],
"data_size": [165]
},
"serum": {
"serum_event_queue": {
"accounts": ["5KKsLVU6TcbVDK4BS6K1DGDxnh4Q9xjYJ8XaDCG5t8ht"],
"events": [["Fill", "Maker"], ["Fill", "Out", "Maker"]]
}
}
},
"transactions": {
"example": {
"logs": true,
"vote": false,
"failed": false,
"accounts": {
"include": [],
"exclude": []
}
}
}
}
}