-
-
Notifications
You must be signed in to change notification settings - Fork 851
/
bobSepolia.ts
48 lines (46 loc) · 1.08 KB
/
bobSepolia.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
import { chainConfig } from '../../op-stack/chainConfig.js'
import { defineChain } from '../../utils/chain/defineChain.js'
const sourceId = 11_155_111 // sepolia
export const bobSepolia = defineChain({
...chainConfig,
id: 808813,
name: 'BOB Sepolia',
nativeCurrency: {
decimals: 18,
name: 'ETH',
symbol: 'ETH',
},
rpcUrls: {
default: {
http: ['https://bob-sepolia.rpc.gobob.xyz'],
webSocket: ['wss://bob-sepolia.rpc.gobob.xyz'],
},
},
blockExplorers: {
default: {
name: 'BOB Sepolia Explorer',
url: 'https://bob-sepolia.explorer.gobob.xyz',
},
},
contracts: {
...chainConfig.contracts,
multicall3: {
address: '0xcA11bde05977b3631167028862bE2a173976CA11',
blockCreated: 35677,
},
l2OutputOracle: {
[sourceId]: {
address: '0x14D0069452b4AE2b250B395b8adAb771E4267d2f',
blockCreated: 4462615,
},
},
portal: {
[sourceId]: {
address: '0x867B1Aa872b9C8cB5E9F7755feDC45BB24Ad0ae4',
blockCreated: 4462615,
},
},
},
testnet: true,
sourceId,
})