- 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>
18 lines
349 B
TypeScript
18 lines
349 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const anvil = /*#__PURE__*/ defineChain({
|
|
id: 31_337,
|
|
name: 'Anvil',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'Ether',
|
|
symbol: 'ETH',
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['http://127.0.0.1:8545'],
|
|
webSocket: ['ws://127.0.0.1:8545'],
|
|
},
|
|
},
|
|
})
|