-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathancient8Sepolia.ts
44 lines (42 loc) · 1.1 KB
/
ancient8Sepolia.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
import { chainConfig } from '../../op-stack/chainConfig.js'
import { defineChain } from '../../utils/chain/defineChain.js'
const sourceId = 11_155_111 // sepolia
export const ancient8Sepolia = /*#__PURE__*/ defineChain({
...chainConfig,
id: 28122024,
name: 'Ancient8 Testnet',
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
rpcUrls: {
default: {
http: ['https://rpcv2-testnet.ancient8.gg'],
},
},
blockExplorers: {
default: {
name: 'Ancient8 Celestia Testnet explorer',
url: 'https://scanv2-testnet.ancient8.gg',
apiUrl: 'https://scanv2-testnet.ancient8.gg/api',
},
},
contracts: {
...chainConfig.contracts,
l2OutputOracle: {
[sourceId]: {
address: '0x942fD5017c0F60575930D8574Eaca13BEcD6e1bB',
},
},
portal: {
[sourceId]: {
address: '0xfa1d9E26A6aCD7b22115D27572c1221B9803c960',
blockCreated: 4972908,
},
},
l1StandardBridge: {
[sourceId]: {
address: '0xF6Bc0146d3c74D48306e79Ae134A260E418C9335',
blockCreated: 4972908,
},
},
},
sourceId,
})