Skip to content

Commit

Permalink
chore: remove goerli
Browse files Browse the repository at this point in the history
  • Loading branch information
schmanu committed Feb 21, 2024
1 parent 70f3f31 commit b46ce3d
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/config/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ export const SAFE_URL = IS_PRODUCTION ? 'https://app.safe.global' : 'https://saf
// Chains
export const Chains = {
MAINNET: '1',
GOERLI: '5',
SEPOLIA: '11155111',
}

Expand All @@ -36,14 +35,12 @@ export const _DEFAULT_CHAIN_ID = IS_PRODUCTION ? Chains.MAINNET : Chains.SEPOLIA

export const CHAIN_SHORT_NAME: ChainConfig<string> = {
[Chains.MAINNET]: 'eth',
[Chains.GOERLI]: 'gor',
[Chains.SEPOLIA]: 'sep',
}

// Token
export const CHAIN_SAFE_TOKEN_ADDRESS: ChainConfig<string> = {
[Chains.MAINNET]: '0x5afe3855358e112b5647b952709e6165e1c1eeee',
[Chains.GOERLI]: '0x61fD3b6d656F39395e32f46E2050953376c3f5Ff',
[Chains.SEPOLIA]: '0xd16d9C09d13E9Cf77615771eADC5d51a1Ae92a26',
}

Expand All @@ -69,7 +66,6 @@ export const AIRDROP_TAGS = {
// Delegation
export const CHAIN_DELEGATE_ID: ChainConfig<string> = {
[Chains.MAINNET]: 'safe.eth',
[Chains.GOERLI]: 'tutis.eth',
[Chains.SEPOLIA]: 'tutis.eth',
}

Expand All @@ -81,7 +77,6 @@ export const GOVERNANCE_URL = 'https://forum.gnosis-safe.io/t/how-to-safedao-gov

export const CHAIN_SNAPSHOT_URL: ChainConfig<string> = {
[Chains.MAINNET]: `https://snapshot.org/#/${CHAIN_DELEGATE_ID[Chains.MAINNET]}`,
[Chains.GOERLI]: `https://snapshot.org/#/${CHAIN_DELEGATE_ID[Chains.GOERLI]}`,
[Chains.SEPOLIA]: `https://snapshot.org/#/${CHAIN_DELEGATE_ID[Chains.SEPOLIA]}`,
}

Expand Down

0 comments on commit b46ce3d

Please sign in to comment.