Skip to content

Commit

Permalink
Merge pull request #4349 from CrocSwap/add-rseth-to-ambient-token-list
Browse files Browse the repository at this point in the history
add rsETH on Scroll to ambient token list
  • Loading branch information
benwolski authored Nov 18, 2024
2 parents f81c2c0 + db0a084 commit fe6ba13
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 1 deletion.
8 changes: 8 additions & 0 deletions public/ambient-token-list.json
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,14 @@
"logoURI": "https://etherscan.io/token/images/rsweth_32.png?=v3",
"symbol": "rswETH"
},
{
"name": "KelpDao Restaked ETH",
"address": "0x65421ba909200b81640d98b979d07487c9781b66",
"chainId": 534352,
"decimals": 18,
"logoURI": "",
"symbol": "rsETH"
},
{
"name": "StakeStone Ether",
"address": "0x80137510979822322193fc997d400d5a6c747bf7",
Expand Down
8 changes: 8 additions & 0 deletions src/ambient-utils/constants/ambient-token-list.json
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,14 @@
"logoURI": "https://etherscan.io/token/images/rsweth_32.png?=v3",
"symbol": "rswETH"
},
{
"name": "KelpDao Restaked ETH",
"address": "0x65421ba909200b81640d98b979d07487c9781b66",
"chainId": 534352,
"decimals": 18,
"logoURI": "",
"symbol": "rsETH"
},
{
"name": "StakeStone Ether",
"address": "0x80137510979822322193fc997d400d5a6c747bf7",
Expand Down
12 changes: 11 additions & 1 deletion src/ambient-utils/constants/defaultTokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ export const scrollWrsETH: TokenIF = {
logoURI: 'https://s2.coinmarketcap.com/static/img/coins/64x64/29242.png',
};

export const scrollRsETH: TokenIF = {
export const scrollRswETH: TokenIF = {
name: 'Restaked Swell ETH',
address: '0x89f17aB70cAFB1468D633056161573efEfeA0713',
symbol: 'rswETH',
Expand All @@ -545,6 +545,15 @@ export const scrollRsETH: TokenIF = {
logoURI: 'https://etherscan.io/token/images/rsweth_32.png?=v3',
};

export const scrollRsETH: TokenIF = {
name: 'KelpDao Restaked ETH',
address: '0x65421ba909200b81640d98b979d07487c9781b66',
symbol: 'rsETH',
decimals: 18,
chainId: 534352,
logoURI: '',
};

export const scrollSTONE: TokenIF = {
name: 'StakeStone Ether',
address: '0x80137510979822322193FC997d400D5A6C747bf7',
Expand Down Expand Up @@ -824,6 +833,7 @@ export const defaultTokens: TokenIF[] = [
scrollSKY,
scrollSOL,
scrollWrsETH,
scrollRswETH,
scrollRsETH,
scrollSTONE,
scrollUniETH,
Expand Down
2 changes: 2 additions & 0 deletions src/ambient-utils/dataLayer/functions/stablePairs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ import {
plumeSepoliaUSD,
plumeSepoliaNEV,
scrollRsETH,
scrollRswETH,
} from '../../constants/defaultTokens';

// any sort of specific guaranteed relation between the tokens.
Expand Down Expand Up @@ -142,6 +143,7 @@ export const STAKED_ETH_TOKENS = [
scrollWstETH.address,
scrollWrsETH.address,
scrollRsETH.address,
scrollRswETH.address,
scrollSTONE.address,
scrollUniETH.address,
scrollWeETH.address,
Expand Down

0 comments on commit fe6ba13

Please sign in to comment.