- 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>
26 lines
575 B
TypeScript
26 lines
575 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const godwoken = /*#__PURE__*/ defineChain({
|
|
id: 71402,
|
|
name: 'Godwoken Mainnet',
|
|
nativeCurrency: { decimals: 18, name: 'pCKB', symbol: 'pCKB' },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://v1.mainnet.godwoken.io/rpc'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'GW Scan',
|
|
url: 'https://v1.gwscan.com',
|
|
},
|
|
},
|
|
contracts: {
|
|
multicall3: {
|
|
address: '0xcA11bde05977b3631167028862bE2a173976CA11',
|
|
blockCreated: 15034,
|
|
},
|
|
},
|
|
testnet: false,
|
|
})
|