2023-03-10 13:40:27 +13:00
|
|
|
# BDK File Store
|
|
|
|
|
|
|
|
This is a simple append-only flat file implementation of
|
2024-04-24 15:01:17 -10:00
|
|
|
[`PersistBackend`](bdk_persist::PersistBackend).
|
2023-03-10 13:40:27 +13:00
|
|
|
|
2024-04-24 15:01:17 -10:00
|
|
|
The main structure is [`Store`](crate::Store), which can be used with [`bdk`]'s
|
2023-03-10 13:40:27 +13:00
|
|
|
`Wallet` to persist wallet data into a flat file.
|
|
|
|
|
|
|
|
[`bdk`]: https://docs.rs/bdk/latest
|
2024-04-24 15:01:17 -10:00
|
|
|
[`bdk_persist`]: https://docs.rs/bdk_persist/latest
|