Skip to content
This repository was archived by the owner on Aug 14, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/ten-candles-camp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@reservoir0x/reservoir-sdk': patch
---

adding mainnet to custom chains export
37 changes: 0 additions & 37 deletions packages/sdk/src/utils/customChains.ts
Original file line number Diff line number Diff line change
@@ -1,42 +1,5 @@
import { Chain } from 'viem'

export const mainnet = {
id: 1,
name: 'Ethereum',
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
rpcUrls: {
default: {
http: [
'https://ethereum-rpc.publicnode.com',
'https://mainnet.gateway.tenderly.co',
'https://rpc.flashbots.net',
'https://rpc.mevblocker.io',
'https://eth.drpc.org',
],
},
},
blockExplorers: {
default: {
name: 'Etherscan',
url: 'https://etherscan.io',
apiUrl: 'https://api.etherscan.io/api',
},
},
contracts: {
ensRegistry: {
address: '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e',
},
ensUniversalResolver: {
address: '0xce01f8eee7E479C928F8919abD53E553a36CeF67',
blockCreated: 19_258_213,
},
multicall3: {
address: '0xca11bde05977b3631167028862be2a173976ca11',
blockCreated: 14_353_601,
},
},
} as const satisfies Chain

export const ancient8 = {
id: 888888888,
name: 'Ancient8',
Expand Down