diff --git a/CHANGELOG.md b/CHANGELOG.md index 16b240089..61a81c337 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ - Release the V3 vaults - Release the multichain config - Fix the zap balances fetching to use the multichain endpoint rather than the currently connected one +- Deprecate Wido due to project end-of-life # 0.1.25 (28/08/2023) diff --git a/apps/common/schemas/yDaemonTokenListBalances.ts b/apps/common/schemas/yDaemonTokenListBalances.ts index 94ab4b2bc..3374b7bff 100644 --- a/apps/common/schemas/yDaemonTokenListBalances.ts +++ b/apps/common/schemas/yDaemonTokenListBalances.ts @@ -8,7 +8,6 @@ const SOLVER = [ 'InternalMigration', 'OptimismBooster', 'Cowswap', - 'Wido', 'Portals', 'None' ] as const; diff --git a/apps/common/utils/externalZapOutTokenList.json b/apps/common/utils/externalZapOutTokenList.json index adc6802fb..6e578fa30 100644 --- a/apps/common/utils/externalZapOutTokenList.json +++ b/apps/common/utils/externalZapOutTokenList.json @@ -7,7 +7,7 @@ "logoURI": "https://tokens.1inch.io/0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee.png", "decimals": 18, "balance": "0", - "supportedZaps": ["Wido", "Portals", "Cowswap"] + "supportedZaps": ["Portals", "Cowswap"] }, { "chainID": 1, @@ -17,7 +17,7 @@ "logoURI": "https://tokens.1inch.io/0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2.png", "decimals": 18, "balance": "0", - "supportedZaps": ["Wido", "Portals", "Cowswap"] + "supportedZaps": ["Portals", "Cowswap"] }, { "chainID": 1, @@ -27,7 +27,7 @@ "logoURI": "https://tokens.1inch.io/0x2260fac5e5542a773aa44fbcfedf7c193bc2c599.png", "decimals": 8, "balance": "0", - "supportedZaps": ["Wido", "Portals", "Cowswap"] + "supportedZaps": ["Portals", "Cowswap"] }, { "chainID": 1, @@ -37,7 +37,7 @@ "logoURI": "https://tokens.1inch.io/0x6b175474e89094c44da98b954eedeac495271d0f.png", "decimals": 18, "balance": "0", - "supportedZaps": ["Wido", "Portals", "Cowswap"] + "supportedZaps": ["Portals", "Cowswap"] }, { "chainID": 1, @@ -47,7 +47,7 @@ "logoURI": "https://tokens.1inch.io/0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48.png", "decimals": 6, "balance": "0", - "supportedZaps": ["Wido", "Portals", "Cowswap"] + "supportedZaps": ["Portals", "Cowswap"] }, { "chainID": 1, @@ -57,7 +57,7 @@ "logoURI": "https://tokens.1inch.io/0xdac17f958d2ee523a2206206994597c13d831ec7.png", "decimals": 6, "balance": "0", - "supportedZaps": ["Wido", "Portals", "Cowswap"] + "supportedZaps": ["Portals", "Cowswap"] }, { "chainID": 1, @@ -67,7 +67,7 @@ "logoURI": "https://tokens.1inch.io/0x0bc529c00c6401aef6d220be8c6ea1667f6ad93e.png", "decimals": 18, "balance": "0", - "supportedZaps": ["Wido", "Portals", "Cowswap"] + "supportedZaps": ["Portals", "Cowswap"] }, { "chainID": 1, @@ -77,6 +77,6 @@ "logoURI": "https://tokens.1inch.io/0xd533a949740bb3306d119cc777fa900ba034cd52.png", "decimals": 18, "balance": "0", - "supportedZaps": ["Wido", "Portals", "Cowswap"] + "supportedZaps": ["Portals", "Cowswap"] } ] diff --git a/apps/vaults-v3/components/SettingsPopover.tsx b/apps/vaults-v3/components/SettingsPopover.tsx index 0e5aeef19..3f0df37b1 100755 --- a/apps/vaults-v3/components/SettingsPopover.tsx +++ b/apps/vaults-v3/components/SettingsPopover.tsx @@ -83,7 +83,7 @@ function ZapSection({chainID}: {chainID: number}): ReactElement { const currentZapProvider = useMemo((): TSolver => { if (chainID !== 1 && zapProvider === 'Cowswap') { - return 'Wido'; + return 'Portals'; } return zapProvider; }, [chainID, zapProvider]); @@ -110,19 +110,6 @@ function ZapSection({chainID}: {chainID: number}): ReactElement {  {'using CoW Swap.'} - - - {'Submit an order via'}  - - {'Wido'} - -  {'(0.3% fee).'} - - {'Submit an order via'}  @@ -139,7 +126,7 @@ function ZapSection({chainID}: {chainID: number}): ReactElement {