File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed
contract_manager/store/chains Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 22 {
33 "id" : " linea_goerli" ,
44 "mainnet" : false ,
5- "rpcUrl" : " https://linea- goerli.blastapi.io/$ENV_BLAST_API_KEY " ,
5+ "rpcUrl" : " https://rpc. goerli.linea.build " ,
66 "networkId" : 59140 ,
77 "type" : " EvmChain"
88 },
102102 {
103103 "id" : " fantom_testnet" ,
104104 "mainnet" : false ,
105- "rpcUrl" : " https://fantom-testnet.blastapi. io/$ENV_BLAST_API_KEY " ,
105+ "rpcUrl" : " https://fantom.api.onfinality. io/public " ,
106106 "networkId" : 4002 ,
107107 "type" : " EvmChain"
108108 },
123123 {
124124 "id" : " mumbai" ,
125125 "mainnet" : false ,
126- "rpcUrl" : " https://polygon-testnet.blastapi. io/$ENV_BLAST_API_KEY " ,
126+ "rpcUrl" : " https://polygon-mumbai.api.onfinality. io/public " ,
127127 "networkId" : 80001 ,
128128 "type" : " EvmChain"
129129 },
401401 {
402402 "id" : " sepolia" ,
403403 "mainnet" : false ,
404- "rpcUrl" : " https://eth- sepolia.public.blastapi.io " ,
404+ "rpcUrl" : " https://sepolia.drpc.org " ,
405405 "networkId" : 11155111 ,
406406 "type" : " EvmChain"
407407 },
Original file line number Diff line number Diff line change 33 "id" : " starknet_sepolia" ,
44 "wormholeChainName" : " starknet_sepolia" ,
55 "mainnet" : false ,
6- "rpcUrl" : " https://starknet-sepolia.public.blastapi.io/ " ,
6+ "rpcUrl" : " https://starknet-sepolia.drpc.org " ,
77 "type" : " StarknetChain"
88 },
99 {
1010 "id" : " starknet_mainnet" ,
1111 "wormholeChainName" : " starknet" ,
1212 "mainnet" : true ,
13- "rpcUrl" : " https://starknet-mainnet.public.blastapi.io/ " ,
13+ "rpcUrl" : " https://starknet.drpc.org " ,
1414 "type" : " StarknetChain"
1515 }
1616]
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ forge snapshot
3535Anvil 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.
3636
3737``` shell
38- anvil --fork-url " https://eth- sepolia.public.blastapi.io "
38+ anvil --fork-url " https://sepolia.drpc.org "
3939```
4040
4141### Deploy
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ if [ "${PYTH_DEPLOY_MODE}" == "devnet" ]; then
2929 # there is no second fee token pre-deployed in devnet
3030 fee_token_address2=0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7
3131elif [ " ${PYTH_DEPLOY_MODE} " == " sepolia" ]; then
32- export STARKNET_RPC=https://starknet-sepolia.public.blastapi.io /rpc/v0_6
32+ export STARKNET_RPC=https://starknet-sepolia.drpc.org /rpc/v0_6
3333
3434 chain_id=50075 # starknet_sepolia
3535
@@ -39,7 +39,7 @@ elif [ "${PYTH_DEPLOY_MODE}" == "sepolia" ]; then
3939 # ETH
4040 fee_token_address2=0x049d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7
4141elif [ " ${PYTH_DEPLOY_MODE} " == " mainnet" ]; then
42- export STARKNET_RPC=https://starknet-mainnet.public.blastapi.io /rpc/v0_6
42+ export STARKNET_RPC=https://starknet.drpc.org /rpc/v0_6
4343
4444 chain_id=60051 # starknet_mainnet
4545
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ import {
5252
5353// Create a provider for interacting with Starknet RPC.
5454const provider = new RpcProvider ({
55- nodeUrl: " https://starknet-sepolia.public.blastapi.io /rpc/v0_6" ,
55+ nodeUrl: " https://starknet-sepolia.drpc.org /rpc/v0_6" ,
5656});
5757
5858// Create a `Contract` instance to interact with a fee token contract on Starknet
You can’t perform that action at this time.
0 commit comments