3e33353745212e6d344c2b172941c8eae1bdcb53 change button kind for transaction save modal (edouardparis) 0c2f0de951c0fb050a9934aabc256343aed83c4c Add light background to active buttons (edouardparis) 5c9171d0903a3f674f8a3e01fc7f878ece432c6a remove unused picklist theme (edouardparis) 8546e55ffaaa1585e1f1c9d724853682087656e7 change button for secondary button for consistency (edouardparis) 08854c4940569697e634e0c7ce53316ee04a049e change secondary button ui (edouardparis) 277945dddf63295d65abb8f3a28cbe3c671f8f47 convert all primary button to secondary button (edouardparis) Pull request description: close #1380 We removed all the primary buttons, they will be introduced back in the GUI incrementally to follow a one primary button per page policy The secondary button is border grey then border and text green on hover, whereas primary button will have its background green to be a call to action to the user. The background of the secondary button is changed for a light grey in order to be consistent with items list selection.    ACKs for top commit: edouardparis: Self-ACK 3e33353745212e6d344c2b172941c8eae1bdcb53 Tree-SHA512: ab4a2f347e4d85edeee5b38bbc5da1ff995ae8a6d62ea819ac6f23ed30881a61391b63d325268e374c9b100238fe5993d31323283abcfeb9f922051965f9ebe1
About
Liana is a simple Bitcoin wallet. Like other Bitcoin wallets you have one key which can spend the funds in the wallet immediately. Unlike other wallets, Liana lets you in addition specify one key which can only spend the coins after the wallet has been inactive for some time.
We refer to these as the primary spending path (always accessible) and the recovery path (only available after some time of inactivity). You may have more than one key in either the primary or the recovery path (multisig). You may have more than one recovery path.
Here is an example of a Liana wallet configuration:
- Owner's key (can always spend)
- Any 2 keys from the owner's spouse and two kids (after 1 year)
- A third party, in case all else failed (after 1 year and 3 months)
The lockup period is enforced onchain by the Bitcoin network. This is achieved by leveraging timelock capabilities of Bitcoin smart contracts (Script).
Liana can be used for trustless inheritance, loss protection or safer backups. Visit our website for more information.
Usage
Liana is available on Windows, Mac and Linux. To install and start using it see
doc/USAGE.md. A more accessible version of Liana is also available as a web
application here.
If you just want to quickly try out Liana on Bitcoin Signet, see doc/TRY.md.
Hacking on Liana
Liana is an open source project. It is hosted at Github. Contributions are very welcome. See here for guidelines. Most regular contributors hang out on our Discord. Join us there if you have any question about contributing.
Liana is separated in two main components: the daemon and the Graphical User Interface.
Liana daemon
The daemon contains the core logic of the wallet. It is both a library (a Rust crate) that exposes a command interface and a standalone UNIX daemon that exposes a JSONRPC API through a Unix Domain Socket.
The code for the daemon can be found in the src/ folder at the root of this repository.
Liana GUI
The GUI contains both an installer that guides a user through setting up a Liana wallet, as well as
a graphical interface to the daemon using the iced library.
The code for the GUI can be found in the gui/src/ folder.
Security
See SECURITY.md for details about reporting a security vulnerability or any bug
that could potentially impact the security of users' funds.
License
Released under the BSD 3-Clause Licence. See the LICENCE file.