Last active
July 9, 2025 09:52
-
-
Save carrion256/b652e8af6ec70e67d115ad7288189024 to your computer and use it in GitHub Desktop.
Arbitrum sepolia testnet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Address of Pyth contract | |
| # See [https://docs.pyth.network/documentation/pythnet-price-feeds/evm#mainnet] | |
| pythNetworkAddress: "0x4374e5a8b9C22271E9EB878A2AA31DE97DF15DAF" # Arbitrum sepolia | |
| # debug mode | |
| debug: false | |
| # Refresh rate of config in seconds to prevent rate limiting from github | |
| configRefreshRateInSeconds: 3600 | |
| # See [https://docs.pyth.network/documentation/pythnet-price-feeds/price-service#public-endpoints] | |
| priceServiceEndpoint: "https://hermes.pyth.network" | |
| # maximum number of seconds between updates | |
| validTimePeriodSeconds: 86400 | |
| # update price if diff between previous price and current exceeds threshold | |
| # units is in basis points | |
| # ex: 2 = .02%, 15 = .15%, 200 = 2% | |
| deviationThresholdBps: 500 | |
| # priceIds to check/update. See [https://pyth.network/developers/price-feed-ids#pyth-evm-mainnet] for more | |
| priceIds: | |
| - "0xec5d399846a9209f3fe5881d70aae9268c94339ff9817e8d18ff19fa05eea1c8" # XRP/USD |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment