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 2
2
{
3
3
"id" : " linea_goerli" ,
4
4
"mainnet" : false ,
5
- "rpcUrl" : " https://linea- goerli.blastapi.io/$ENV_BLAST_API_KEY " ,
5
+ "rpcUrl" : " https://rpc. goerli.linea.build " ,
6
6
"networkId" : 59140 ,
7
7
"type" : " EvmChain"
8
8
},
102
102
{
103
103
"id" : " fantom_testnet" ,
104
104
"mainnet" : false ,
105
- "rpcUrl" : " https://fantom-testnet.blastapi. io/$ENV_BLAST_API_KEY " ,
105
+ "rpcUrl" : " https://fantom.api.onfinality. io/public " ,
106
106
"networkId" : 4002 ,
107
107
"type" : " EvmChain"
108
108
},
123
123
{
124
124
"id" : " mumbai" ,
125
125
"mainnet" : false ,
126
- "rpcUrl" : " https://polygon-testnet.blastapi. io/$ENV_BLAST_API_KEY " ,
126
+ "rpcUrl" : " https://polygon-mumbai.api.onfinality. io/public " ,
127
127
"networkId" : 80001 ,
128
128
"type" : " EvmChain"
129
129
},
401
401
{
402
402
"id" : " sepolia" ,
403
403
"mainnet" : false ,
404
- "rpcUrl" : " https://eth- sepolia.public.blastapi.io " ,
404
+ "rpcUrl" : " https://sepolia.drpc.org " ,
405
405
"networkId" : 11155111 ,
406
406
"type" : " EvmChain"
407
407
},
Original file line number Diff line number Diff line change 3
3
"id" : " starknet_sepolia" ,
4
4
"wormholeChainName" : " starknet_sepolia" ,
5
5
"mainnet" : false ,
6
- "rpcUrl" : " https://starknet-sepolia.public.blastapi.io/ " ,
6
+ "rpcUrl" : " https://starknet-sepolia.drpc.org " ,
7
7
"type" : " StarknetChain"
8
8
},
9
9
{
10
10
"id" : " starknet_mainnet" ,
11
11
"wormholeChainName" : " starknet" ,
12
12
"mainnet" : true ,
13
- "rpcUrl" : " https://starknet-mainnet.public.blastapi.io/ " ,
13
+ "rpcUrl" : " https://starknet.drpc.org " ,
14
14
"type" : " StarknetChain"
15
15
}
16
16
]
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ forge snapshot
35
35
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.
36
36
37
37
``` shell
38
- anvil --fork-url " https://eth- sepolia.public.blastapi.io "
38
+ anvil --fork-url " https://sepolia.drpc.org "
39
39
```
40
40
41
41
### Deploy
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ if [ "${PYTH_DEPLOY_MODE}" == "devnet" ]; then
29
29
# there is no second fee token pre-deployed in devnet
30
30
fee_token_address2=0x49d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7
31
31
elif [ " ${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
33
33
34
34
chain_id=50075 # starknet_sepolia
35
35
@@ -39,7 +39,7 @@ elif [ "${PYTH_DEPLOY_MODE}" == "sepolia" ]; then
39
39
# ETH
40
40
fee_token_address2=0x049d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7
41
41
elif [ " ${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
43
43
44
44
chain_id=60051 # starknet_mainnet
45
45
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ import {
52
52
53
53
// Create a provider for interacting with Starknet RPC.
54
54
const provider = new RpcProvider ({
55
- nodeUrl: " https://starknet-sepolia.public.blastapi.io /rpc/v0_6" ,
55
+ nodeUrl: " https://starknet-sepolia.drpc.org /rpc/v0_6" ,
56
56
});
57
57
58
58
// 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