-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbob.ts
47 lines (45 loc) · 1 KB
/
bob.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
import { chainConfig } from '../../op-stack/chainConfig.js'
import { defineChain } from '../../utils/chain/defineChain.js'
const sourceId = 1 // mainnet
export const bob = defineChain({
...chainConfig,
id: 60808,
name: 'BOB',
nativeCurrency: {
decimals: 18,
name: 'ETH',
symbol: 'ETH',
},
rpcUrls: {
default: {
http: ['https://rpc.gobob.xyz'],
webSocket: ['wss://rpc.gobob.xyz'],
},
},
blockExplorers: {
default: {
name: 'BOB Explorer',
url: 'https://explorer.gobob.xyz',
},
},
contracts: {
...chainConfig.contracts,
multicall3: {
address: '0xcA11bde05977b3631167028862bE2a173976CA11',
blockCreated: 23131,
},
l2OutputOracle: {
[sourceId]: {
address: '0xdDa53E23f8a32640b04D7256e651C1db98dB11C1',
blockCreated: 4462615,
},
},
portal: {
[sourceId]: {
address: '0x8AdeE124447435fE03e3CD24dF3f4cAE32E65a3E',
blockCreated: 4462615,
},
},
},
sourceId,
})