This repository has been archived by the owner on Sep 6, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6eb1b2e
commit 0a1da8d
Showing
1 changed file
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +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" }, | ||
ensRegistry: { address: '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e' }, | ||
ensUniversalResolver: { | ||
address: "0x21B000Fd62a880b2125A61e36a284BB757b76025", | ||
address: '0x21B000Fd62a880b2125A61e36a284BB757b76025', | ||
blockCreated: 3914906, | ||
}, | ||
}, | ||
testnet: true, | ||
} as const satisfies Chain; | ||
} as const satisfies Chain |