Skip to content
Merged

Dev2 #1787

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ REACT_APP_POLYGON_ZKEVM_URL="https://tokens.coingecko.com/polygon-zkevm/all.json
REACT_APP_COINGECKO_MANTA_URL="https://tokens.coingecko.com/manta-pacific/all.json"
REACT_APP_COINGECKO_IMMUTABLE_URL="https://tokens.coingecko.com/immutable/all.json"
REACT_APP_COINGECKO_DOGE_URL="https://tokens.coingecko.com/dogechain/all.json"
REACT_APP_COINGECKO_ASTAR_URL="https://tokens.coingecko.com/astar/all.json"
REACT_APP_COINGECKO_KAVA_URL="https://tokens.coingecko.com/kava/all.json"
REACT_APP_COINGECKO_SONEIUM_URL="https://tokens.coingecko.com/soneium/all.json"
REACT_APP_COINGECKO_ETHEREUM_URL="https://tokens.coingecko.com/ethereum/all.json"
Expand Down
1 change: 0 additions & 1 deletion src/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,6 @@ export const SUPPORTED_CHAINIDS = [
ChainId.DOGECHAIN,
ChainId.ETHEREUM,
ChainId.IMX,
ChainId.ASTARZKEVM,
ChainId.ZKATANA,
ChainId.TIMX,
ChainId.ZKTESTNET,
Expand Down
1 change: 0 additions & 1 deletion src/hooks/v3/useBestV3Trade.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ export enum V3TradeState {

const QUOTE_GAS_OVERRIDES: { [chainId: number]: number } = {
[ChainId.ZKEVM]: 20_000_000,
[ChainId.ASTARZKEVM]: 100_000_000,
[ChainId.MANTA]: 20_000_000,
};

Expand Down
2 changes: 0 additions & 2 deletions src/hooks/v3/useGammaData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ const gammaChainName = (chainId?: ChainId) => {
return 'manta';
case ChainId.IMX:
return 'immutable-zkevm';
case ChainId.ASTARZKEVM:
return 'astar-zkevm';
default:
return 'polygon';
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,28 +166,6 @@ const SelectFeeTier: React.FC<SelectFeeTierProps> = ({ mintInfo }) => {
description: t('bestForExoticPair'),
},
],
[ChainId.ASTARZKEVM]: [
{
id: 'uni-0.01',
text: '0.01%',
description: t('availableForStablePair'),
},
{
id: 'uni-0.05',
text: '0.05%',
description: t('highlyLiquidPair'),
},
{
id: 'uni-0.3',
text: '0.3%',
description: t('bestForMostPair'),
},
{
id: 'uni-1',
text: '1%',
description: t('bestForExoticPair'),
},
],
[ChainId.MINATO]: [
{
id: 'uni-0.01',
Expand Down
Loading