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

Commit

Permalink
dev: format
Browse files Browse the repository at this point in the history
  • Loading branch information
dschlabach committed Aug 15, 2023
1 parent 6eb1b2e commit 0a1da8d
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions packages/chains/src/sepolia.ts
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

0 comments on commit 0a1da8d

Please sign in to comment.