Skip to content

feat: release the agent with multi-rpc and lazer support #160

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
May 12, 2025
Merged
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM rust:slim-bookworm as builder

RUN apt update && apt install -y curl libssl-dev pkg-config && apt clean all
RUN apt update && apt install -y curl libssl-dev pkg-config build-essential && apt clean all

ADD . /agent
WORKDIR /agent
Expand Down
2 changes: 1 addition & 1 deletion config/config.sample.pythnet.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ rpc_urls = ["https://api2.pythnet.pyth.network"]

# WS(S) endpoint of the RRC node. This is used to subscribe to account changes on the network.
# This can be omitted when oracle.subscriber_enabled is set to false.
wss_url = "wss://api2.pythnet.pyth.network"
wss_urls = ["wss://api2.pythnet.pyth.network"]

# Path to your publishing keypair.
key_store.publish_keypair_path = "/path/to/keypair.json"
Expand Down
2 changes: 1 addition & 1 deletion config/config.sample.pythtest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ rpc_urls = ["https://api.pythtest.pyth.network"]
# WS(S) endpoint of the RRC node. This is used to subscribe to account changes
# on the network. This can be omitted when oracle.subscriber_enabled is set to
# false.
wss_url = "wss://api.pythtest.pyth.network"
wss_urls = ["wss://api.pythtest.pyth.network"]

# Path to your publishing keypair.
key_store.publish_keypair_path = "/path/to/keypair.json"
Expand Down
2 changes: 1 addition & 1 deletion config/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ rpc_urls = ["https://api.pythtest.pyth.network"]

# WS(S) endpoint of the RRC node. This is used to subscribe to account changes on the network.
# This can be omitted when oracle.subscriber_enabled is set to false.
wss_url = "wss://api.pythtest.pyth.network"
wss_urls = ["wss://api.pythtest.pyth.network"]

# Path to the keypair used to publish price updates. If set to a
# non-existent file path, the system expects a keypair to be loaded
Expand Down
Loading