Skip to content

Commit

Permalink
feat: hdwallet-metamask-shapeshift-multichain supportsBip44Accounts
Browse files Browse the repository at this point in the history
  • Loading branch information
gomesalexandre committed May 13, 2024
1 parent 68f51dc commit 6d620c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ describe("MetaMaskShapeShiftMultiChainHDWallet", () => {
expect(wallet.ethSupportsNativeShapeShift()).toBe(false);
expect(await wallet.ethSupportsEIP1559()).toBe(true);
expect(await wallet.supportsOfflineSigning()).toBe(false);
expect(wallet.supportsBip44Accounts()).toBe(false);
expect(wallet.supportsBip44Accounts()).toBe(true);
expect(await wallet.supportsBroadcast()).toBe(true);
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export class MetaMaskShapeShiftMultiChainHDWalletInfo implements core.HDWalletIn
}

public supportsBip44Accounts(): boolean {
return false;
return true;
}

public supportsOfflineSigning(): boolean {
Expand Down

0 comments on commit 6d620c3

Please sign in to comment.