Skip to content

Commit

Permalink
change to wSTETH
Browse files Browse the repository at this point in the history
  • Loading branch information
brucedonovan committed Nov 8, 2021
1 parent 939df74 commit ded50dc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/contexts/ChainContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const markMap = new Map([
['TST', <TSTMark key="tst" />],
['ETH', <EthMark key="eth" />],
['USDT', <USDTMark key="eth" />],
['STETH', <StEthMark key="steth" />],
['wSTETH', <StEthMark key="steth" />],
]);

const assetDigitFormatMap = new Map([
Expand All @@ -38,7 +38,7 @@ const assetDigitFormatMap = new Map([
['DAI', 2],
['USDC', 2],
['USDT', 2],
['STETH', 6],
['wSTETH', 6],
]);

/* Build the context */
Expand Down Expand Up @@ -221,7 +221,7 @@ const ChainProvider = ({ children }: any) => {
const symbolSwitch = (sym: string) => {
switch (sym) {
case 'WETH' : return 'ETH';
case 'wstETH' : return 'STETH';
case 'wstETH' : return 'wSTETH';
default: return sym;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/contexts/yieldEnv.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"TST": "#D15034",
"WETH": "#FFFFFF",
"USDT": "#50af95",
"STETH": "#00A3FF"
"wSTETH": "#00A3FF"
},
"seasonColors": {
"WINTER": ["#D9D9D9", "#67F2FC", "#333333"],
Expand Down

0 comments on commit ded50dc

Please sign in to comment.