Files
FrenoCorp/node_modules/viem/chains/definitions/giwaSepolia.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

60 lines
1.4 KiB
TypeScript

import { chainConfig } from '../../op-stack/chainConfig.js'
import { defineChain } from '../../utils/chain/defineChain.js'
const sourceId = 11_155_111 // sepolia
export const giwaSepolia = /*#__PURE__*/ defineChain({
...chainConfig,
id: 91342,
network: 'giwa-sepolia',
name: 'GIWA Sepolia',
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
blockTime: 1_000,
rpcUrls: {
default: {
http: ['https://sepolia-rpc.giwa.io'],
},
},
blockExplorers: {
default: {
name: 'Blockscout',
url: 'https://sepolia-explorer.giwa.io',
apiUrl: 'https://sepolia-explorer.giwa.io/api',
},
},
contracts: {
...chainConfig.contracts,
multicall3: {
address: '0xcA11bde05977b3631167028862bE2a173976CA11',
blockCreated: 0,
},
disputeGameFactory: {
[sourceId]: {
address: '0x37347caB2afaa49B776372279143D71ad1f354F6',
},
},
portal: {
[sourceId]: {
address: '0x956962C34687A954e611A83619ABaA37Ce6bC78A',
},
},
l1StandardBridge: {
[sourceId]: {
address: '0x77b2ffc0F57598cAe1DB76cb398059cF5d10A7E7',
},
},
},
testnet: true,
sourceId,
})
export const giwaSepoliaPreconf = defineChain({
...giwaSepolia,
experimental_preconfirmationTime: 200,
rpcUrls: {
default: {
http: ['https://sepolia-rpc-flashblocks.giwa.io'],
},
},
})