|
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 | + |
6 | 22 | # Configuration for the primary network this agent will publish data to. In most cases this should be a Pythnet endpoint.
|
7 | 23 | [primary_network]
|
8 | 24 | ### Required fields ###
|
@@ -105,18 +121,6 @@ key_store.root_path = "/path/to/keystore"
|
105 | 121 | # a value at least as large as (number of products published / number of products in a batch).
|
106 | 122 | # exporter.transaction_monitor.max_transactions = "100"
|
107 | 123 |
|
108 |
| -# Where to serve the quick-access dashboard and metrics. |
109 |
| -# metrics_server.bind_address = "127.0.0.1:8888" |
110 |
| - |
111 |
| -# Where to serve the remote keypair loading endpoint, under "/primary/load_keypair" and "/secondary/load_keypair" |
112 |
| -# |
113 |
| -# NOTE: non-loopback addresses must be used carefully, making sure the |
114 |
| -# connection is not exposed for unauthorized access. |
115 |
| -# remote_keypair_loader.bind_address = "127.0.0.1:9001" |
116 |
| - |
117 |
| -# How much whole SOL must a keypair hold to be considered valid for use on a given network. Disabled with 0 |
118 |
| -# remote_keypair_loader.primary_min_keypair_balance_sol = 1 |
119 |
| -# remote_keypair_loader.secondary_min_keypair_balance_sol = 1 |
120 | 124 |
|
121 | 125 | # Configuration for the optional secondary network this agent will publish data to. In most cases this should be a Solana endpoint. The options correspond to the ones in primary_network
|
122 | 126 | # [secondary_network]
|
|
0 commit comments