Skip to content

Commit 7d4d2ae

Browse files
authored
fix: readme commands
1 parent 9ffad55 commit 7d4d2ae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ Add this to your `Cargo.toml`:
3434

3535
```toml
3636
[dependencies]
37-
merkle-sum-sparse-merkle-tree = "0.6.0"
37+
mssmt = "0.6.0"
3838
```
3939

4040
Basic example using regular tree:
4141

4242
```rust
43-
use merkle_sum_sparse_merkle_tree::{MSSMT, MemoryDb, Leaf};
43+
use mssmt::{MSSMT, MemoryDb, Leaf};
4444
use sha2::Sha256;
4545

4646
// Create a new tree with 32-byte hashes using SHA256
@@ -60,7 +60,7 @@ proof.verify_merkle_proof(&[1; 32], leaf, root.hash()).unwrap();
6060
Example using compact tree for better memory efficiency:
6161

6262
```rust
63-
use merkle_sum_sparse_merkle_tree::{CompactMSSMT, MemoryDb, Leaf};
63+
use mssmt::{CompactMSSMT, MemoryDb, Leaf};
6464
use sha2::Sha256;
6565

6666
// Create a new compact tree

0 commit comments

Comments
 (0)