Skip to content

Commit

Permalink
Merge branch 'master' into supports-base
Browse files Browse the repository at this point in the history
  • Loading branch information
kaladinlight committed May 17, 2024
2 parents 7e1dfe3 + 1e7a9ae commit 0d92013
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 0d92013

Please sign in to comment.