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
/** A list of on-chain recipients with their withdrawal amounts. */
31
31
recipients: t.array(LightningOnchainRecipient),
32
-
/** Wallet passphrase for signing */
32
+
/** The wallet passphrase. */
33
33
passphrase: t.string,
34
-
/** Fee rate in satoshis per virtual byte (as string that will be converted to BigInt) */
34
+
/** Optional fee rate for the transaction in satoshis per virtual byte. Cannot be used with numBlocks. */
35
35
satsPerVbyte: optional(BigIntFromString),
36
-
/** Target number of blocks for confirmation */
36
+
/** The number of blocks required to confirm a transaction. You can use numBlocks to estimate the fee rate by targeting confirmation within a given number of blocks. If both satsPerVbyte and numBlocks are absent, the transaction defaults to 2 blocks for confirmation. */
37
37
numBlocks: optional(t.number),
38
-
/** Optional sequence ID for the withdraw transfer */
38
+
/** Optional sequence ID for the withdrawal transfer. */
39
39
sequenceId: optional(t.string),
40
-
/** Optional comment for the withdraw transfer */
40
+
/** Optional comment for the withdrawal transfer. */
0 commit comments