Skip to content

Commit 333f0b6

Browse files
authored
Merge pull request QuickSwap#1785 from webdev403/fix/remove-all-instances-of-astar
2 parents 53eae6c + cc7ea76 commit 333f0b6

File tree

5 files changed

+0
-27
lines changed

5 files changed

+0
-27
lines changed

.env

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ REACT_APP_POLYGON_ZKEVM_URL="https://tokens.coingecko.com/polygon-zkevm/all.json
1212
REACT_APP_COINGECKO_MANTA_URL="https://tokens.coingecko.com/manta-pacific/all.json"
1313
REACT_APP_COINGECKO_IMMUTABLE_URL="https://tokens.coingecko.com/immutable/all.json"
1414
REACT_APP_COINGECKO_DOGE_URL="https://tokens.coingecko.com/dogechain/all.json"
15-
REACT_APP_COINGECKO_ASTAR_URL="https://tokens.coingecko.com/astar/all.json"
1615
REACT_APP_COINGECKO_KAVA_URL="https://tokens.coingecko.com/kava/all.json"
1716
REACT_APP_COINGECKO_SONEIUM_URL="https://tokens.coingecko.com/soneium/all.json"
1817
REACT_APP_COINGECKO_ETHEREUM_URL="https://tokens.coingecko.com/ethereum/all.json"

src/constants/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,6 @@ export const SUPPORTED_CHAINIDS = [
363363
ChainId.DOGECHAIN,
364364
ChainId.ETHEREUM,
365365
ChainId.IMX,
366-
ChainId.ASTARZKEVM,
367366
ChainId.ZKATANA,
368367
ChainId.TIMX,
369368
ChainId.ZKTESTNET,

src/hooks/v3/useBestV3Trade.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ export enum V3TradeState {
2121

2222
const QUOTE_GAS_OVERRIDES: { [chainId: number]: number } = {
2323
[ChainId.ZKEVM]: 20_000_000,
24-
[ChainId.ASTARZKEVM]: 100_000_000,
2524
[ChainId.MANTA]: 20_000_000,
2625
};
2726

src/hooks/v3/useGammaData.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ const gammaChainName = (chainId?: ChainId) => {
1616
return 'manta';
1717
case ChainId.IMX:
1818
return 'immutable-zkevm';
19-
case ChainId.ASTARZKEVM:
20-
return 'astar-zkevm';
2119
default:
2220
return 'polygon';
2321
}

src/pages/PoolsPage/v3/SupplyLiquidityV3/containers/SelectFeeTier/index.tsx

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -166,28 +166,6 @@ const SelectFeeTier: React.FC<SelectFeeTierProps> = ({ mintInfo }) => {
166166
description: t('bestForExoticPair'),
167167
},
168168
],
169-
[ChainId.ASTARZKEVM]: [
170-
{
171-
id: 'uni-0.01',
172-
text: '0.01%',
173-
description: t('availableForStablePair'),
174-
},
175-
{
176-
id: 'uni-0.05',
177-
text: '0.05%',
178-
description: t('highlyLiquidPair'),
179-
},
180-
{
181-
id: 'uni-0.3',
182-
text: '0.3%',
183-
description: t('bestForMostPair'),
184-
},
185-
{
186-
id: 'uni-1',
187-
text: '1%',
188-
description: t('bestForExoticPair'),
189-
},
190-
],
191169
[ChainId.MINATO]: [
192170
{
193171
id: 'uni-0.01',

0 commit comments

Comments
 (0)