Skip to content

Commit

Permalink
Merge pull request #430 from lidofinance/develop
Browse files Browse the repository at this point in the history
Develop to main
  • Loading branch information
itaven authored Aug 13, 2024
2 parents aec05ae + 42e6a05 commit 900758a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion features/rewards/utils/genExportData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { fromUnixTime } from 'date-fns';
export const genExportData = (currency: CurrencyType, data: Event[] | null) =>
data
? data.map((item) => ({
date: fromUnixTime(parseInt(item.blockTime)),
date: fromUnixTime(parseInt(item.blockTime)).toISOString(),
type: item.type,
direction: item.direction,
change: weiToEther(item.change).toString(),
Expand Down
5 changes: 2 additions & 3 deletions shared/banners/vaults-banner-info/vaults-banner-info.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,9 @@ export const VaultsBannerInfo = () => {
const { themeName } = useThemeToggle();
return (
<Wrap>
<Title>Explore restaking opportunities</Title>
<Title>Explore and participate in DeFi strategies</Title>
<Description>
Use stETH to unlock restaking rewards through a set of carefully curated
vaults
Use stETH to unlock rewards through a set of carefully curated vaults
</Description>
<Footer>
<Logos>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const VaultsBannerStrategies = () => {
<IconStakehouse />
</Icon>
<Title>
<TitleText>Restaking Vault</TitleText>
<TitleText>Decentralized Validator Vault</TitleText>
<TitleDescription>Curated by Steakhouse Financial</TitleDescription>
</Title>
</Header>
Expand All @@ -51,22 +51,22 @@ export const VaultsBannerStrategies = () => {
{divider}

<StrategyItem>
<b>Symbiotic</b>
<b>Obol</b>
<br /> Points
</StrategyItem>

{divider}

<StrategyItem>
<b>Mellow</b>
<b>SSV</b>
<br /> Points
</StrategyItem>

{divider}

<StrategyItem>
<b>Restaking</b>
<br /> <b>APR</b> TBD
<b>Mellow</b>
<br /> Points
</StrategyItem>
</Strategies>
</Wrap>
Expand Down
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"moduleResolution": "nodenext",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"baseUrl": ".",
"incremental": true
"incremental": true,
},
"include": ["**/*"],
"exclude": ["node_modules"]
"exclude": ["node_modules"],
}

0 comments on commit 900758a

Please sign in to comment.