Skip to content
This repository was archived by the owner on Aug 14, 2025. It is now read-only.

Commit 1822275

Browse files
committed
feat: fixing mainnet rpc
1 parent 88c8ffb commit 1822275

File tree

1 file changed

+34
-1
lines changed

1 file changed

+34
-1
lines changed

utils/chains.ts

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,40 @@ const usdcCurrencyBase = {
5757
}
5858

5959
export const DefaultChain: ReservoirChain = {
60-
...mainnet,
60+
id: 1,
61+
name: 'Ethereum',
62+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
63+
rpcUrls: {
64+
default: {
65+
http: [
66+
'https://ethereum-rpc.publicnode.com',
67+
'https://mainnet.gateway.tenderly.co',
68+
'https://rpc.flashbots.net',
69+
'https://rpc.mevblocker.io',
70+
'https://eth.drpc.org',
71+
],
72+
},
73+
},
74+
blockExplorers: {
75+
default: {
76+
name: 'Etherscan',
77+
url: 'https://etherscan.io',
78+
apiUrl: 'https://api.etherscan.io/api',
79+
},
80+
},
81+
contracts: {
82+
ensRegistry: {
83+
address: '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e',
84+
},
85+
ensUniversalResolver: {
86+
address: '0xce01f8eee7E479C928F8919abD53E553a36CeF67',
87+
blockCreated: 19_258_213,
88+
},
89+
multicall3: {
90+
address: '0xca11bde05977b3631167028862be2a173976ca11',
91+
blockCreated: 14_353_601,
92+
},
93+
},
6194
// Any url to display the logo of the chain in light mode
6295
lightIconUrl: '/icons/eth-icon-dark.svg',
6396
// Any url to display the logo of the chain in dark mode

0 commit comments

Comments
 (0)