diff --git a/.changeset/rare-falcons-tap.md b/.changeset/rare-falcons-tap.md new file mode 100644 index 00000000..5eb2ff53 --- /dev/null +++ b/.changeset/rare-falcons-tap.md @@ -0,0 +1,8 @@ +--- +'@api3/contracts': patch +--- + +Update RPC provider configurations: + +- Replace default with tenderly for ronin +- Remove drpc from zircuit diff --git a/data/chains/ronin.json b/data/chains/ronin.json index 1abd4fe1..10669766 100644 --- a/data/chains/ronin.json +++ b/data/chains/ronin.json @@ -7,7 +7,7 @@ "providers": [ { "alias": "default", - "rpcUrl": "https://ronin.drpc.org" + "rpcUrl": "https://ronin.gateway.tenderly.co" }, { "alias": "public", diff --git a/data/chains/zircuit.json b/data/chains/zircuit.json index fed8e231..6fcaa406 100644 --- a/data/chains/zircuit.json +++ b/data/chains/zircuit.json @@ -12,10 +12,6 @@ { "alias": "sentio", "rpcUrl": "https://rpc.sentio.xyz/zircuit" - }, - { - "alias": "drpc", - "homepageUrl": "https://drpc.org" } ], "symbol": "ETH", diff --git a/src/generated/chains.ts b/src/generated/chains.ts index bb371419..3c61d242 100644 --- a/src/generated/chains.ts +++ b/src/generated/chains.ts @@ -634,7 +634,7 @@ export const CHAINS: Chain[] = [ id: '2020', name: 'Ronin', providers: [ - { alias: 'default', rpcUrl: 'https://ronin.drpc.org' }, + { alias: 'default', rpcUrl: 'https://ronin.gateway.tenderly.co' }, { alias: 'public', rpcUrl: 'https://api.roninchain.com/rpc/' }, { alias: 'alchemy', homepageUrl: 'https://alchemy.com' }, { alias: 'tenderly', homepageUrl: 'https://tenderly.co/' }, @@ -890,7 +890,6 @@ export const CHAINS: Chain[] = [ providers: [ { alias: 'default', rpcUrl: 'https://mainnet.zircuit.com' }, { alias: 'sentio', rpcUrl: 'https://rpc.sentio.xyz/zircuit' }, - { alias: 'drpc', homepageUrl: 'https://drpc.org' }, ], symbol: 'ETH', testnet: false,