Skip to content

Commit

Permalink
Merge pull request #756 from ionicprotocol/development
Browse files Browse the repository at this point in the history
  • Loading branch information
rhlsthrm authored Nov 6, 2024
2 parents d813868 + 5e96ba2 commit 869a047
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
11 changes: 10 additions & 1 deletion packages/chains/src/mode/assets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ export const DAI = "0xE7798f023fC62146e8Aa1b36Da45fb70855a77Ea";
export const BAL = "0xD08a2917653d4E460893203471f0000826fb4034";
export const AAVE = "0x7c6b91D9Be155A6Db01f749217d76fF02A7227F2";
export const ezETH = "0x2416092f143378750bb29b79eD961ab195CcEea5";
export const weETH = "0x04C0599Ae5A44757c0af6F9eC3b93da8976c150A";
export const weETHMode = "0x04C0599Ae5A44757c0af6F9eC3b93da8976c150A";
export const weETH = "0x028227c4dd1e5419d11Bb6fa6e661920c519D4F5";
export const wrsETH = "0xe7903B1F75C534Dd8159b313d92cDCfbC62cB3Cd";
export const mBTC = "0x59889b7021243dB5B1e065385F918316cD90D46c";
export const MODE = "0xDfc7C877a950e49D2610114102175A06C2e3167a";
Expand Down Expand Up @@ -75,6 +76,14 @@ export const assets: SupportedAsset[] = [
oracle: OracleTypes.RedstoneAdapterPriceOracle,
extraDocs: defaultDocs("https://explorer.mode.network", ezETH)
},
{
symbol: assetSymbols["weETH.mode"],
underlying: weETHMode,
name: "Wrapped eETH",
decimals: 18,
oracle: OracleTypes.RedstoneAdapterPriceOracle,
extraDocs: defaultDocs("https://explorer.mode.network", weETHMode)
},
{
symbol: assetSymbols.weETH,
underlying: weETH,
Expand Down
7 changes: 4 additions & 3 deletions packages/ui/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ type PoolParams = {

export const NO_COLLATERAL_SWAP: Record<number, Record<string, string[]>> = {
[mode.id]: {
'0': ['dMBTC', 'msDAI', 'USDe', 'sUSDe']
'0': ['dMBTC', 'msDAI', 'USDe', 'sUSDe', 'weETH']
}
};

Expand All @@ -176,7 +176,7 @@ export const pools: Record<number, PoolParams> = {
'WETH',
'USDC',
'msDAI',
'weETH',
'weETH.mode',
'dMBTC',
'M-BTC',
'sUSDe',
Expand All @@ -185,7 +185,8 @@ export const pools: Record<number, PoolParams> = {
'STONE',
'WBTC',
'USDe',
'USDT'
'USDT',
'weETH'
]
},
{
Expand Down

0 comments on commit 869a047

Please sign in to comment.