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
/** fee rate in satoshis per kilobyte, if not provided a fallback fee rate will be used */
6
+
/** Custom minimum fee rate in a coin's base unit per kilobyte (or virtual kilobyte)--for example, satoshis per kvByte or microAlgos per kByte. If the applied `feeRate` does not meet a coin's required minimum transaction fee amount, the minimum is still applied (for example, 1000 sat/kvByte or a flat 1000 microAlgos) */
7
7
feeRate: optional(t.number),
8
-
/** number of P2SH (multisig) inputs in the transaction */
8
+
/** Number of P2SH (multi-signature) inputs */
9
9
nP2shInputs: t.number,
10
-
/** number of P2PKH (single sig) inputs in the transaction */
10
+
/** Number of P2PKH (single-signature) inputs */
11
11
nP2pkhInputs: t.number,
12
-
/** number of P2SH-P2WSH (segwit) inputs in the transaction */
12
+
/** Number of P2SH_P2WSH (wrapped segwit multi-signature) inputs */
13
13
nP2shP2wshInputs: t.number,
14
-
/** number of outputs in the transaction */
14
+
/** Number of outputs */
15
15
nOutputs: t.number,
16
16
/** whether the transaction contains uncompressed public keys (affects size calculation) */
0 commit comments