Documentation ¶
Index ¶
- Variables
- type BtcWallet
- func (b *BtcWallet) ComputeInputScript(tx *wire.MsgTx, signDesc *lnwallet.SignDescriptor) (*lnwallet.InputScript, error)
- func (b *BtcWallet) ConfirmedBalance(confs int32, witness bool) (btcutil.Amount, error)
- func (b *BtcWallet) FetchInputInfo(prevOut *wire.OutPoint) (*wire.TxOut, error)
- func (b *BtcWallet) FetchRootKey() (*btcec.PrivateKey, error)
- func (b *BtcWallet) GetBestBlock() (*chainhash.Hash, int32, error)
- func (b *BtcWallet) GetBlock(blockHash *chainhash.Hash) (*wire.MsgBlock, error)
- func (b *BtcWallet) GetBlockHash(blockHeight int64) (*chainhash.Hash, error)
- func (b *BtcWallet) GetPrivKey(a btcutil.Address) (*btcec.PrivateKey, error)
- func (b *BtcWallet) GetTransaction(txid *chainhash.Hash) (*wire.MsgTx, error)
- func (b *BtcWallet) GetUtxo(txid *chainhash.Hash, index uint32) (*wire.TxOut, error)
- func (b *BtcWallet) IsSynced() (bool, error)
- func (b *BtcWallet) ListTransactionDetails() ([]*lnwallet.TransactionDetail, error)
- func (b *BtcWallet) ListUnspentWitness(minConfs int32) ([]*lnwallet.Utxo, error)
- func (b *BtcWallet) LockOutpoint(o wire.OutPoint)
- func (b *BtcWallet) NewAddress(t lnwallet.AddressType, change bool) (btcutil.Address, error)
- func (b *BtcWallet) NewRawKey() (*btcec.PublicKey, error)
- func (b *BtcWallet) PublishTransaction(tx *wire.MsgTx) error
- func (b *BtcWallet) SendOutputs(outputs []*wire.TxOut) (*chainhash.Hash, error)
- func (b *BtcWallet) SignOutputRaw(tx *wire.MsgTx, signDesc *lnwallet.SignDescriptor) ([]byte, error)
- func (b *BtcWallet) Start() error
- func (b *BtcWallet) Stop() error
- func (b *BtcWallet) SubscribeTransactions() (lnwallet.TransactionSubscription, error)
- func (b *BtcWallet) UnlockOutpoint(o wire.OutPoint)
- type Config
- type FundingSigner
Constants ¶
This section is empty.
Variables ¶
var ( // ErrOutputSpent is returned by the GetUtxo method if the target output // for lookup has already been spent. ErrOutputSpent = errors.New("target output has been spent") )
Functions ¶
This section is empty.
Types ¶
type BtcWallet ¶
type BtcWallet struct {
// contains filtered or unexported fields
}
BtcWallet is an implementation of the lnwallet.WalletController interface backed by an active instance of btcwallet. At the time of the writing of this documentation, this implementation requires a full btcd node to operate.
func New ¶
New returns a new fully initialized instance of BtcWallet given a valid configuration struct.
func (*BtcWallet) ComputeInputScript ¶
func (b *BtcWallet) ComputeInputScript(tx *wire.MsgTx, signDesc *lnwallet.SignDescriptor) (*lnwallet.InputScript, error)
ComputeInputScript generates a complete InputIndex for the passed transaction with the signature as defined within the passed SignDescriptor. This method is capable of generating the proper input script for both regular p2wkh output and p2wkh outputs nested within a regular p2sh output.
This is a part of the WalletController interface.
func (*BtcWallet) ConfirmedBalance ¶
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.
This is a part of the WalletController interface.
func (*BtcWallet) FetchInputInfo ¶
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.
This is a part of the WalletController interface.
func (*BtcWallet) FetchRootKey ¶
func (b *BtcWallet) FetchRootKey() (*btcec.PrivateKey, error)
FetchRootKey returns a root key which is intended to be used as an initial seed/salt to generate any Lightning specific secrets.
This is a part of the WalletController interface.
func (*BtcWallet) GetBestBlock ¶
GetBestBlock returns the current height and hash of the best known block within the main chain.
This method is a part of the lnwallet.BlockChainIO interface.
func (*BtcWallet) GetBlock ¶
GetBlock returns a raw block from the server given its hash.
This method is a part of the lnwallet.BlockChainIO interface.
func (*BtcWallet) GetBlockHash ¶
GetBlockHash returns the hash of the block in the best blockchain at the given height.
This method is a part of the lnwallet.BlockChainIO interface.
func (*BtcWallet) GetPrivKey ¶
GetPrivKey retrives the underlying private key associated with the passed address. If the we're unable to locate the proper private key, then a non-nil error will be returned.
This is a part of the WalletController interface.
func (*BtcWallet) GetTransaction ¶
GetTransaction returns the full transaction identified by the passed transaction ID.
This method is a part of the lnwallet.BlockChainIO interface.
func (*BtcWallet) GetUtxo ¶
GetUtxo returns the original output referenced by the passed outpoint.
This method is a part of the lnwallet.BlockChainIO interface.
func (*BtcWallet) IsSynced ¶
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.
This is a part of the WalletController interface.
func (*BtcWallet) ListTransactionDetails ¶
func (b *BtcWallet) ListTransactionDetails() ([]*lnwallet.TransactionDetail, error)
ListTransactionDetails returns a list of all transactions which are relevant to the wallet.
This is a part of the WalletController interface.
func (*BtcWallet) ListUnspentWitness ¶
ListUnspentWitness returns a slice of all the unspent outputs the wallet controls which pay to witness programs either directly or indirectly.
This is a part of the WalletController interface.
func (*BtcWallet) LockOutpoint ¶
LockOutpoint marks an outpoint as locked meaning it will no longer 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.
This is a part of the WalletController interface.
func (*BtcWallet) NewAddress ¶
NewAddress returns the next external or internal address for the wallet dicatated by the value of the `change` paramter. If change is true, then an internal address will be returned, otherwise an external address should be returned.
This is a part of the WalletController interface.
func (*BtcWallet) NewRawKey ¶
NewRawKey retrieves the next key within our HD key-chain for use within as a multi-sig key within the funding transaction, or within the commitment transaction's outputs.
This is a part of the WalletController interface.
func (*BtcWallet) PublishTransaction ¶
PublishTransaction performs cursory validation (dust checks, etc), then finally broadcasts the passed transaction to the Bitcoin network.
func (*BtcWallet) SendOutputs ¶
SendOutputs funds, signs, and broadcasts a Bitcoin transaction paying out to the specified outputs. In the case the wallet has insufficient funds, or the outputs are non-standard, a non-nil error will be be returned.
This is a part of the WalletController interface.
func (*BtcWallet) SignOutputRaw ¶
func (b *BtcWallet) SignOutputRaw(tx *wire.MsgTx, signDesc *lnwallet.SignDescriptor) ([]byte, error)
SignOutputRaw generates a signature for the passed transaction according to the data within the passed SignDescriptor.
This is a part of the WalletController interface.
func (*BtcWallet) Start ¶
Start initializes the underlying rpc connection, the wallet itself, and begins syncing to the current available blockchain state.
This is a part of the WalletController interface.
func (*BtcWallet) Stop ¶
Stop signals the wallet for shutdown. Shutdown may entail closing any active sockets, database handles, stopping goroutines, etc.
This is a part of the WalletController interface.
func (*BtcWallet) SubscribeTransactions ¶
func (b *BtcWallet) SubscribeTransactions() (lnwallet.TransactionSubscription, error)
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.
This is a part of the WalletController interface.
func (*BtcWallet) UnlockOutpoint ¶
UnlockOutpoint unlocks an previously locked output, marking it eligible for coin seleciton.
This is a part of the WalletController interface.
type Config ¶
type Config struct { // DataDir is the name of the directory where the wallet's persistent // state should be sotred. DataDir string // LogDir is the name of the directory which should be used to store // generated log files. LogDir string // DebugLevel is a string representing the level of verbosity the // logger should use. DebugLevel string // RPCHost is the host and port to use to reach the rpc sever. RPCHost string // localhost:18334 // RPCUser is the username which should be used to authentiate with the // rpc server. RPCUser string // RPCPass is the password which should be used to authenticate the // connection with the RPC server. RPCPass string // RPCNoTLS denotes if a TLS connection should be attempted when // connecting to the RPC server. RPCNoTLS bool // RPCCert directory where the TLS certificate of the RPC sever is // stored. If the RPCNoTLS is false, then this value will be unused. RPCCert string RPCKey string // CACert is the raw RPC cert for btcd. CACert []byte PrivatePass []byte PublicPass []byte HdSeed []byte NetParams *chaincfg.Params }
Config is a struct which houses configuration paramters which modify the instance of BtcWallet generated by the New() function.
type FundingSigner ¶
type FundingSigner struct {
// contains filtered or unexported fields
}
FundingSigner responsible for signing the data with the keys that were generated by the wallet. At the moment of creation it is used for signing the data with funding keys.
func NewFundingSigner ¶
func NewFundingSigner(wallet *BtcWallet) *FundingSigner
NewFundingSigner creates new instance of signer.