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
- Added support for BIP-327: MuSig2 for BIP340-compatible multi-signatures
- Implemented BIP-174: Partially Signed Bitcoin Transaction (PSBT) format
- Integrated BIP-370: PSBT Version 2 enhancements
- Included BIP-371: Taproot fields for PSBT
- Extended support for BIP-373: MuSig2-related PSBT fields
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -80,6 +80,21 @@ Using this package, you can create a Bitcoin transaction in two ways: either thr
80
80
81
81
- P2SH(SEGWIT): A P2SH (Pay-to-Script-Hash) Segregated Witness (SegWit) address in Bitcoin combines the benefits of P2SH and SegWit technologies, allowing for enhanced transaction security, reduced fees, and improved scalability.
82
82
83
+
### MuSig2 BIP-327: MuSig2 for BIP340-compatible Multi-Signatures
84
+
You can find the examples here.
85
+
86
+
- Sign/Verify: Supports signing and verifying multisignature transactions using MuSig2
87
+
- NonceAgg: Aggregates nonces from multiple participants for secure signature generation.
88
+
- KeyAgg: Combines multiple public keys into a single aggregated public key for efficient multisignature verification
89
+
90
+
### PSBT
91
+
You can find the examples here.
92
+
93
+
- BIP-0174: Partially Signed Bitcoin Transaction Format
0 commit comments