viem
Version:
43 lines (40 loc) • 986 B
text/typescript
import { chainConfig } from '../../op-stack/chainConfig.js'
import { defineChain } from '../../utils/chain/defineChain.js'
const sourceId = 5 // goerli
export const zoraTestnet = /*#__PURE__*/ defineChain({
...chainConfig,
id: 999,
name: 'Zora Goerli Testnet',
nativeCurrency: {
decimals: 18,
name: 'Zora Goerli',
symbol: 'ETH',
},
rpcUrls: {
default: {
http: ['https://testnet.rpc.zora.energy'],
webSocket: ['wss://testnet.rpc.zora.energy'],
},
},
blockExplorers: {
default: {
name: 'Explorer',
url: 'https://testnet.explorer.zora.energy',
apiUrl: 'https://testnet.explorer.zora.energy/api',
},
},
contracts: {
...chainConfig.contracts,
multicall3: {
address: '0xcA11bde05977b3631167028862bE2a173976CA11',
blockCreated: 189123,
},
portal: {
[sourceId]: {
address: '0xDb9F51790365e7dc196e7D072728df39Be958ACe',
},
},
},
sourceId,
testnet: true,
})