]> Untitled Git - bdk/commit
Move bdk_chain into the bdk repo :tada:
authorDaniela Brozzoni <danielabrozzoni@protonmail.com>
Wed, 1 Mar 2023 10:09:08 +0000 (11:09 +0100)
committerDaniela Brozzoni <danielabrozzoni@protonmail.com>
Thu, 2 Mar 2023 09:56:33 +0000 (10:56 +0100)
commit37dfa77d9d732b8a48019b8457051659004ab6d9
tree3aa509995d3d52ba5dfe165852990d06a742edeb
parentf2188f9dcd094e65fcb5649004ef19c7d4b7ec30
Move bdk_chain into the bdk repo :tada:

Original repository: https://github.com/LLFourn/bdk_core_staging/tree/250b4f1dcce10805adfb2f201901675eb6076554/bdk_chain

Co-authored-by: Steve Myers <steve@notmandatory.org>
Co-authored-by: 志宇 <hello@evanlinjin.me>
Co-authored-by: LLFourn <lloyd.fourn@gmail.com>
Co-authored-by: rajarshimaitra <rajarshi149@gmail.com>
Co-authored-by: LagginTimes <wzc110@gmail.com>
Co-authored-by: Steve Myers <steve@notmandatory.org>
Co-authored-by: Vladimir Fomene <vladimirfomene@gmail.com>
22 files changed:
Cargo.toml
crates/chain/Cargo.toml [new file with mode: 0644]
crates/chain/src/chain_data.rs [new file with mode: 0644]
crates/chain/src/chain_graph.rs [new file with mode: 0644]
crates/chain/src/descriptor_ext.rs [new file with mode: 0644]
crates/chain/src/example_utils.rs [new file with mode: 0644]
crates/chain/src/keychain.rs [new file with mode: 0644]
crates/chain/src/keychain/persist.rs [new file with mode: 0644]
crates/chain/src/keychain/tracker.rs [new file with mode: 0644]
crates/chain/src/keychain/txout_index.rs [new file with mode: 0644]
crates/chain/src/lib.rs [new file with mode: 0644]
crates/chain/src/sparse_chain.rs [new file with mode: 0644]
crates/chain/src/spk_txout_index.rs [new file with mode: 0644]
crates/chain/src/tx_data_traits.rs [new file with mode: 0644]
crates/chain/src/tx_graph.rs [new file with mode: 0644]
crates/chain/tests/common/mod.rs [new file with mode: 0644]
crates/chain/tests/test_chain_graph.rs [new file with mode: 0644]
crates/chain/tests/test_keychain_tracker.rs [new file with mode: 0644]
crates/chain/tests/test_keychain_txout_index.rs [new file with mode: 0644]
crates/chain/tests/test_sparse_chain.rs [new file with mode: 0644]
crates/chain/tests/test_spk_txout_index.rs [new file with mode: 0644]
crates/chain/tests/test_tx_graph.rs [new file with mode: 0644]