Skip to content

Commit

Permalink
Deprecate sweet old Goerli (#3)
Browse files Browse the repository at this point in the history
* Update thing.tsx

* Update deployments.ts
  • Loading branch information
yashgo0018 authored Jul 14, 2024
1 parent c9a5e34 commit b883301
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
5 changes: 2 additions & 3 deletions web/pages/thing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
},
Expand Down
10 changes: 0 additions & 10 deletions web/util/deployments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,6 @@ export const SORDeployments: Record<number, SORDeployment[]> = {
version: '1',
},
],
[goerli.id]: [
{
factory: '0x2F180aDBAAb3c57af31B7E96969999D4FB33faEE',
version: '1',
},
],
[sepolia.id]: [
{
factory: '0x0Fde82e81270431F2B956E7ce7E8860B2F61bcF9',
Expand All @@ -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',
Expand Down

0 comments on commit b883301

Please sign in to comment.