File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -218,3 +218,24 @@ exporter_timeout_duration = "3s"
218
218
219
219
# Endpoint URL for the OpenTelemetry exporter
220
220
exporter_endpoint = " http://127.0.0.1:4317"
221
+
222
+ # # Configuration for Pyth Lazer ##
223
+
224
+ # [pyth_lazer]
225
+ # URL for the history service
226
+ # history_url = "https://pyth-lazer-staging.dourolabs.app/history/"
227
+
228
+ # URLs for the Lazer relayers to connect to
229
+ # relayer_urls = ["wss://pyth-lazer-staging.dourolabs.app/v2/publisher"]
230
+
231
+ # Unique identifier for this publisher
232
+ # publisher_id = 1
233
+
234
+ # Authorization token for connecting to relayers
235
+ # authorization_token = "your-auth-token"
236
+
237
+ # Path to the publisher's secret key file
238
+ # publisher_secret_key = "/path/to/publisher-key.json"
239
+
240
+ # Duration between price updates (defaults to 200ms if not specified)
241
+ # publish_interval_duration = "200ms"
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ impl std::fmt::Debug for PublisherSecretKey {
62
62
}
63
63
64
64
fn default_publish_interval ( ) -> Duration {
65
- Duration :: from_millis ( 10 )
65
+ Duration :: from_millis ( 200 )
66
66
}
67
67
68
68
struct RelayerSender {
You can’t perform that action at this time.
0 commit comments