Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Mode sUSDe to Address Book and modesUSDe price oracleId #1590

Merged
merged 2 commits into from
Dec 12, 2024
Merged
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
15 changes: 15 additions & 0 deletions packages/address-book/src/address-book/mode/tokens/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,19 @@ export const tokens = {
documentation: 'https://velodrome.finance/docs',
bridge: 'superchain',
},
sUSDe: {
name: 'Staked USDe',
symbol: 'sUSDe',
oracleId: 'modesUSDe',
address: '0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2',
chainId: 34443,
decimals: 18,
logoURI: '',
website: 'https://ethena.fi/',
documentation: 'https://ethena-labs.gitbook.io/ethena-labs',
description:
'Users are able to stake their USDe for sUSDe through the Ethena front-end. sUSDe is a reward-bearing token that accrues value from the yield that Ethena’s underlying delta-neutral position generates. sUSDe is subject to a 7-day un-staking period.',
bridge: 'layer-zero',
risks: ['NO_TIMELOCK'],
},
} as const satisfies Record<string, Token>;
8 changes: 8 additions & 0 deletions src/utils/fetchConcentratedLiquidityTokenPrices.ts
Original file line number Diff line number Diff line change
Expand Up @@ -491,6 +491,14 @@ const tokens: Partial<Record<keyof typeof ChainId, ConcentratedLiquidityToken[]>
firstToken: 'XVELO',
secondToken: 'WETH',
},
{
type: 'Slipstream',
oracleId: 'modesUSDe',
decimalDelta: 1e12,
pool: '0xa2E74518fe27B0FC04Ea36024ea837d26cd09CDa',
firstToken: 'USDC',
secondToken: 'modesUSDe',
}
],
lisk: [
{
Expand Down
Loading