7 unstable releases (3 breaking)
0.4.2 | Nov 11, 2024 |
---|---|
0.4.1 | Oct 9, 2024 |
0.3.1 | Jun 26, 2024 |
0.2.0 | Jun 21, 2024 |
0.1.0 | Jun 14, 2024 |
#156 in Magic Beans
890 downloads per month
Used in lwk_wollet
86KB
2K
SLoC
Waterfall
Waterfall is a proposed new scanning mechanism for web light-clients wallets that leverages a new server endpoint.
Old client
Due to browser limitations the web wallet must use HTTP esplora API.
With this API we cannot batch requests like it's done in the electrum client, and we cannot make requests concurrently because rate limitation is enforced in the server, this result in very poor scan performance.
Since we are persisting wallet data in the browser (encrypted), the scan following the first are faster.
Scan
Txs | First | Following |
---|---|---|
80 | 66s (344 reqs) | 33s (187 reqs) |
3 | 11s (63 reqs) | 11s (65 reqs) |
New client
Currently used at https://liquidwebwallet.org
The new waterfalls client avoids multiple requests by sending the bitcoin descriptor to the server. This has privacy implications, but we argue it's not that different than sending all of our addresses separately to the server. Specifically in the latter case we are not sending the knowledge of future addresses that are derivable from the descriptor in the former case. The real privacy gain is moving to a self-hosted server or to a personal node. Moreover, liquid specifically has the advantage of having confidential transactions and the blinding key is not sent to the server, thus a malicious server would know about the transactions of the wallet, but nothing about the assets exchanged and the value transacted.
Scan
Note the scan results in the first iteration includes the transaction unblinding which is roughly 100ms per tx.
Txs | First | Following |
---|---|---|
80 | 22s (85 reqs) | 1s (5 reqs) |
3 | 2s (11 reqs) | 1s (5 reqs) |
Bench
criterion
is used and nightly is not needed for benching, just do:
cargo bench
Curl
Try with curl
curl -s "https://waterfalls.liquidwebwallet.org/liquid/api/v1/waterfalls?descriptor=$(urlencode 'elwpkh(xpub6BemYiVNp19a1eGXYz87DQAbhWRj1UFE3PMz5YJMcvcyneZdLz7a69zDfq4cVFjYs6dxKhsngEnuwo5mbhoMFA8iVTK45sKcmFNwzupPtVC/<0;1>/*)')" | jq
With query string already urlencoded
curl -s "https://waterfalls.liquidwebwallet.org/liquid/api/v1/waterfalls?descriptor=elwpkh(xpub6BemYiVNp19a1eGXYz87DQAbhWRj1UFE3PMz5YJMcvcyneZdLz7a69zDfq4cVFjYs6dxKhsngEnuwo5mbhoMFA8iVTK45sKcmFNwzupPtVC%2F%3C0%3B1%3E%2F*)" | jq
Using encrypted descriptor (the server is able to decrypt but harder to be shown in logs)
curl 'https://waterfalls.liquidwebwallet.org/liquid/api/v1/waterfalls?descriptor=YWdlLWVuY3J5cHRpb24ub3JnL3YxCi0%2BIFgyNTUxOSBWQVFobnZlaWFreHp3NVNjd3V0dHVrVkFBTDBrT3RjQmg5WWp3MWxmaEdBCjhjVTVEVmlGTUxhVDBRZyt6TStDeUFrUThwSEZ0OWhCcjdGYlAzTU93WnMKLT4gNS1ncmVhc2UgSEYyJ3xOXCEgNysgdy1SNyB0NgpMSmpkbDBSbHpVRWVPa2NRK25ZSXFicWZtQUVlTXc0K2FQVDlrWS8vaW9xNzNyNm1JR1NwbHN2U3lrYURhMXNGCitTVk5hOEd3Ci0tLSBnd1Y4cWJXZmhHWmJMcHRkUjhiMmxuK0JBT3daSnhQOHZoOEY2em0rS2tnCrZd9P7B4qrMveFcDGAy%2B%2BXscw2QMpQ0c1auUwyjZCOnp3pJVZbsXsHISqatHGRfII6aY35Vn17KjNEbyW8HA8KhO2QL2sQYVQY3A1UMshk7vTbu1%2BrFNjHy0%2B4jXFSEU00sVumhrmdrq3cr9QmE2704DHnTq0cgmBcgOig3tf0XQpVgzxmEv0BsdIMhzjj%2FXkzjZiGpwf0iQ4U1LYLnQQ' | jq
ADR
- The endpoint is GET, allowing requests to be cached for a minimum amount of time (even 5s) to prevent DOS. It's possible to encrypt the descriptor with the server key. The server is going to know it anyway, but it's a measure to minimize the probability to have it in server and browser logs.
- Instead of developing the new endpoint in electrs, a separate executable has been created for this reasons:
- speed of development (we may decide to do it in electrs in the future)
- specific data model for the needed endpoint that doesn't fit in the current electrs data model. In particular:
- in electrs is required to iterate values in the db, preventing the use of the "multi get" calls to speed up multiple row fetching, which is extremely needed to recover hundreds of script pubkeys
- in electrs much more information is stored, by instead saving only the strictly needed more data can fit in memory
- The waterfalls endpoint mirrors all the esplora endpoints (possibly via a web server like nginx) with the exception of the waterfall endpoint
- The format of the data returned resembles what you have in Esplora with multiple
script_get_history
calls, to minimize client changes needed. The only exception is giving some extra information (block timestamp) to avoid even more requests. - Data returned in the endpoint mixes data in blocks and in mempool, since nature of the data differs (eg you could cache data coming from blocks for a minute) there could be some advantages in separating data returned in different endpoints, but we decided the gains are not worth the complexity
TODO
-
WaterfallRequest
andWaterfallResponse
should be handy in a separate crate so that client can use that - caching script derivations, cache also max derivation, so that you can use that to do a single multiget instead of n*gap_limit
- polling configurable with default 1s like it is (but tests can use much less)
Dependencies
~41–59MB
~821K SLoC