- 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>
24 lines
476 B
TypeScript
24 lines
476 B
TypeScript
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const newton = /*#__PURE__*/ defineChain({
|
|
id: 1012,
|
|
name: 'Newton',
|
|
nativeCurrency: {
|
|
name: 'Newton',
|
|
symbol: 'NEW',
|
|
decimals: 18,
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://global.rpc.mainnet.newtonproject.org'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'NewFi explorer',
|
|
url: 'https://explorer.newtonproject.org/',
|
|
},
|
|
},
|
|
testnet: false,
|
|
})
|