- 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>
23 lines
552 B
TypeScript
23 lines
552 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const siliconSepolia = /*#__PURE__*/ defineChain({
|
|
id: 1722641160,
|
|
name: 'Silicon Sepolia zkEVM',
|
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: [
|
|
'https://rpc-sepolia.silicon.network',
|
|
'https://silicon-testnet.nodeinfra.com',
|
|
],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'SiliconSepoliaScope',
|
|
url: 'https://scope-sepolia.silicon.network',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|