There was an error while loading. Please reload this page.
2 parents 26115dd + 551444f commit 4e1270bCopy full SHA for 4e1270b
2 files changed
src/walletconnect/commands.ts
@@ -88,6 +88,7 @@ export const walletConnectCommands = {
88
.object({
89
limit: z.number().optional(),
90
offset: z.number().optional(),
91
+ hardened: z.boolean().optional(),
92
})
93
.optional(),
94
returnType: z.array(z.string()),
src/walletconnect/commands/chip0002.ts
@@ -20,6 +20,7 @@ export async function handleGetPublicKeys(
20
const data = await commands.getDerivations({
21
limit: params?.limit ?? 10,
22
offset: params?.offset ?? 0,
23
+ hardened: params?.hardened ?? false,
24
});
25
26
return data.derivations.map((derivation) => derivation.public_key);
0 commit comments