feat: introduce wallet crate for ed25519-bip32 key management (#342)

Co-authored-by: Santiago Carmuega <santiago@carmuega.me>
This commit is contained in:
Harper 2023-12-03 14:31:27 +00:00 committed by GitHub
parent f9ea2c4790
commit 90c66047c5
6 changed files with 265 additions and 2 deletions

19
pallas-wallet/Cargo.toml Normal file
View file

@ -0,0 +1,19 @@
[package]
name = "pallas-wallet"
description = "Cardano wallet utilities such as key generation"
version = "0.20.0"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
license = "Apache-2.0"
readme = "README.md"
authors = ["Santiago Carmuega <santiago@carmuega.me>"]
[dependencies]
thiserror = "1.0.49"
pallas-crypto = { version = "=0.20.0", path = "../pallas-crypto" }
ed25519-bip32 = "0.4.1"
rand = "0.8.5"
bip39 = { version = "2.0.0", features = ["rand_core"] }
cryptoxide = "0.4.4"
bech32 = "0.9.1"