-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: [lw-10691]: add register as dRep banner and stake key raw info #1537
base: main
Are you sure you want to change the base?
fix: [lw-10691]: add register as dRep banner and stake key raw info #1537
Conversation
apps/browser-extension-wallet/src/features/delegation/components/DelegationLayout.tsx
Outdated
Show resolved
Hide resolved
apps/browser-extension-wallet/src/views/browser-view/features/staking/components/Staking.tsx
Outdated
Show resolved
Hide resolved
apps/browser-extension-wallet/src/features/delegation/components/DelegationLayout.tsx
Outdated
Show resolved
Hide resolved
apps/browser-extension-wallet/src/features/delegation/components/Staking.tsx
Outdated
Show resolved
Hide resolved
apps/browser-extension-wallet/src/views/browser-view/features/staking/components/Staking.tsx
Outdated
Show resolved
Hide resolved
packages/staking/src/features/overview/helpers/mapPortfolioToDisplayData.ts
Outdated
Show resolved
Hide resolved
Allure Report
processReports: ✅ test report for 89940042
|
855201c
to
4d6b2b3
Compare
apps/browser-extension-wallet/src/views/browser-view/features/staking/components/Staking.tsx
Outdated
Show resolved
Hide resolved
@@ -7,9 +7,11 @@ type MapPortfolioToDisplayDataParams = { | |||
cardanoCoin: Wallet.CoinId; | |||
cardanoPrice?: number; | |||
portfolio: CurrentPortfolioStakePool[]; | |||
poolIdToRewardAccountMap: Map<string | undefined, Wallet.Cardano.RewardAccountInfo>; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If a reward account is not delegated to a pool, it should not be part of this map:
- poolIdToRewardAccountMap: Map<string | undefined, Wallet.Cardano.RewardAccountInfo>
+ poolIdToRewardAccountMap: Map<string, Wallet.Cardano.RewardAccountInfo>
GOV_TOOLS_URL_MAINNET=https://gov.tools/ | ||
GOV_TOOLS_URL_PREPROD= | ||
GOV_TOOLS_URL_PREVIEW=https://preview.gov.tools/ | ||
GOV_TOOLS_URL_SANCHONET= |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can use https://sanchogov.tools/ here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work @vetalcore
…in staking center
6eb9f02
to
8994004
Compare
Quality Gate passedIssues Measures |
add register as dRep banner and stake key raw info in staking center
Checklist
Proposed solution
Testing
Testing should be done for both multi and single delegation flows, popup and browser view modes.
Screenshots
Attach screenshots here if implementation involves some UI changes