lnd/lnwallet
positiveblue 4a0a15586b
multi: make linter happy
Fix all the linter problems for the `v0.16.0-beta.rc3`.
2023-03-11 23:29:41 -08:00
..
btcwallet multi: add new build tag integration 2023-02-23 21:56:09 +08:00
chainfee
chancloser
chanfunding lnwallet: don't re-use sign descriptor 2023-02-07 22:15:10 +01:00
chanvalidate
rpcwallet rpcwallet: fix p2tr inputs in remote signing 2023-02-07 22:15:13 +01:00
test
channel_test.go lnwallet: make spendTx param in NewBreachRetribution optional 2023-02-16 20:47:35 +02:00
channel.go lnwallet: make spendTx param in NewBreachRetribution optional 2023-02-16 20:47:35 +02:00
commit_sort_test.go
commit_sort.go
commitment.go
config.go lnwallet: add new rebroadcaster interface, use for background tx publish 2023-03-10 19:07:35 -08:00
errors.go
interface.go walletrpc+lnwallet: possibility to define an address type for changes in FundPsbt 2023-02-08 12:35:44 +01:00
log.go
mock.go multi: make linter happy 2023-03-11 23:29:41 -08:00
parameters_test.go
parameters.go
README.md
rebroadcaster_test.go multi: make linter happy 2023-03-11 23:29:41 -08:00
rebroadcaster.go lnwallet: add new rebroadcaster interface, use for background tx publish 2023-03-10 19:07:35 -08:00
reservation.go
revocation_producer_itest.go multi: add new build tag integration 2023-02-23 21:56:09 +08:00
revocation_producer.go multi: add new build tag integration 2023-02-23 21:56:09 +08:00
sigpool.go
test_utils.go channeldb: final htlc resolution storage opt-in 2023-01-26 07:02:17 +01:00
test_vectors_anchors.json
test_vectors_legacy.json
transactions_test.go
transactions.go
wallet.go multi: make linter happy 2023-03-11 23:29:41 -08:00

lnwallet

Build Status MIT licensed GoDoc

The lnwallet package implements an abstracted wallet controller that is able to drive channel funding workflows, a number of script utilities, witness generation functions for the various Lightning scripts, revocation key derivation, and the commitment update state machine.

The package is used within lnd as the core wallet of the daemon. The wallet itself is composed of several distinct interfaces that decouple the implementation of things like signing and blockchain access. This separation allows new WalletController implementations to be easily dropped into lnd without disrupting the code base. A series of integration tests at the interface level are also in place to ensure conformance of the implementation with the interface.

Installation and Updating

$  go get -u github.com/lightningnetwork/lnd/lnwallet