Skip to content

Commit

Permalink
Add superOETH and SILO to ab
Browse files Browse the repository at this point in the history
  • Loading branch information
kexleyBeefy committed Oct 15, 2024
1 parent 3c3e52c commit 2bd74fa
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 0 deletions.
28 changes: 28 additions & 0 deletions packages/address-book/src/address-book/base/tokens/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1450,4 +1450,32 @@ export const tokens = {
documentation: 'https://docs.morphex.trade/bmx/wblt',
bridge: 'native',
},
superOETHb: {
name: 'Super OETH',
symbol: 'superOETHb',
oracleId: 'superOETHb',
address: '0xDBFeFD2e8460a6Ee4955A68582F85708BAEA60A3',
chainId: 8453,
decimals: 18,
logoURI: '',
website: 'https://originprotocol.com/',
description:
"Super OETH is the first in a new class of yield product; Supercharged LSTs. By combining liquid staking yield from Ethereum with compounded rewards on layer 2, Supercharged LSTs offer materially higher APY compared to traditional LSTs without adding substantial risk of loss. Origin's first token to launch in this category is superOETHb, which derives Beacon Chain yield from bridged Wrapped OETH and rewards from Aerodrome through a protocol-owned, concentrated liquidity position on Base.",
documentation: 'https://docs.originprotocol.com/',
bridge: 'native',
},
SILO: {
name: 'SILO',
symbol: 'SILO',
oracleId: 'baseSILO',
address: '0xF734eFdE0C424BA2B547b186586dE417b0954802',
chainId: 8453,
decimals: 18,
logoURI: '',
website: 'https://www.silo.finance/',
description:
'SILO is the native governance token of the SiloDAO and may be used to vote for governance over the Silo Protocol.',
documentation: 'https://silopedia.silo.finance/',
bridge: 'base-canonical',
},
} as const satisfies Record<string, Token>;
20 changes: 20 additions & 0 deletions src/data/base/aerodromeLpPools.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@
[
{
"name": "aerodrome-weth-silo",
"address": "0x57bd5C33c8002A634b389Ab4de5e09eC1C31Dce7",
"gauge": "0x99c34f5E11d91BF19A40CE316C5fBEAb44259D23",
"decimals": "1e18",
"chainId": 8453,
"beefyFee": 0.095,
"lp0": {
"address": "0x4200000000000000000000000000000000000006",
"oracle": "tokens",
"oracleId": "WETH",
"decimals": "1e18"
},
"lp1": {
"address": "0xF734eFdE0C424BA2B547b186586dE417b0954802",
"oracle": "tokens",
"oracleId": "baseSILO",
"decimals": "1e18"
}
},
{
"name": "aerodrome-weth-spx",
"address": "0xe96a4E9EA3a2C6Db214174738a19Eb7Dbb8A3069",
Expand Down
8 changes: 8 additions & 0 deletions src/utils/fetchConcentratedLiquidityTokenPrices.ts
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,14 @@ const tokens: Partial<Record<keyof typeof ChainId, ConcentratedLiquidityToken[]>
firstToken: 'USDC',
secondToken: 'wBLT',
},
{
type: 'Slipstream',
oracleId: 'superOETHb',
decimalDelta: 1,
pool: '0x6446021F4E396dA3df4235C62537431372195D38',
firstToken: 'ETH',
secondToken: 'superOETHb',
},
],
};

Expand Down

0 comments on commit 2bd74fa

Please sign in to comment.