Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ Pyth is currently available on the EVM networks below using Pyth Stable price so
| Ble testnet | <CopyAddress address="0x2880aB155794e7179c9eE2e38200202908C17B43" url="https://explorer-ethena-testnet-0.t.conduit.xyz/address/0x2880aB155794e7179c9eE2e38200202908C17B43" /> |
| Boba Sepolia (testnet) | <CopyAddress address="0x8D254a21b3C86D32F7179855531CE99164721933" url="https://28882.testnet.routescan.io/address/0x8D254a21b3C86D32F7179855531CE99164721933" /> |
| Celo Alfajores (testnet) | <CopyAddress address="0x74f09cb3c7e2A01865f424FD14F6dc9A14E3e94E" url="https://explorer.celo.org/alfajores/address/0x74f09cb3c7e2A01865f424FD14F6dc9A14E3e94E" /> |
| Celo Sepolia (testnet) | <CopyAddress address="0x2880aB155794e7179c9eE2e38200202908C17B43" url="https://sepolia.celoscan.io/address/0x2880aB155794e7179c9eE2e38200202908C17B43" /> |
| Chiado (Gnosis testnet) | <CopyAddress address="0x98046Bd286715D3B0BC227Dd7a956b83D8978603" url="https://blockscout.com/gnosis/chiado/address/0x98046Bd286715D3B0BC227Dd7a956b83D8978603" /> |
| Chiliz testnet | <CopyAddress address="0x23f0e8FAeE7bbb405E7A7C3d60138FCfd43d7509" url="https://spicy-explorer.chiliz.com/address/0x23f0e8FAeE7bbb405E7A7C3d60138FCfd43d7509" /> |
| Conflux eSpace testnet | <CopyAddress address="0xDd24F84d36BF92C65F92307595335bdFab5Bbd21" url="https://evmtestnet.confluxscan.io/address/0xDd24F84d36BF92C65F92307595335bdFab5Bbd21" /> |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -239,13 +239,13 @@ Based on the [API documentation](https://pyth-lazer.dourolabs.app/docs), you can

Pyth Pro offers multiple delivery channels to match your latency and frequency requirements:

| Channel | Description | Use Cases |
| ------------------ | ---------------------------------------------------------------------------------------------- | ------------------------------------------- |
| `real_time` | Updates sent immediately when new price is available (no faster than 1ms, no slower than 50ms) | High-frequency trading, real-time analytics |
| `fixed_rate@1ms` | Updates every 1 millisecond | Ultra-low latency applications |
| `fixed_rate@50ms` | Updates every 50 milliseconds | Low-latency trading systems |
| `fixed_rate@200ms` | Updates every 200 milliseconds | Standard trading applications |
| `fixed_rate@1000ms` | Updates every 1 second | General applications, dashboards |
| Channel | Description | Use Cases |
| ------------------- | ---------------------------------------------------------------------------------------------- | ------------------------------------------- |
| `real_time` | Updates sent immediately when new price is available (no faster than 1ms, no slower than 50ms) | High-frequency trading, real-time analytics |
| `fixed_rate@1ms` | Updates every 1 millisecond | Ultra-low latency applications |
| `fixed_rate@50ms` | Updates every 50 milliseconds | Low-latency trading systems |
| `fixed_rate@200ms` | Updates every 200 milliseconds | Standard trading applications |
| `fixed_rate@1000ms` | Updates every 1 second | General applications, dashboards |

## Signature Schemes and Binary Formats

Expand Down
2 changes: 1 addition & 1 deletion contract_manager/scripts/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { existsSync, readFileSync, writeFileSync } from "node:fs";
import path from "node:path";

import Web3 from "web3";
import { Contract } from "web3-eth-contract";
import type { Contract } from "web3-eth-contract";
import type { InferredOptionType } from "yargs";

import type { PrivateKey } from "../src/core/base";
Expand Down
7 changes: 7 additions & 0 deletions contract_manager/src/store/chains/EvmChains.json
Original file line number Diff line number Diff line change
Expand Up @@ -1384,5 +1384,12 @@
"rpcUrl": "https://subnets.avax.network/orange/mainnet/rpc",
"networkId": 1510,
"type": "EvmChain"
},
{
"id": "celo_sepolia_testnet",
"mainnet": false,
"rpcUrl": "https://forno.celo-sepolia.celo-testnet.org",
"networkId": 11142220,
"type": "EvmChain"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -913,5 +913,10 @@
"chain": "orange",
"address": "0x2880aB155794e7179c9eE2e38200202908C17B43",
"type": "EvmPriceFeedContract"
},
{
"chain": "celo_sepolia_testnet",
"address": "0x2880aB155794e7179c9eE2e38200202908C17B43",
"type": "EvmPriceFeedContract"
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -923,5 +923,10 @@
"chain": "orange",
"address": "0xb27e5ca259702f209a29225d0eDdC131039C9933",
"type": "EvmWormholeContract"
},
{
"chain": "celo_sepolia_testnet",
"address": "0xb27e5ca259702f209a29225d0eDdC131039C9933",
"type": "EvmWormholeContract"
}
]
1 change: 1 addition & 0 deletions governance/xc_admin/packages/xc_admin_common/src/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,7 @@ export const RECEIVER_CHAINS = {
hoodi: 50134, // Ethereum hoodi, the new Ethereum testnet
taiko_hoodi: 50135,
morph_hoodi: 50136,
celo_sepolia_testnet: 50137,
};

// If there is any overlapping value the receiver chain will replace the wormhole
Expand Down
4 changes: 4 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion target_chains/ethereum/contracts/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pnpm turbo build --filter @pythnetwork/pyth-evm-contract

echo "=========== Deploying the contracts ==========="

pnpm --filter=@pythnetwork/contract-manager exec ts-node scripts/deploy_evm_pricefeed_contracts.ts --std-output-dir $stdoutputdir --private-key $PK --chain "$@"
pnpm --filter=@pythnetwork/contract-manager exec tsx scripts/deploy_evm_pricefeed_contracts.ts --std-output-dir $stdoutputdir --private-key $PK --chain "$@"

echo "=========== Cleaning up ==========="
if [ -n "${tmpdir:-}" ]; then
Expand Down
3 changes: 2 additions & 1 deletion target_chains/ethereum/contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@
"@matterlabs/hardhat-zksync": "^1.1.0",
"@matterlabs/hardhat-zksync-deploy": "^0.6.6",
"@matterlabs/hardhat-zksync-solc": "^0.3.14",
"@nomad-xyz/excessively-safe-call": "^0.0.1-rc.1",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/contracts": "=4.8.1",
"@openzeppelin/contracts-upgradeable": "=4.8.1",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"@nomad-xyz/excessively-safe-call": "^0.0.1-rc.1",
"@pythnetwork/contract-manager": "workspace:*",
"@pythnetwork/entropy-sdk-solidity": "workspace:*",
"@pythnetwork/pulse-sdk-solidity": "workspace:*",
Expand All @@ -49,6 +49,7 @@
"lodash": "^4.17.21",
"solc": "0.8.4",
"ts-node": "catalog:",
"tsx": "catalog:",
"web3": "^1.2.2",
"web3-eth-abi": "^1.2.2",
"web3-utils": "^1.2.2",
Expand Down
Loading