Skip to content
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
13 changes: 13 additions & 0 deletions packages/address-book/src/address-book/robinhood/tokens/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,24 @@ const CASHCAT = {
tags: ['MEMECOIN'],
} as const satisfies Token;

const TENDIES = {
name: 'TENDIES',
address: '0x45242320DBB855EeA8Fd36804C6487E10E97FCF9',
symbol: 'TENDIES',
oracleId: 'TENDIES',
decimals: 18,
chainId: 4663,
description: 'Tendies is a community/meme token. There is no team, there is no supply hoarding.',
bridge: 'native',
tags: ['MEMECOIN'],
} as const satisfies Token;

export const tokens = {
WNATIVE: ETH,
FEES: ETH,
ETH,
WETH: ETH,
USDG,
CASHCAT,
TENDIES,
} as const satisfies Record<string, Token>;
12 changes: 12 additions & 0 deletions src/data/robinhood/beefyCowVaults.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,18 @@
"oracleId": "uniswap-cow-robinhood-cashcat-weth-rp"
}
},
{
"address": "0xAAa8C1e4F75Ec7DF802607D827Ea0efE8dCDDbDD",
"lpAddress": "0x237609918F330ADD285b8bC5f8f2922283D1C4C5",
"tokens": ["0x0Bd7D308f8E1639FAb988df18A8011f41EAcAD73", "0x45242320DBB855EeA8Fd36804C6487E10E97FCF9"],
"tokenOracleIds": ["WETH", "TENDIES"],
"decimals": [18, 18],
"oracleId": "uniswap-cow-robinhood-tendies-weth",
"rewardPool": {
"address": "0xcD68b5A8850E5A10531bDE1BC657329575E40E2C",
"oracleId": "uniswap-cow-robinhood-tendies-weth-rp"
}
},
{
"address": "0x1e8d576F71D5F416e7573b960fF59C4Fb77976ad",
"lpAddress": "0x69BfaF19C9f377BB306a89aEd9F6B07e2c1a8d9a",
Expand Down
8 changes: 8 additions & 0 deletions src/utils/fetchConcentratedLiquidityTokenPrices.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1905,6 +1905,14 @@ const tokens: Partial<Record<keyof typeof ChainId, ConcentratedLiquidityToken[]>
firstToken: 'WETH',
secondToken: 'CASHCAT',
},
{
type: 'UniV3',
oracleId: 'TENDIES',
decimalDelta: 1,
pool: '0x237609918F330ADD285b8bC5f8f2922283D1C4C5',
firstToken: 'TENDIES',
secondToken: 'WETH',
},
],
};

Expand Down
Loading