Skip to content
This repository has been archived by the owner on Sep 6, 2023. It is now read-only.

Commit

Permalink
feat: add ENS registry and universal resolver for Sepolia
Browse files Browse the repository at this point in the history
  • Loading branch information
dschlabach committed Aug 15, 2023
1 parent 849d7a5 commit 6eb1b2e
Showing 1 changed file with 21 additions and 16 deletions.
37 changes: 21 additions & 16 deletions packages/chains/src/sepolia.ts
Original file line number Diff line number Diff line change
@@ -1,41 +1,46 @@
import { Chain } from './types'
import { Chain } from "./types";

export const sepolia = {
id: 11_155_111,
network: 'sepolia',
name: 'Sepolia',
nativeCurrency: { name: 'Sepolia Ether', symbol: 'SEP', decimals: 18 },
network: "sepolia",
name: "Sepolia",
nativeCurrency: { name: "Sepolia Ether", symbol: "SEP", decimals: 18 },
rpcUrls: {
alchemy: {
http: ['https://eth-sepolia.g.alchemy.com/v2'],
webSocket: ['wss://eth-sepolia.g.alchemy.com/v2'],
http: ["https://eth-sepolia.g.alchemy.com/v2"],
webSocket: ["wss://eth-sepolia.g.alchemy.com/v2"],
},
infura: {
http: ['https://sepolia.infura.io/v3'],
webSocket: ['wss://sepolia.infura.io/ws/v3'],
http: ["https://sepolia.infura.io/v3"],
webSocket: ["wss://sepolia.infura.io/ws/v3"],
},
default: {
http: ['https://rpc.sepolia.org'],
http: ["https://rpc.sepolia.org"],
},
public: {
http: ['https://rpc.sepolia.org'],
http: ["https://rpc.sepolia.org"],
},
},
blockExplorers: {
etherscan: {
name: 'Etherscan',
url: 'https://sepolia.etherscan.io',
name: "Etherscan",
url: "https://sepolia.etherscan.io",
},
default: {
name: 'Etherscan',
url: 'https://sepolia.etherscan.io',
name: "Etherscan",
url: "https://sepolia.etherscan.io",
},
},
contracts: {
multicall3: {
address: '0xca11bde05977b3631167028862be2a173976ca11',
address: "0xca11bde05977b3631167028862be2a173976ca11",
blockCreated: 6507670,
},
ensRegistry: { address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e" },
ensUniversalResolver: {
address: "0x21B000Fd62a880b2125A61e36a284BB757b76025",
blockCreated: 3914906,
},
},
testnet: true,
} as const satisfies Chain
} as const satisfies Chain;

0 comments on commit 6eb1b2e

Please sign in to comment.