Skip to content

Commit a9dba88

Browse files
chore: Move pallas-wallet into CShell
1 parent c209ff6 commit a9dba88

File tree

4 files changed

+441
-13
lines changed

4 files changed

+441
-13
lines changed

Cargo.lock

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,20 @@ keywords = ["cardano", "blockchain", "wallet", "cardano"]
1717
categories = ["command-line-utilities", "blockchain", "cardano", "wallet"]
1818

1919
[dependencies]
20+
bech32 = "0.9.1"
21+
bip39 = { version = "2.0.0", features = ["rand_core"] }
2022
chrono = { version = "0.4.39", features = ["serde"] }
2123
clap = { version = "4.5.29", features = ["derive", "env"] }
2224
comfy-table = "7.1.1"
25+
cryptoxide = "0.4.4"
26+
ed25519-bip32 = "0.4.1"
2327
hex = { version = "0.4.3", features = ["serde"] }
2428
inquire = "0.7.4"
2529
miette = { version = "7.2.0", features = ["fancy"] }
2630
pallas = { version = "0.32.0", features = ["unstable", "pallas-wallet"] }
2731
pallas-wallet = "0.32.0"
2832
prost = "0.13.5"
33+
rand = "0.8.5"
2934
rand_core = {version = "0.6.4"}
3035
serde = { version = "1.0.217", features = ["derive"] }
3136
serde_json = "1.0.138"

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ mod store;
88
mod transaction;
99
mod types;
1010
mod utils;
11-
mod wallet;
11+
pub mod wallet;
1212

1313
#[derive(Parser)]
1414
#[command(author, version, about, long_about = None)]

0 commit comments

Comments
 (0)