2023-03-10 13:40:27 +13:00
|
|
|
# BDK File Store
|
|
|
|
|
|
|
|
This is a simple append-only flat file implementation of
|
2023-05-24 11:37:26 +08:00
|
|
|
[`Persist`](`bdk_chain::Persist`).
|
2023-03-10 13:40:27 +13:00
|
|
|
|
2023-05-24 11:37:26 +08: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
|
|
|
|
[`bdk_chain`]: https://docs.rs/bdk_chain/latest
|