UNPKG

viem

Version:

TypeScript Interface for Ethereum

60 lines (56 loc) 1.41 kB
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'], }, }, })