You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
import { chainConfig } from '../../op-stack/chainConfig.js'
|
|
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
const sourceId = 17000 // holesky
|
|
|
|
export const fraxtalTestnet = /*#__PURE__*/ defineChain({
|
|
...chainConfig,
|
|
id: 2522,
|
|
name: 'Fraxtal Testnet',
|
|
nativeCurrency: { name: 'Frax', symbol: 'FRAX', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://rpc.testnet.frax.com'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'fraxscan testnet',
|
|
url: 'https://holesky.fraxscan.com',
|
|
apiUrl: 'https://api-holesky.fraxscan.com/api',
|
|
},
|
|
},
|
|
contracts: {
|
|
...chainConfig.contracts,
|
|
l2OutputOracle: {
|
|
[sourceId]: {
|
|
address: '0x715EA64DA13F4d0831ece4Ad3E8c1aa013167F32',
|
|
},
|
|
},
|
|
multicall3: {
|
|
address: '0xca11bde05977b3631167028862be2a173976ca11',
|
|
},
|
|
portal: {
|
|
[sourceId]: {
|
|
address: '0xB9c64BfA498d5b9a8398Ed6f46eb76d90dE5505d',
|
|
blockCreated: 318416,
|
|
},
|
|
},
|
|
l1StandardBridge: {
|
|
[sourceId]: {
|
|
address: '0x0BaafC217162f64930909aD9f2B27125121d6332',
|
|
blockCreated: 318416,
|
|
},
|
|
},
|
|
},
|
|
sourceId,
|
|
})
|