Skip to content
Open
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
2 changes: 1 addition & 1 deletion src/app/data/morpho/mappers/mapVaultData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function mapVaultData(vault: FullVaultInfoQuery["vaultByAddress"], vaultT
});
const totalAssetsUsd = formatToDisplayable(state?.totalAssetsUsd ?? 0);
const netApy = formatToDisplayable((state?.netApy ?? 0) * 100);
const curator = config?.curator; // state?.curator; TODO morpho: how to get name of curetor from adress?
const curator = config?.curator; // state?.curator; TODO morpho: how to get name of curator from address?
const feePercentage = formatToDisplayable((state?.fee ?? 0) * 100);
const allocation = state?.allocation ?? [];
const collateralLogos = allocation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,27 @@ export const StakingDetails: React.FC = () => {
</LocalCollapseArrow>

{/* QUESTION 3 */}
<LocalCollapseArrow>
<LocalCollapseTitle>How can I claim staking rewards?</LocalCollapseTitle>
<div className="collapse-content">
<div>
<Typography type="regular3">
When you earn staking rewards, they will appear as smUSDC, smWETH, or smcbBTC. You can claim them
directly from the Staking tab.
<br />
<br />
After claiming, go to the Dashboard tab, where you'll see these rewards as active positions in their
respective Seamless Vaults (e.g., smUSDC = Seamless USDC Vault). From the Dashboard, you can withdraw
any portion of your rewards at any time.
<br />
<br />
Note: Rewards continue to earn yield until you withdraw them.
</Typography>
</div>
</div>
</LocalCollapseArrow>

{/* QUESTION 4 */}
<LocalCollapseArrow>
<LocalCollapseTitle>How often can I claim staking rewards?</LocalCollapseTitle>
<div className="collapse-content">
Expand All @@ -60,7 +81,7 @@ export const StakingDetails: React.FC = () => {
</div>
</LocalCollapseArrow>

{/* QUESTION 4 */}
{/* QUESTION 5 */}
<LocalCollapseArrow>
<LocalCollapseTitle>How do I unstake SEAM?</LocalCollapseTitle>
<div className="collapse-content">
Expand All @@ -77,7 +98,7 @@ export const StakingDetails: React.FC = () => {
</div>
</LocalCollapseArrow>

{/* QUESTION 5 */}
{/* QUESTION 6 */}
<LocalCollapseArrow>
<LocalCollapseTitle>What happens after the 7-day cooldown expires?</LocalCollapseTitle>
<div className="collapse-content">
Expand All @@ -92,7 +113,7 @@ export const StakingDetails: React.FC = () => {
</div>
</LocalCollapseArrow>

{/* QUESTION 6 */}
{/* QUESTION 7 */}
<LocalCollapseArrow>
<LocalCollapseTitle>
Do I continue to earn staking rewards during the unstake cooldown period?
Expand All @@ -104,7 +125,7 @@ export const StakingDetails: React.FC = () => {
</div>
</LocalCollapseArrow>

{/* QUESTION 7 */}
{/* QUESTION 8 */}
<LocalCollapseArrow>
<LocalCollapseTitle>Why is there a cooldown period and unstaking windows?</LocalCollapseTitle>
<div className="collapse-content">
Expand All @@ -119,7 +140,7 @@ export const StakingDetails: React.FC = () => {
</div>
</LocalCollapseArrow>

{/* QUESTION 8 */}
{/* QUESTION 9 */}
<LocalCollapseArrow>
<LocalCollapseTitle>What does it mean to be “slashed”?</LocalCollapseTitle>
<div className="collapse-content">
Expand All @@ -135,7 +156,7 @@ export const StakingDetails: React.FC = () => {
</div>
</LocalCollapseArrow>

{/* QUESTION 9 */}
{/* QUESTION 10 */}
<LocalCollapseArrow>
<LocalCollapseTitle>Where can I learn more?</LocalCollapseTitle>
<div className="collapse-content">
Expand Down