Skip to content
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

Mattupham/fe 725 porfolio v3 variants detected popup #3871

Open
wants to merge 17 commits into
base: stage
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
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
3 changes: 2 additions & 1 deletion packages/server/src/queries/complex/portfolio/allocation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,11 +168,12 @@ export async function getAllocation({
new Dec(categories["total-assets"].capitalization)
);

// Check for variants
const userBalanceDenoms =
categories["user-balances"]?.account_coins_result?.map(
(result) => result.coin.denom
) ?? [];

// check for alloyed asset variants
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Giga Nit: variants include canonical assets such as USDC, not just alloys

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ha updated that comment for clarity

const hasVariants = checkHasAssetVariants(
userBalanceDenoms,
assetLists.flatMap((list) => list.assets)
Expand Down