bdk/crates/file_store
志宇 a3aa8b6682
feat(file_store)!: optimize EntryIter by reducing syscalls
* Wrap file reader with `BufReader`. This reduces calls to `read`.
* Wrap file reader with `CountingReader`. This counts the bytes read by
  the underlying reader. We can rewind without seeking first.
2024-01-13 16:07:43 +08:00
..

BDK File Store

This is a simple append-only flat file implementation of Persist.

The main structure is Store, which can be used with bdk's Wallet to persist wallet data into a flat file.