import { chainConfig } from '../../op-stack/chainConfig.js' import { defineChain } from '../../utils/chain/defineChain.js' const sourceId = 11155111 // sepolia export const zoraTestnet = /*#__PURE__*/ defineChain({ ...chainConfig, id: 999999999, name: 'Zora Sepolia Testnet', nativeCurrency: { decimals: 18, name: 'Sepolia Ether', symbol: 'ETH', }, rpcUrls: { default: { http: ['https://sepolia.rpc.zora.energy'], webSocket: ['wss://sepolia.rpc.zora.energy'], }, }, blockExplorers: { default: { name: 'Explorer', url: 'https://sepolia.explorer.zora.energy', apiUrl: 'https://sepolia.explorer.zora.energy/api', }, }, contracts: { ...chainConfig.contracts, multicall3: { address: '0xcA11bde05977b3631167028862bE2a173976CA11', blockCreated: 189123, }, portal: { [sourceId]: { address: '0xDb9F51790365e7dc196e7D072728df39Be958ACe', }, }, }, sourceId, testnet: true, })