- 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
648 B
TypeScript
27 lines
648 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const artelaTestnet = /*#__PURE__*/ defineChain({
|
|
id: 11822,
|
|
name: 'Artela Testnet',
|
|
nativeCurrency: { name: 'ART', symbol: 'ART', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://betanet-rpc1.artela.network'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Artela',
|
|
url: 'https://betanet-scan.artela.network',
|
|
apiUrl: 'https://betanet-scan.artela.network/api',
|
|
},
|
|
},
|
|
contracts: {
|
|
multicall3: {
|
|
address: '0xd07c8635f76e8745Ee7092fbb6e8fbc5FeF09DD7',
|
|
blockCreated: 7001871,
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|