- 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>
27 lines
652 B
TypeScript
27 lines
652 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const iotaTestnet = /*#__PURE__*/ defineChain({
|
|
id: 1075,
|
|
name: 'IOTA EVM Testnet',
|
|
network: 'iotaevm-testnet',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'IOTA',
|
|
symbol: 'IOTA',
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://json-rpc.evm.testnet.iotaledger.net'],
|
|
webSocket: ['wss://ws.json-rpc.evm.testnet.iotaledger.net'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Explorer',
|
|
url: 'https://explorer.evm.testnet.iotaledger.net',
|
|
apiUrl: 'https://explorer.evm.testnet.iotaledger.net/api',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|