Skip to content

Commit 07835ec

Browse files
authored
chore: remove deprecated BlastAPI endpoints (#3025)
1 parent 6c32e6c commit 07835ec

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

contract_manager/store/chains/EvmChains.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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
},
@@ -102,7 +102,7 @@
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
},
@@ -123,7 +123,7 @@
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
},
@@ -401,7 +401,7 @@
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
},

contract_manager/store/chains/StarknetChains.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
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
]

lazer/contracts/evm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ forge snapshot
3535
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.
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

target_chains/starknet/contracts/deploy/deploy.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
3131
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
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
4141
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
4343

4444
chain_id=60051 # starknet_mainnet
4545

target_chains/starknet/sdk/js/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ import {
5252

5353
// Create a provider for interacting with Starknet RPC.
5454
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",
5656
});
5757

5858
// Create a `Contract` instance to interact with a fee token contract on Starknet

0 commit comments

Comments
 (0)