Skip to content

Commit ccd4a13

Browse files
committed
Merge branch 'main' of github.com:pyth-network/pyth-agent into mike/rpc-redundancy
2 parents 39850f3 + 8c6de5a commit ccd4a13

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

config/config.sample.pythnet.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ wss_url = "wss://api2.pythnet.pyth.network"
1616
key_store.publish_keypair_path = "/path/to/keypair.json"
1717

1818
# Oracle program pubkey
19-
key_store.program_key = "FsJ3A3u2vn5cTVofAjvy6y5kwABJAqYWpe4975bi2epH"
19+
key_store.pyth_oracle_program_key = "FsJ3A3u2vn5cTVofAjvy6y5kwABJAqYWpe4975bi2epH"
2020

2121
# The price store program key
2222
key_store.pyth_price_store_program_key = "3m6sv6HGqEbuyLV84mD7rJn4MAC9LhUa1y1AUNVqcPfr"

config/config.sample.pythtest.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ wss_url = "wss://api.pythtest.pyth.network"
1616
key_store.publish_keypair_path = "/path/to/keypair.json"
1717

1818
# Oracle program pubkey
19-
key_store.program_key = "8tfDNiaEyrV6Q1U4DEXrEigs9DoDtkugzFbybENEbCDz" # conformance
20-
# key_store.program_key = "gSbePebfvPy7tRqimPoVecS2UsBvYv46ynrzWocc92s" # cross-chain
19+
key_store.pyth_oracle_program_key = "8tfDNiaEyrV6Q1U4DEXrEigs9DoDtkugzFbybENEbCDz" # conformance
20+
# key_store.pyth_oracle_program_key = "gSbePebfvPy7tRqimPoVecS2UsBvYv46ynrzWocc92s" # cross-chain
2121

2222
# Pythtest accumulator key (only for the cross-chain oracle)
2323
# key_store.accumulator_key = "7Vbmv1jt4vyuqBZcpYPpnVhrqVe5e6ZPb6JxDcffRHUM"

config/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ wss_url = "wss://api.pythtest.pyth.network"
4646
key_store.publish_keypair_path = "/path/to/keypair.json"
4747

4848
# Public key of the oracle program
49-
key_store.program_key = "RelevantOracleProgramAddress"
49+
key_store.pyth_oracle_program_key = "RelevantOracleProgramAddress"
5050

5151
# The price store program key
5252
key_store.pyth_price_store_program_key = "3m6sv6HGqEbuyLV84mD7rJn4MAC9LhUa1y1AUNVqcPfr"

integration-tests/tests/test_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ def agent_config(self, agent_keystore_path, agent_publish_keypair, tmp_path):
420420

421421
agent_config += f"""
422422
key_store.publish_keypair_path = "{publish_keypair_path}"
423-
key_store.program_key = "{ORACLE_PROGRAM}"
423+
key_store.pyth_oracle_program_key = "{ORACLE_PROGRAM}"
424424
"""
425425

426426
# Add accumulator setting if option is enabled

0 commit comments

Comments
 (0)