2016-03-22 23:00:31 +03:00
|
|
|
package lnwallet
|
|
|
|
|
|
|
|
import (
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"sync"
|
|
|
|
|
2016-05-15 17:17:44 +03:00
|
|
|
"github.com/roasbeef/btcd/btcec"
|
2017-01-06 00:56:27 +03:00
|
|
|
"github.com/roasbeef/btcd/chaincfg/chainhash"
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
"github.com/roasbeef/btcd/txscript"
|
2016-05-15 17:17:44 +03:00
|
|
|
"github.com/roasbeef/btcd/wire"
|
|
|
|
"github.com/roasbeef/btcutil"
|
2016-03-22 23:00:31 +03:00
|
|
|
)
|
|
|
|
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
// ErrNotMine is an error denoting that a WalletController instance is unable
|
|
|
|
// to spend a specifid output.
|
|
|
|
var ErrNotMine = errors.New("the passed output doesn't belong to the wallet")
|
|
|
|
|
|
|
|
// AddressType is a enum-like type which denotes the possible address types
|
|
|
|
// WalletController supports.
|
|
|
|
type AddressType uint8
|
|
|
|
|
|
|
|
const (
|
|
|
|
// WitnessPubKey represents a p2wkh address.
|
|
|
|
WitnessPubKey AddressType = iota
|
|
|
|
|
|
|
|
// NestedWitnessPubKey represents a p2sh output which is itself a
|
|
|
|
// nested p2wkh output.
|
|
|
|
NestedWitnessPubKey
|
|
|
|
|
2017-02-23 22:56:47 +03:00
|
|
|
// PubKeyHash represents a regular p2pkh output.
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
PubKeyHash
|
|
|
|
)
|
|
|
|
|
|
|
|
// Utxo is an unspent output denoted by its outpoint, and output value of the
|
|
|
|
// original output.
|
|
|
|
type Utxo struct {
|
|
|
|
Value btcutil.Amount
|
|
|
|
wire.OutPoint
|
|
|
|
}
|
|
|
|
|
2016-10-15 06:03:34 +03:00
|
|
|
// TransactionDetail describes a transaction with either inputs which belong to
|
|
|
|
// the wallet, or has outputs that pay to the wallet.
|
|
|
|
type TransactionDetail struct {
|
|
|
|
// Hash is the transaction hash of the transaction.
|
2017-01-06 00:56:27 +03:00
|
|
|
Hash chainhash.Hash
|
2016-10-15 06:03:34 +03:00
|
|
|
|
|
|
|
// Value is the net value of this transaction (in satoshis) from the
|
|
|
|
// PoV of the wallet. If this transaction purely spends from the
|
|
|
|
// wallet's funds, then this value will be negative. Similarly, if this
|
|
|
|
// transaction credits the wallet, then this value will be positive.
|
|
|
|
Value btcutil.Amount
|
|
|
|
|
|
|
|
// NumConfirmations is the number of confirmations this transaction
|
|
|
|
// has. If the transaction is unconfirmed, then this value will be
|
|
|
|
// zero.
|
|
|
|
NumConfirmations int32
|
|
|
|
|
|
|
|
// BlockHeight is the hash of the block which includes this
|
|
|
|
// transaction. Unconfirmed transactions will have a nil value for this
|
|
|
|
// field.
|
2017-01-06 00:56:27 +03:00
|
|
|
BlockHash *chainhash.Hash
|
2016-10-15 06:03:34 +03:00
|
|
|
|
|
|
|
// BlockHeight is the height of the block including this transaction.
|
|
|
|
// Unconfirmed transaction will show a height of zero.
|
|
|
|
BlockHeight int32
|
|
|
|
|
|
|
|
// Timestamp is the unix timestamp of the block including this
|
|
|
|
// transaction. If the transaction is unconfirmed, then this will be a
|
|
|
|
// timestamp of txn creation.
|
|
|
|
Timestamp int64
|
|
|
|
|
|
|
|
// TotalFees is the total fee in satoshis paid by this transaction.
|
|
|
|
TotalFees int64
|
|
|
|
}
|
2016-10-16 00:07:05 +03:00
|
|
|
|
|
|
|
// TransactionSubscription is an interface which describes an object capable of
|
|
|
|
// receiving notifications of new transaction related to the underlying wallet.
|
|
|
|
// TODO(roasbeef): add balance updates?
|
|
|
|
type TransactionSubscription interface {
|
|
|
|
// ConfirmedTransactions returns a channel which will be sent on as new
|
|
|
|
// relevant transactions are confirmed.
|
|
|
|
ConfirmedTransactions() chan *TransactionDetail
|
|
|
|
|
|
|
|
// UnconfirmedTransactions returns a channel which will be sent on as
|
|
|
|
// new relevant transactions are seen within the network.
|
|
|
|
UnconfirmedTransactions() chan *TransactionDetail
|
|
|
|
|
|
|
|
// Cancel finalizes the subscription, cleaning up any resources
|
|
|
|
// allocated.
|
|
|
|
Cancel()
|
|
|
|
}
|
|
|
|
|
2016-03-22 23:00:31 +03:00
|
|
|
// WalletController defines an abstract interface for controlling a local Pure
|
|
|
|
// Go wallet, a local or remote wallet via an RPC mechanism, or possibly even
|
|
|
|
// a daemon assisted hardware wallet. This interface serves the purpose of
|
|
|
|
// allowing LightningWallet to be seamlessly compatible with several wallets
|
|
|
|
// such as: uspv, btcwallet, Bitcoin Core, Electrum, etc. This interface then
|
|
|
|
// serves as a "base wallet", with Lightning Network awareness taking place at
|
|
|
|
// a "higher" level of abstraction. Essentially, an overlay wallet.
|
2016-08-04 08:31:20 +03:00
|
|
|
// Implementors of this interface must closely adhere to the documented
|
|
|
|
// behavior of all interface methods in order to ensure identical behavior
|
|
|
|
// across all concrete implementations.
|
2016-03-22 23:00:31 +03:00
|
|
|
type WalletController interface {
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
// FetchInputInfo queries for the WalletController's knowledge of the
|
|
|
|
// passed outpoint. If the base wallet determines this output is under
|
|
|
|
// its control, then the original txout should be returned. Otherwise,
|
|
|
|
// a non-nil error value of ErrNotMine should be returned instead.
|
|
|
|
FetchInputInfo(prevOut *wire.OutPoint) (*wire.TxOut, error)
|
|
|
|
|
2016-03-22 23:00:31 +03:00
|
|
|
// ConfirmedBalance returns the sum of all the wallet's unspent outputs
|
|
|
|
// that have at least confs confirmations. If confs is set to zero,
|
|
|
|
// then all unspent outputs, including those currently in the mempool
|
|
|
|
// will be included in the final sum.
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
ConfirmedBalance(confs int32, witness bool) (btcutil.Amount, error)
|
2016-04-13 07:36:41 +03:00
|
|
|
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
// NewAddress returns the next external or internal address for the
|
2016-12-22 23:34:51 +03:00
|
|
|
// wallet dictated by the value of the `change` parameter. If change is
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
// true, then an internal address should be used, otherwise an external
|
|
|
|
// address should be returned. The type of address returned is dictated
|
|
|
|
// by the wallet's capabilities, and may be of type: p2sh, p2pkh,
|
|
|
|
// p2wkh, p2wsh, etc.
|
|
|
|
NewAddress(addrType AddressType, change bool) (btcutil.Address, error)
|
2016-03-22 23:00:31 +03:00
|
|
|
|
|
|
|
// GetPrivKey retrives the underlying private key associated with the
|
|
|
|
// passed address. If the wallet is unable to locate this private key
|
|
|
|
// due to the address not being under control of the wallet, then an
|
|
|
|
// error should be returned.
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
GetPrivKey(a btcutil.Address) (*btcec.PrivateKey, error)
|
2016-03-22 23:00:31 +03:00
|
|
|
|
|
|
|
// NewRawKey returns a raw private key controlled by the wallet. These
|
|
|
|
// keys are used for the 2-of-2 multi-sig outputs for funding
|
|
|
|
// transactions, as well as the pub key used for commitment transactions.
|
2017-02-08 07:01:12 +03:00
|
|
|
//
|
|
|
|
// NOTE: The wallet MUST watch for on-chain outputs created to a p2wpkh
|
|
|
|
// script using keys returned by this function.
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
NewRawKey() (*btcec.PublicKey, error)
|
|
|
|
|
|
|
|
// FetchRootKey returns a root key which will be used by the
|
|
|
|
// LightningWallet to deterministically generate secrets. The private
|
|
|
|
// key returned by this method should remain constant in-between
|
|
|
|
// WalletController restarts.
|
|
|
|
FetchRootKey() (*btcec.PrivateKey, error)
|
2016-03-22 23:00:31 +03:00
|
|
|
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
// SendOutputs funds, signs, and broadcasts a Bitcoin transaction
|
|
|
|
// paying out to the specified outputs. In the case the wallet has
|
2016-11-19 04:11:59 +03:00
|
|
|
// insufficient funds, or the outputs are non-standard, an error
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
// should be returned.
|
2017-01-06 00:56:27 +03:00
|
|
|
SendOutputs(outputs []*wire.TxOut) (*chainhash.Hash, error)
|
2016-03-22 23:00:31 +03:00
|
|
|
|
2016-04-13 07:36:41 +03:00
|
|
|
// ListUnspentWitness returns all unspent outputs which are version 0
|
|
|
|
// witness programs. The 'confirms' parameter indicates the minimum
|
|
|
|
// number of confirmations an output needs in order to be returned by
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
// this method. Passing -1 as 'confirms' indicates that even
|
|
|
|
// unconfirmed outputs should be returned.
|
|
|
|
ListUnspentWitness(confirms int32) ([]*Utxo, error)
|
2016-04-13 07:36:41 +03:00
|
|
|
|
2016-10-15 06:03:34 +03:00
|
|
|
// ListTransactionDetails returns a list of all transactions which are
|
|
|
|
// relevant to the wallet.
|
|
|
|
ListTransactionDetails() ([]*TransactionDetail, error)
|
|
|
|
|
2016-03-22 23:00:31 +03:00
|
|
|
// LockOutpoint marks an outpoint as locked meaning it will no longer
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
// be deemed as eligible for coin selection. Locking outputs are
|
|
|
|
// utilized in order to avoid race conditions when selecting inputs for
|
|
|
|
// usage when funding a channel.
|
2016-03-22 23:00:31 +03:00
|
|
|
LockOutpoint(o wire.OutPoint)
|
|
|
|
|
|
|
|
// UnlockOutpoint unlocks an previously locked output, marking it
|
2016-12-22 23:34:51 +03:00
|
|
|
// eligible for coin selection.
|
2016-03-22 23:00:31 +03:00
|
|
|
UnlockOutpoint(o wire.OutPoint)
|
|
|
|
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
// PublishTransaction performs cursory validation (dust checks, etc),
|
|
|
|
// then finally broadcasts the passed transaction to the Bitcoin network.
|
|
|
|
PublishTransaction(tx *wire.MsgTx) error
|
2016-03-22 23:00:31 +03:00
|
|
|
|
2016-10-16 00:07:05 +03:00
|
|
|
// SubscribeTransactions returns a TransactionSubscription client which
|
|
|
|
// is capable of receiving async notifications as new transactions
|
|
|
|
// related to the wallet are seen within the network, or found in
|
|
|
|
// blocks.
|
|
|
|
//
|
2016-12-09 05:29:55 +03:00
|
|
|
// NOTE: a non-nil error should be returned if notifications aren't
|
2016-10-16 00:07:05 +03:00
|
|
|
// supported.
|
|
|
|
//
|
|
|
|
// TODO(roasbeef): make distinct interface?
|
|
|
|
SubscribeTransactions() (TransactionSubscription, error)
|
|
|
|
|
2016-12-09 05:29:55 +03:00
|
|
|
// IsSynced returns a boolean indicating if from the PoV of the wallet,
|
|
|
|
// it has fully synced to the current best block in the main chain.
|
|
|
|
IsSynced() (bool, error)
|
|
|
|
|
|
|
|
// Start initializes the wallet, making any necessary connections,
|
2016-03-22 23:00:31 +03:00
|
|
|
// starting up required goroutines etc.
|
|
|
|
Start() error
|
|
|
|
|
|
|
|
// Stop signals the wallet for shutdown. Shutdown may entail closing
|
|
|
|
// any active sockets, database handles, stopping goroutines, etc.
|
|
|
|
Stop() error
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// BlockChainIO is a dedicated source which will be used to obtain queries
|
|
|
|
// related to the current state of the blockchain. The data returned by each of
|
|
|
|
// the defined methods within this interface should always return the most up
|
|
|
|
// to date data possible.
|
|
|
|
//
|
|
|
|
// TODO(roasbeef): move to diff package perhaps?
|
2016-09-12 22:33:22 +03:00
|
|
|
// TODO(roasbeef): move publish txn here?
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
type BlockChainIO interface {
|
2016-12-22 23:34:51 +03:00
|
|
|
// GetBestBlock returns the current height and block hash of the valid
|
|
|
|
// most-work chain the implementation is aware of.
|
2017-01-06 00:56:27 +03:00
|
|
|
GetBestBlock() (*chainhash.Hash, int32, error)
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
|
2017-05-11 02:37:14 +03:00
|
|
|
// GetUtxo attempts to return the passed outpoint if it's still a
|
|
|
|
// member of the utxo set. The passed height hint should be the "birth
|
|
|
|
// height" of the passed outpoint. In the case that the output is in
|
|
|
|
// the UTXO set, then the output corresponding to that output is
|
|
|
|
// returned. Otherwise, a non-nil error will be returned.
|
|
|
|
GetUtxo(op *wire.OutPoint, heightHint uint32) (*wire.TxOut, error)
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
|
2017-01-13 08:01:50 +03:00
|
|
|
// GetBlockHash returns the hash of the block in the best blockchain
|
2016-12-22 23:34:51 +03:00
|
|
|
// at the given height.
|
2017-01-06 00:56:27 +03:00
|
|
|
GetBlockHash(blockHeight int64) (*chainhash.Hash, error)
|
2016-12-07 18:49:58 +03:00
|
|
|
|
2016-12-22 23:34:51 +03:00
|
|
|
// GetBlock returns the block in the main chain identified by the given
|
|
|
|
// hash.
|
2017-01-06 00:56:27 +03:00
|
|
|
GetBlock(blockHash *chainhash.Hash) (*wire.MsgBlock, error)
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
}
|
|
|
|
|
2016-10-16 02:02:09 +03:00
|
|
|
// SignDescriptor houses the necessary information required to successfully sign
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
// a given output. This struct is used by the Signer interface in order to gain
|
2016-10-16 02:02:09 +03:00
|
|
|
// access to critical data needed to generate a valid signature.
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
type SignDescriptor struct {
|
|
|
|
// Pubkey is the public key to which the signature should be generated
|
|
|
|
// over. The Signer should then generate a signature with the private
|
|
|
|
// key corresponding to this public key.
|
|
|
|
PubKey *btcec.PublicKey
|
|
|
|
|
2017-07-30 04:47:06 +03:00
|
|
|
// SingleTweak is a scalar value that will be added to the private key
|
|
|
|
// corresponding to the above public key to obtain the private key to
|
|
|
|
// be used to sign this input. This value is typically derived via the
|
|
|
|
// following computation:
|
|
|
|
//
|
|
|
|
// * derivedKey = privkey + sha256(perCommitmentPoint || pubKey) mod N
|
2016-11-19 04:11:59 +03:00
|
|
|
//
|
|
|
|
// NOTE: If this value is nil, then the input can be signed using only
|
2017-07-30 04:47:06 +03:00
|
|
|
// the above public key. Either a SingleTweak should be set or a
|
|
|
|
// DoubleTweak, not both.
|
|
|
|
SingleTweak []byte
|
|
|
|
|
|
|
|
// DoubleTweak is a private key that will be used in combination with
|
|
|
|
// its corresponding private key to derive the private key that is to
|
|
|
|
// be used to sign the target input. Within the Lightning protocol,
|
|
|
|
// this value is typically the commitment secret from a previously
|
|
|
|
// revoked commitment transaction. This value is in combination with
|
|
|
|
// two hash values, and the original private key to derive the private
|
|
|
|
// key to be used when signing.
|
|
|
|
//
|
|
|
|
// * k = (privKey*sha256(pubKey || tweakPub) +
|
|
|
|
// tweakPriv*sha256(tweakPub || pubKey)) mod N
|
|
|
|
//
|
|
|
|
// NOTE: If this value is nil, then the input can be signed using only
|
|
|
|
// the above public key. Either a SingleTweak should be set or a
|
|
|
|
// DoubleTweak, not both.
|
|
|
|
DoubleTweak *btcec.PrivateKey
|
2016-11-19 04:11:59 +03:00
|
|
|
|
2016-10-16 02:02:09 +03:00
|
|
|
// WitnessScript is the full script required to properly redeem the
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
// output. This field will only be populated if a p2wsh or a p2sh
|
|
|
|
// output is being signed.
|
2016-10-16 02:02:09 +03:00
|
|
|
WitnessScript []byte
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
|
|
|
|
// Output is the target output which should be signed. The PkScript and
|
|
|
|
// Value fields within the output should be properly populated,
|
|
|
|
// otherwise an invalid signature may be generated.
|
|
|
|
Output *wire.TxOut
|
|
|
|
|
|
|
|
// HashType is the target sighash type that should be used when
|
|
|
|
// generating the final sighash, and signature.
|
|
|
|
HashType txscript.SigHashType
|
|
|
|
|
|
|
|
// SigHashes is the pre-computed sighash midstate to be used when
|
|
|
|
// generating the final sighash for signing.
|
|
|
|
SigHashes *txscript.TxSigHashes
|
|
|
|
|
|
|
|
// InputIndex is the target input within the transaction that should be
|
|
|
|
// signed.
|
|
|
|
InputIndex int
|
|
|
|
}
|
|
|
|
|
|
|
|
// Signer represents an abstract object capable of generating raw signatures as
|
|
|
|
// well as full complete input scripts given a valid SignDescriptor and
|
|
|
|
// transaction. This interface fully abstracts away signing paving the way for
|
|
|
|
// Signer implementations such as hardware wallets, hardware tokens, HSM's, or
|
|
|
|
// simply a regular wallet.
|
|
|
|
type Signer interface {
|
|
|
|
// SignOutputRaw generates a signature for the passed transaction
|
|
|
|
// according to the data within the passed SignDescriptor.
|
|
|
|
//
|
|
|
|
// NOTE: The resulting signature should be void of a sighash byte.
|
|
|
|
SignOutputRaw(tx *wire.MsgTx, signDesc *SignDescriptor) ([]byte, error)
|
|
|
|
|
|
|
|
// ComputeInputScript generates a complete InputIndex for the passed
|
|
|
|
// transaction with the signature as defined within the passed
|
|
|
|
// SignDescriptor. This method should be capable of generating the
|
|
|
|
// proper input script for both regular p2wkh output and p2wkh outputs
|
2016-12-22 23:34:51 +03:00
|
|
|
// nested within a regular p2sh output.
|
2017-07-30 04:47:06 +03:00
|
|
|
//
|
|
|
|
// NOTE: This method will ignore any tweak parameters set within the
|
|
|
|
// passed SignDescriptor as it assumes a set of typical script
|
|
|
|
// templates (p2wkh, np2wkh, etc).
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
ComputeInputScript(tx *wire.MsgTx, signDesc *SignDescriptor) (*InputScript, error)
|
|
|
|
}
|
|
|
|
|
2017-04-14 20:59:13 +03:00
|
|
|
// MessageSigner represents an abstract object capable of signing arbitrary
|
|
|
|
// messages. The capabilities of this interface are used to sign announcements
|
|
|
|
// to the network, or just arbitrary messages that leverage the wallet's keys
|
|
|
|
// to attest to some message.
|
|
|
|
type MessageSigner interface {
|
|
|
|
// SignMessage attempts to sign a target message with the private key
|
|
|
|
// that corresponds to the passed public key. If the target private key
|
|
|
|
// is unable to be found, then an error will be returned. The actual
|
|
|
|
// digest signed is the double SHA-256 of the passed message.
|
|
|
|
SignMessage(pubKey *btcec.PublicKey, msg []byte) (*btcec.Signature, error)
|
|
|
|
}
|
|
|
|
|
2017-05-01 10:27:12 +03:00
|
|
|
// FeeEstimator provides the ability to estimate on-chain transaction fees for
|
|
|
|
// various combinations of transaction sizes and desired confirmation time
|
|
|
|
// (measured by number of blocks).
|
|
|
|
type FeeEstimator interface {
|
|
|
|
// EstimateFeePerByte takes in a target for the number of blocks until
|
|
|
|
// an initial confirmation and returns the estimated fee expressed in
|
|
|
|
// satoshis/byte.
|
|
|
|
EstimateFeePerByte(numBlocks uint32) uint64
|
|
|
|
|
|
|
|
// EstimateFeePerWeight takes in a target for the number of blocks until
|
|
|
|
// an initial confirmation and returns the estimated fee expressed in
|
|
|
|
// satoshis/weight.
|
|
|
|
EstimateFeePerWeight(numBlocks uint32) uint64
|
|
|
|
|
|
|
|
// EstimateConfirmation will return the number of blocks expected for a
|
|
|
|
// transaction to be confirmed given a fee rate in satoshis per
|
|
|
|
// byte.
|
|
|
|
EstimateConfirmation(satPerByte int64) uint32
|
|
|
|
}
|
|
|
|
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
// WalletDriver represents a "driver" for a particular concrete
|
2016-12-22 23:34:51 +03:00
|
|
|
// WalletController implementation. A driver is identified by a globally unique
|
|
|
|
// string identifier along with a 'New()' method which is responsible for
|
|
|
|
// initializing a particular WalletController concrete implementation.
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
type WalletDriver struct {
|
|
|
|
// WalletType is a string which uniquely identifes the WalletController
|
|
|
|
// that this driver, drives.
|
|
|
|
WalletType string
|
|
|
|
|
|
|
|
// New creates a new instance of a concrete WalletController
|
|
|
|
// implementation given a variadic set up arguments. The function takes
|
2016-12-22 23:34:51 +03:00
|
|
|
// a varidaic number of interface parameters in order to provide
|
|
|
|
// initialization flexibility, thereby accommodating several potential
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
// WalletController implementations.
|
|
|
|
New func(args ...interface{}) (WalletController, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
wallets = make(map[string]*WalletDriver)
|
|
|
|
registerMtx sync.Mutex
|
|
|
|
)
|
|
|
|
|
|
|
|
// RegisteredWallets returns a slice of all currently registered notifiers.
|
|
|
|
//
|
|
|
|
// NOTE: This function is safe for concurrent access.
|
|
|
|
func RegisteredWallets() []*WalletDriver {
|
|
|
|
registerMtx.Lock()
|
|
|
|
defer registerMtx.Unlock()
|
|
|
|
|
|
|
|
registeredWallets := make([]*WalletDriver, 0, len(wallets))
|
|
|
|
for _, wallet := range wallets {
|
|
|
|
registeredWallets = append(registeredWallets, wallet)
|
|
|
|
}
|
|
|
|
|
|
|
|
return registeredWallets
|
|
|
|
}
|
|
|
|
|
|
|
|
// RegisterWallet registers a WalletDriver which is capable of driving a
|
|
|
|
// concrete WalletController interface. In the case that this driver has
|
|
|
|
// already been registered, an error is returned.
|
|
|
|
//
|
|
|
|
// NOTE: This function is safe for concurrent access.
|
|
|
|
func RegisterWallet(driver *WalletDriver) error {
|
|
|
|
registerMtx.Lock()
|
|
|
|
defer registerMtx.Unlock()
|
|
|
|
|
|
|
|
if _, ok := wallets[driver.WalletType]; ok {
|
|
|
|
return fmt.Errorf("wallet already registered")
|
|
|
|
}
|
|
|
|
|
|
|
|
wallets[driver.WalletType] = driver
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-12-22 23:34:51 +03:00
|
|
|
// SupportedWallets returns a slice of strings that represents the wallet
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
// drivers that have been registered and are therefore supported.
|
|
|
|
//
|
|
|
|
// NOTE: This function is safe for concurrent access.
|
|
|
|
func SupportedWallets() []string {
|
|
|
|
registerMtx.Lock()
|
|
|
|
defer registerMtx.Unlock()
|
2016-03-22 23:00:31 +03:00
|
|
|
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
supportedWallets := make([]string, 0, len(wallets))
|
|
|
|
for walletName := range wallets {
|
|
|
|
supportedWallets = append(supportedWallets, walletName)
|
|
|
|
}
|
2016-03-22 23:00:31 +03:00
|
|
|
|
lnwallet: revamp interfaces, add BlockChainIO and Singer
This commit revamps the previous WalletController interface, edging it
closer to a more complete version.
Additionally, this commit also introduces two new interfaces:
BlockchainIO, and Singer along with a new factor driver struct, the
WalletDriver.
This BlockChainIO abstracts read-only access to the blockchain, while
the Singer interface abstracts the signing of inputs from the base
wallet paving the way to hardware wallets, air-gapped signing, etc.
Finally, in order to provide an easy method for selecting a particular
concrete implementation of a WalletController interface, the concept of
registering “WalletDriver”s has been introduced. A wallet driver is
essentially the encapsulation of a factory function capable of create a
new instance of a Wallet Controller.
2016-08-13 01:24:22 +03:00
|
|
|
return supportedWallets
|
2016-03-22 23:00:31 +03:00
|
|
|
}
|