Files
FrenoCorp/node_modules/viem/chains/definitions/atletaOlympia.ts
Michael Freno 7c684a42cc FRE-600: Fix code review blockers
- 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>
2026-04-25 00:08:01 -04:00

31 lines
782 B
TypeScript

import { defineChain } from '../../utils/chain/defineChain.js'
export const atletaOlympia = /*#__PURE__*/ defineChain({
id: 2340,
name: 'Atleta Olympia',
nativeCurrency: { decimals: 18, name: 'Atla', symbol: 'ATLA' },
rpcUrls: {
default: {
http: [
'https://testnet-rpc.atleta.network:9944',
'https://testnet-rpc.atleta.network',
],
ws: ['wss://testnet-rpc.atleta.network:9944'],
},
},
blockExplorers: {
default: {
name: 'Atleta Olympia Explorer',
url: 'https://blockscout.atleta.network',
apiUrl: 'https://blockscout.atleta.network/api',
},
},
contracts: {
multicall3: {
address: '0x1472ec6392180fb84F345d2455bCC75B26577115',
blockCreated: 1076473,
},
},
testnet: true,
})