diff --git a/web/pages/thing.tsx b/web/pages/thing.tsx index 2428f0a..23eda6e 100644 --- a/web/pages/thing.tsx +++ b/web/pages/thing.tsx @@ -4,15 +4,14 @@ import { ConnectKitProvider } from 'connectkit'; import { FC, ReactNode } from 'react'; import { ThemeProvider } from 'styled-components'; import { createConfig, http, WagmiProvider } from 'wagmi'; -import { goerli, holesky, mainnet, sepolia } from 'wagmi/chains'; +import { holesky, mainnet, sepolia } from 'wagmi/chains'; import { ProfileButton } from '../components/molecules/ProfileButton'; const client = createConfig({ - chains: [goerli, mainnet, holesky, sepolia], + chains: [mainnet, holesky, sepolia], transports: { [mainnet.id]: http(), - [goerli.id]: http('https://eth-goerli.public.blastapi.io'), [holesky.id]: http(), [sepolia.id]: http(), }, diff --git a/web/util/deployments.ts b/web/util/deployments.ts index 0a7bb4d..cd7d544 100644 --- a/web/util/deployments.ts +++ b/web/util/deployments.ts @@ -21,12 +21,6 @@ export const SORDeployments: Record = { version: '1', }, ], - [goerli.id]: [ - { - factory: '0x2F180aDBAAb3c57af31B7E96969999D4FB33faEE', - version: '1', - }, - ], [sepolia.id]: [ { factory: '0x0Fde82e81270431F2B956E7ce7E8860B2F61bcF9', @@ -49,10 +43,6 @@ export const explorer_urls: Record< transaction: 'https://etherscan.io/tx/:hash', address: 'https://etherscan.io/address/:address', }, - 5: { - transaction: 'https://goerli.etherscan.io/tx/:hash', - address: 'https://goerli.etherscan.io/address/:address', - }, 11_155_111: { transaction: 'https://sepolia.etherscan.io/tx/:hash', address: 'https://sepolia.etherscan.io/address/:address',