3
3
# The address on which the websocket API server will listen on.
4
4
listen_address = " 127.0.0.1:8910"
5
5
6
- # Optional top-level settings
7
- # [metrics_server]
8
- # Where to serve the quick-access dashboard and metrics. Metrics live under "/metrics"
9
- # bind_address = "127.0.0.1:8888"
10
-
11
- # [remote_keypair_loader}
12
- # Where to serve the remote keypair loading endpoint, under "/primary/load_keypair" and "/secondary/load_keypair"
13
- #
14
- # NOTE: non-loopback addresses must be used carefully, making sure the
15
- # connection is not exposed for unauthorized access.
16
- # bind_address = "127.0.0.1:9001"
17
-
18
- # How much whole SOL must a keypair hold to be considered valid for use on a given network. Disabled with 0
19
- # primary_min_keypair_balance_sol = 1
20
- # secondary_min_keypair_balance_sol = 1
21
-
22
6
# Configuration for the primary network this agent will publish data to. In most cases this should be a Pythnet endpoint.
23
7
[primary_network ]
24
8
# ## Required fields ###
@@ -37,6 +21,23 @@ key_store.root_path = "/path/to/keystore"
37
21
38
22
# ## Optional fields ###
39
23
24
+ # [metrics_server]
25
+ #
26
+ # Where to serve the quick-access dashboard and metrics. Metrics live under "/metrics"
27
+ # bind_address = "127.0.0.1:8888"
28
+
29
+ # [remote_keypair_loader}
30
+ # Where to serve the remote keypair loading endpoint, under "/primary/load_keypair" and "/secondary/load_keypair"
31
+ #
32
+ # NOTE: non-loopback addresses must be used carefully, making sure the
33
+ # connection is not exposed for unauthorized access.
34
+ # bind_address = "127.0.0.1:9001"
35
+
36
+ # How much whole SOL must a keypair hold to be considered valid for use on a given network. Disabled with 0
37
+ # primary_min_keypair_balance_sol = 1
38
+ # secondary_min_keypair_balance_sol = 1
39
+
40
+
40
41
# Channel capacities. These refer to async messaging channels
41
42
# internally used by the agent's subroutines
42
43
0 commit comments