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
8 changes: 4 additions & 4 deletions contract_manager/store/chains/EvmChains.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
"id": "linea_goerli",
"mainnet": false,
"rpcUrl": "https://linea-goerli.blastapi.io/$ENV_BLAST_API_KEY",
"rpcUrl": "https://rpc.goerli.linea.build",
"networkId": 59140,
"type": "EvmChain"
},
Expand Down Expand Up @@ -102,7 +102,7 @@
{
"id": "fantom_testnet",
"mainnet": false,
"rpcUrl": "https://fantom-testnet.blastapi.io/$ENV_BLAST_API_KEY",
"rpcUrl": "https://fantom.api.onfinality.io/public",
"networkId": 4002,
"type": "EvmChain"
},
Expand All @@ -123,7 +123,7 @@
{
"id": "mumbai",
"mainnet": false,
"rpcUrl": "https://polygon-testnet.blastapi.io/$ENV_BLAST_API_KEY",
"rpcUrl": "https://polygon-mumbai.api.onfinality.io/public",
"networkId": 80001,
"type": "EvmChain"
},
Expand Down Expand Up @@ -401,7 +401,7 @@
{
"id": "sepolia",
"mainnet": false,
"rpcUrl": "https://eth-sepolia.public.blastapi.io",
"rpcUrl": "https://sepolia.drpc.org",
"networkId": 11155111,
"type": "EvmChain"
},
Expand Down
4 changes: 2 additions & 2 deletions contract_manager/store/chains/StarknetChains.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
"id": "starknet_sepolia",
"wormholeChainName": "starknet_sepolia",
"mainnet": false,
"rpcUrl": "https://starknet-sepolia.public.blastapi.io/",
"rpcUrl": "https://starknet-sepolia.drpc.org",
"type": "StarknetChain"
},
{
"id": "starknet_mainnet",
"wormholeChainName": "starknet",
"mainnet": true,
"rpcUrl": "https://starknet-mainnet.public.blastapi.io/",
"rpcUrl": "https://starknet.drpc.org",
"type": "StarknetChain"
}
]
2 changes: 1 addition & 1 deletion lazer/contracts/evm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ forge snapshot
Anvil does not come with CreateX by default. It can be deployed or an RPC which has the contract can be forked. The below command forks an RPC with a functional CreateX contract.

```shell
anvil --fork-url "https://eth-sepolia.public.blastapi.io"
anvil --fork-url "https://sepolia.drpc.org"
```

### Deploy
Expand Down
4 changes: 2 additions & 2 deletions target_chains/starknet/contracts/deploy/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ if [ "${PYTH_DEPLOY_MODE}" == "devnet" ]; then
# there is no second fee token pre-deployed in devnet
fee_token_address2=0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7
elif [ "${PYTH_DEPLOY_MODE}" == "sepolia" ]; then
export STARKNET_RPC=https://starknet-sepolia.public.blastapi.io/rpc/v0_6
export STARKNET_RPC=https://starknet-sepolia.drpc.org/rpc/v0_6

chain_id=50075 # starknet_sepolia

Expand All @@ -39,7 +39,7 @@ elif [ "${PYTH_DEPLOY_MODE}" == "sepolia" ]; then
# ETH
fee_token_address2=0x049d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7
elif [ "${PYTH_DEPLOY_MODE}" == "mainnet" ]; then
export STARKNET_RPC=https://starknet-mainnet.public.blastapi.io/rpc/v0_6
export STARKNET_RPC=https://starknet.drpc.org/rpc/v0_6

chain_id=60051 # starknet_mainnet

Expand Down
2 changes: 1 addition & 1 deletion target_chains/starknet/sdk/js/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ import {

// Create a provider for interacting with Starknet RPC.
const provider = new RpcProvider({
nodeUrl: "https://starknet-sepolia.public.blastapi.io/rpc/v0_6",
nodeUrl: "https://starknet-sepolia.drpc.org/rpc/v0_6",
});

// Create a `Contract` instance to interact with a fee token contract on Starknet
Expand Down
Loading