Skip to content

Commit

Permalink
Revert island network change (#266)
Browse files Browse the repository at this point in the history
Reverting the change as it chain ids were not matched elsewhere and it
wasn't working.
Having Arbitrum One as a base for fork on Tenderly is not causing
problems even if wallet thinks it is working on Arb Sepolia.
  • Loading branch information
Karolina Kosiorowska authored Oct 17, 2023
2 parents 684e8d6 + 79a8305 commit 9d16e05
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions background/services/island/contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,10 @@ import browser from "webextension-polyfill"
import { ethers } from "ethers"
import { SmartContractFungibleAsset } from "../../assets"
import { WEBSITE_ORIGIN } from "../../constants/website"
import { ARBITRUM_ONE, ARBITRUM_SEPOLIA } from "../../constants"
import { ARBITRUM_SEPOLIA } from "../../constants"
import { NormalizedEVMAddress } from "../../types"

export const ISLAND_NETWORK =
process.env.SUPPORT_THE_ISLAND_ON_TENDERLY === "true"
? ARBITRUM_ONE
: ARBITRUM_SEPOLIA // TODO: change once we move to Arbitrum One
export const ISLAND_NETWORK = ARBITRUM_SEPOLIA // TODO: change once we move to Arbitrum One

export const VOTE_WITH_FRIENDS_ADDRESS =
"0x0036B3a9D385Ce2CC072cf4A26dE29aE3283DEd0"
Expand Down

0 comments on commit 9d16e05

Please sign in to comment.