mirror of
https://github.com/muun/recovery.git
synced 2025-02-23 03:22:31 -05:00
95 lines
2.5 KiB
Go
95 lines
2.5 KiB
Go
package libwallet
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/btcsuite/btcutil"
|
|
"github.com/muun/libwallet/addresses"
|
|
|
|
"github.com/btcsuite/btcd/chaincfg"
|
|
"github.com/btcsuite/btcd/wire"
|
|
)
|
|
|
|
// CreateAddressV4 returns a P2WSH MuunAddress from a user HD-pubkey and a Muun co-signing HD-pubkey.
|
|
func CreateAddressV4(userKey, muunKey *HDPublicKey) (MuunAddress, error) {
|
|
return addresses.CreateAddressV4(&userKey.key, &muunKey.key, userKey.Path, userKey.Network.network)
|
|
}
|
|
|
|
type coinV4 struct {
|
|
Network *chaincfg.Params
|
|
OutPoint wire.OutPoint
|
|
KeyPath string
|
|
Amount btcutil.Amount
|
|
MuunSignature []byte
|
|
}
|
|
|
|
func (c *coinV4) SignInput(index int, tx *wire.MsgTx, userKey *HDPrivateKey, muunKey *HDPublicKey) error {
|
|
|
|
userKey, err := userKey.DeriveTo(c.KeyPath)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to derive user key: %w", err)
|
|
}
|
|
|
|
muunKey, err = muunKey.DeriveTo(c.KeyPath)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to derive muun key: %w", err)
|
|
}
|
|
|
|
if len(c.MuunSignature) == 0 {
|
|
return fmt.Errorf("muun signature must be present: %w", err)
|
|
}
|
|
|
|
witnessScript, err := createWitnessScriptV4(userKey.PublicKey(), muunKey)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
sig, err := c.signature(index, tx, userKey.PublicKey(), muunKey, userKey)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
zeroByteArray := []byte{}
|
|
|
|
txInput := tx.TxIn[index]
|
|
txInput.Witness = wire.TxWitness{zeroByteArray, sig, c.MuunSignature, witnessScript}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (c *coinV4) FullySignInput(index int, tx *wire.MsgTx, userKey, muunKey *HDPrivateKey) error {
|
|
|
|
derivedUserKey, err := userKey.DeriveTo(c.KeyPath)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to derive user key: %w", err)
|
|
}
|
|
|
|
derivedMuunKey, err := muunKey.DeriveTo(c.KeyPath)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to derive muun key: %w", err)
|
|
}
|
|
|
|
muunSignature, err := c.signature(index, tx, derivedUserKey.PublicKey(), derivedMuunKey.PublicKey(), derivedMuunKey)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
c.MuunSignature = muunSignature
|
|
return c.SignInput(index, tx, userKey, muunKey.PublicKey())
|
|
}
|
|
|
|
func (c *coinV4) signature(index int, tx *wire.MsgTx, userKey *HDPublicKey, muunKey *HDPublicKey,
|
|
signingKey *HDPrivateKey) ([]byte, error) {
|
|
|
|
witnessScript, err := createWitnessScriptV4(userKey, muunKey)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return signNativeSegwitInput(
|
|
index, tx, signingKey, witnessScript, c.Amount)
|
|
}
|
|
|
|
func createWitnessScriptV4(userKey, muunKey *HDPublicKey) ([]byte, error) {
|
|
return addresses.CreateWitnessScriptV4(&userKey.key, &muunKey.key, userKey.Network.network)
|
|
}
|