- 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
543 B
TypeScript
27 lines
543 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const guruTestnet = /*#__PURE__*/ defineChain({
|
|
id: 261,
|
|
name: 'Guru Network Testnet',
|
|
nativeCurrency: {
|
|
name: 'tGURU Token',
|
|
symbol: 'tGURU',
|
|
decimals: 18,
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: [
|
|
'https://rpc-test.gurunetwork.ai',
|
|
'https://rpc.gurunetwork.ai/archive/261',
|
|
],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Guruscan',
|
|
url: 'https://sepolia.gurunetwork.ai',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|