- Consolidated duplicate UndoManagers to single instance - Fixed connection promise to only resolve on 'connected' status - Fixed WebSocketProvider import (WebsocketProvider) - Added proper doc.destroy() cleanup - Renamed isPresenceInitialized property to avoid conflict Co-Authored-By: Paperclip <noreply@paperclip.ing>
39 lines
1.0 KiB
TypeScript
39 lines
1.0 KiB
TypeScript
import { chainConfig } from '../../linea/chainConfig.js'
|
|
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const lineaSepolia = /*#__PURE__*/ defineChain({
|
|
...chainConfig,
|
|
id: 59_141,
|
|
name: 'Linea Sepolia Testnet',
|
|
nativeCurrency: { name: 'Linea Ether', symbol: 'ETH', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://rpc.sepolia.linea.build'],
|
|
webSocket: ['wss://rpc.sepolia.linea.build'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Etherscan',
|
|
url: 'https://sepolia.lineascan.build',
|
|
apiUrl: 'https://api-sepolia.lineascan.build/api',
|
|
},
|
|
},
|
|
contracts: {
|
|
multicall3: {
|
|
address: '0xca11bde05977b3631167028862be2a173976ca11',
|
|
blockCreated: 227427,
|
|
},
|
|
ensRegistry: {
|
|
address: '0x5B2636F0f2137B4aE722C01dd5122D7d3e9541f7',
|
|
blockCreated: 2395094,
|
|
},
|
|
ensUniversalResolver: {
|
|
address: '0x4D41762915F83c76EcaF6776d9b08076aA32b492',
|
|
blockCreated: 17_168_484,
|
|
},
|
|
},
|
|
ensTlds: ['.linea.eth'],
|
|
testnet: true,
|
|
})
|