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"
218218
219219# Endpoint URL for the OpenTelemetry exporter
220220exporter_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 {
6262}
6363
6464fn default_publish_interval ( ) -> Duration {
65- Duration :: from_millis ( 10 )
65+ Duration :: from_millis ( 200 )
6666}
6767
6868struct RelayerSender {
You can’t perform that action at this time.
0 commit comments