File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ export default class Identity {
53
53
54
54
/**
55
55
* Returns the private key.
56
- * @returns The private key as a bignumber-ish .
56
+ * @returns The private key as a { @link https://zkkit.pse.dev/types/_zk_kit_utils.BigNumberish.html|BigNumberish} .
57
57
*/
58
58
public get privateKey ( ) : BigNumberish {
59
59
return this . _privateKey
@@ -68,7 +68,7 @@ export default class Identity {
68
68
}
69
69
70
70
/**
71
- * Returns the public key as a Baby Jubjub point .
71
+ * Returns the public key as a Baby Jubjub { @link https://zkkit.pse.dev/types/_zk_kit_baby_jubjub.Point.html|Point} .
72
72
* @returns The public key as a point.
73
73
*/
74
74
public get publicKey ( ) : Point < string > {
@@ -93,7 +93,7 @@ export default class Identity {
93
93
* const signature = identity.signMessage("message")
94
94
*
95
95
* @param message The message to be signed.
96
- * @returns A signature object containing the signature components.
96
+ * @returns A { @link https://zkkit.pse.dev/types/_zk_kit_eddsa_poseidon.Signature.html|Signature} object containing the signature components.
97
97
*/
98
98
public signMessage ( message : BigNumberish ) : Signature < string > {
99
99
return signMessage ( this . privateKey , message )
You can’t perform that action at this time.
0 commit comments