We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 134d889 commit 3417a79Copy full SHA for 3417a79
misc/identity-keys/src/identity-keys.ts
@@ -65,8 +65,8 @@ export class IdentityKeys implements IIdentityKeys {
65
const encodedRecap = objectToHex(recapObject);
66
const authRecap = `urn:recap:${encodedRecap}`
67
68
- const { privKeyHex, privateKey } = await this.generateIdentityKey();
69
- const didKey = encodeEd25519Key(privKeyHex);
+ const { pubKeyHex, privateKey } = await this.generateIdentityKey();
+ const didKey = encodeEd25519Key(pubKeyHex);
70
71
const uri = `https://${domain}?walletconnect_identity_key=${didKey}`
72
0 commit comments