You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Create a deterministic verification nonce for a specific funding private key and commit tx index. The public nonce will be sent to our peer to create a partial signature
48
+
* of our commit tx, the private nonce is never shared (and never serialized or stored) and is used to create our local partial signature to be combined with our peer's.
49
+
* @paramfundingKeyPath funding key path
50
+
* @paramfundingTxIndex funding tx index
51
+
* @paramchannelKeyPath channel key path
52
+
* @paramindex commit tx index
53
+
* @return a verification nonce that is used to create a partial musig2 signature for our commit tx.
* Create a new, randomized singing nonce for a specific funding private key. These nonces are used to create a partial musig2 signature for our peer's commit tx and are sent
59
+
* alongside the partial signature. They are created on the fly, and never stored.
60
+
* @paramfundingKeyPath funding key path
61
+
* @paramfundingTxIndex funding tx index
62
+
* @return a signing nonce that can be used to create a musig2 signature with the funding private key that matches the provided key path and key index.
63
+
* Each call to this methode will return a different, randomized signing nonce.
0 commit comments