Skip to content

Commit

Permalink
feat/extension-ledger-masp-accounts (#1458)
Browse files Browse the repository at this point in the history
* feat: ledger shielded accounts

* fix: prettier fmt
  • Loading branch information
mateuszjasiuk authored Jan 21, 2025
1 parent 278292b commit c02399f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
7 changes: 2 additions & 5 deletions apps/extension/src/App/Accounts/ParentAccounts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
KeyListItem,
Stack,
} from "@namada/components";
import { AccountType, DerivedAccount } from "@namada/types";
import { DerivedAccount } from "@namada/types";
import { ParentAccountsFooter } from "App/Accounts/ParentAccountsFooter";
import { PageHeader } from "App/Common";
import routes from "App/routes";
Expand All @@ -27,14 +27,11 @@ export const ParentAccounts = (): JSX.Element => {
accounts: allAccounts,
changeActiveAccountId,
} = useContext(AccountContext);

// We check which accounts need to be re-imported
const accounts = allAccounts
.filter((account) => account.parentId)
.map((account) => {
const outdated =
account.type !== AccountType.Ledger &&
typeof account.pseudoExtendedKey === "undefined";
const outdated = typeof account.pseudoExtendedKey === "undefined";

const parent = parentAccounts.find((pa) => pa.id === account.parentId);
invariant(parent, `Parent account not found for account ${account.id}`);
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/src/ledger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ export class Ledger {
* Check if Zip32 is supported by the installed app's version.
* Throws error if app is not initialized
* @async
* @retuns boolean
* @returns boolean
*/
public async isZip32Supported(): Promise<boolean> {
const {
Expand Down

0 comments on commit c02399f

Please sign in to comment.