- 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
636 B
TypeScript
29 lines
636 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const shibariumTestnet = /*#__PURE__*/ defineChain({
|
|
id: 157,
|
|
name: 'Puppynet Shibarium',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'Bone',
|
|
symbol: 'BONE',
|
|
},
|
|
rpcUrls: {
|
|
default: { http: ['https://puppynet.shibrpc.com'] },
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Blockscout',
|
|
url: 'https://puppyscan.shib.io',
|
|
apiUrl: 'https://puppyscan.shib.io/api',
|
|
},
|
|
},
|
|
contracts: {
|
|
multicall3: {
|
|
address: '0xA4029b74FBA366c926eDFA7Dd10B21C621170a4c',
|
|
blockCreated: 3035769,
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|