- 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>
29 lines
691 B
TypeScript
29 lines
691 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const assetChainTestnet = /*#__PURE__*/ defineChain({
|
|
id: 42_421,
|
|
name: 'AssetChain Testnet',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'Real World Asset',
|
|
symbol: 'RWA',
|
|
},
|
|
rpcUrls: {
|
|
default: { http: ['https://enugu-rpc.assetchain.org'] },
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Asset Chain Testnet Explorer',
|
|
url: 'https://scan-testnet.assetchain.org',
|
|
apiUrl: 'https://scan-testnet.assetchain.org/api',
|
|
},
|
|
},
|
|
testnet: true,
|
|
contracts: {
|
|
multicall3: {
|
|
address: '0x989F832D35988cb5e3eB001Fa2Fe789469EC31Ea',
|
|
blockCreated: 17177,
|
|
},
|
|
},
|
|
})
|