Skip to content

Commit

Permalink
feat: enable isolated pools and Lido market on Arbitrum Sepolia (#3137)
Browse files Browse the repository at this point in the history
  • Loading branch information
therealemjy authored Aug 23, 2024
1 parent dbd497c commit 9724408
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/strange-steaks-attack.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@venusprotocol/evm": minor
---

enable isolated pools and Lido market on Arbitrum Sepolia
2 changes: 2 additions & 0 deletions apps/evm/src/constants/chainMetadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ export const CHAIN_METADATA: {
explorerUrl: 'https://sepolia.arbiscan.io/',
layerZeroScanUrl: 'https://testnet.layerzeroscan.com/',
corePoolComptrollerContractAddress: '0x006D44b6f5927b3eD83bD0c1C36Fb1A3BaCaC208',
stakedEthPoolComptrollerContractAddress: '0x3D04F926b2a165BBa17FBfccCCB61513634fa5e4',
wstEthContractAddress: '0xd7057250b439c0849377bB6C3263eb8f9cf49d98',
nativeToken: getToken({ chainId: ChainId.ARBITRUM_SEPOLIA, symbol: 'ETH' })!,
},
};
8 changes: 7 additions & 1 deletion apps/evm/src/hooks/useIsFeatureEnabled/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,13 @@ export const featureFlags = {
ChainId.ARBITRUM_ONE,
ChainId.ARBITRUM_SEPOLIA,
],
isolatedPools: [ChainId.BSC_MAINNET, ChainId.BSC_TESTNET, ChainId.ETHEREUM, ChainId.SEPOLIA],
isolatedPools: [
ChainId.BSC_MAINNET,
ChainId.BSC_TESTNET,
ChainId.ETHEREUM,
ChainId.SEPOLIA,
ChainId.ARBITRUM_SEPOLIA,
],
bridgeRoute: [
ChainId.BSC_MAINNET,
ChainId.BSC_TESTNET,
Expand Down
14 changes: 14 additions & 0 deletions apps/evm/src/libs/tokens/infos/commonTokens/arbitrumSepolia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ import ethLogo from 'libs/tokens/img/eth.svg';
import usdcLogo from 'libs/tokens/img/usdc.svg';
import usdtLogo from 'libs/tokens/img/usdt.svg';
import wbtcLogo from 'libs/tokens/img/wbtc.svg';
import weEthLogo from 'libs/tokens/img/weEth.svg';
import wethLogo from 'libs/tokens/img/weth.svg';
import wstEthLogo from 'libs/tokens/img/wstEth.svg';
import xvsLogo from 'libs/tokens/img/xvs.svg';
import type { Token } from 'types';

Expand Down Expand Up @@ -55,4 +57,16 @@ export const tokens: Token[] = [
symbol: 'XVS',
asset: xvsLogo,
},
{
address: '0x243141DBff86BbB0a082d790fdC21A6ff615Fa34',
decimals: 18,
symbol: 'weETH',
asset: weEthLogo,
},
{
address: '0x4A9dc15aA6094eF2c7eb9d9390Ac1d71f9406fAE',
decimals: 18,
symbol: 'wstETH',
asset: wstEthLogo,
},
];

0 comments on commit 9724408

Please sign in to comment.