-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbaseSepolia.ts
55 lines (53 loc) · 1.33 KB
/
baseSepolia.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import { chainConfig } from '../../op-stack/chainConfig.js'
import { defineChain } from '../../utils/chain/defineChain.js'
const sourceId = 11_155_111 // sepolia
export const baseSepolia = /*#__PURE__*/ defineChain({
...chainConfig,
id: 84532,
network: 'base-sepolia',
name: 'Base Sepolia',
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
rpcUrls: {
default: {
http: ['https://sepolia.base.org'],
},
},
blockExplorers: {
default: {
name: 'Basescan',
url: 'https://sepolia.basescan.org',
apiUrl: 'https://api-sepolia.basescan.org/api',
},
},
contracts: {
...chainConfig.contracts,
disputeGameFactory: {
[sourceId]: {
address: '0xd6E6dBf4F7EA0ac412fD8b65ED297e64BB7a06E1',
},
},
l2OutputOracle: {
[sourceId]: {
address: '0x84457ca9D0163FbC4bbfe4Dfbb20ba46e48DF254',
},
},
portal: {
[sourceId]: {
address: '0x49f53e41452c74589e85ca1677426ba426459e85',
blockCreated: 4446677,
},
},
l1StandardBridge: {
[sourceId]: {
address: '0xfd0Bf71F60660E2f608ed56e1659C450eB113120',
blockCreated: 4446677,
},
},
multicall3: {
address: '0xca11bde05977b3631167028862be2a173976ca11',
blockCreated: 1059647,
},
},
testnet: true,
sourceId,
})