Skip to content

Commit 21dad18

Browse files
authored
Merge pull request #529 from api3dao/bdrhn9/update-rpc-providers
Updates RPC provider configurations
2 parents bd603a7 + ce97433 commit 21dad18

File tree

5 files changed

+11
-12
lines changed

5 files changed

+11
-12
lines changed

.changeset/violet-candles-cheat.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
'@api3/contracts': patch
3+
---
4+
5+
Updates RPC provider configurations:
6+
7+
- Update default provider for ethereum-holesky-testnet
8+
- Remove publicnode from berachain
9+
- Remove blastapi from moonriver

data/chains/berachain.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,6 @@
1717
"alias": "default",
1818
"rpcUrl": "https://rpc.berachain.com/"
1919
},
20-
{
21-
"alias": "publicnode",
22-
"rpcUrl": "https://berachain-rpc.publicnode.com"
23-
},
2420
{
2521
"alias": "alchemy",
2622
"homepageUrl": "https://alchemy.com"

data/chains/ethereum-holesky-testnet.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"providers": [
1717
{
1818
"alias": "default",
19-
"rpcUrl": "https://holesky.gateway.tenderly.co"
19+
"rpcUrl": "https://ethereum-holesky-rpc.publicnode.com"
2020
}
2121
],
2222
"symbol": "ETH",

data/chains/moonriver.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,6 @@
2222
"alias": "publicnode",
2323
"rpcUrl": "https://moonriver-rpc.publicnode.com"
2424
},
25-
{
26-
"alias": "blastapi",
27-
"homepageUrl": "https://blastapi.io"
28-
},
2925
{
3026
"alias": "drpc",
3127
"homepageUrl": "https://drpc.org/"

src/generated/chains.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,6 @@ export const CHAINS: Chain[] = [
191191
name: 'Berachain',
192192
providers: [
193193
{ alias: 'default', rpcUrl: 'https://rpc.berachain.com/' },
194-
{ alias: 'publicnode', rpcUrl: 'https://berachain-rpc.publicnode.com' },
195194
{ alias: 'alchemy', homepageUrl: 'https://alchemy.com' },
196195
{ alias: 'drpc', homepageUrl: 'https://drpc.org' },
197196
{ alias: 'quicknode', homepageUrl: 'https://quicknode.com' },
@@ -369,7 +368,7 @@ export const CHAINS: Chain[] = [
369368
},
370369
id: '17000',
371370
name: 'Ethereum Holesky testnet',
372-
providers: [{ alias: 'default', rpcUrl: 'https://holesky.gateway.tenderly.co' }],
371+
providers: [{ alias: 'default', rpcUrl: 'https://ethereum-holesky-rpc.publicnode.com' }],
373372
symbol: 'ETH',
374373
testnet: true,
375374
},
@@ -945,7 +944,6 @@ export const CHAINS: Chain[] = [
945944
providers: [
946945
{ alias: 'default', rpcUrl: 'https://rpc.api.moonriver.moonbeam.network' },
947946
{ alias: 'publicnode', rpcUrl: 'https://moonriver-rpc.publicnode.com' },
948-
{ alias: 'blastapi', homepageUrl: 'https://blastapi.io' },
949947
{ alias: 'drpc', homepageUrl: 'https://drpc.org/' },
950948
],
951949
symbol: 'MOVR',

0 commit comments

Comments
 (0)