diff --git a/Cargo.lock b/Cargo.lock index eb48b45..aa5d1e4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -75,20 +75,6 @@ dependencies = [ "unicode-normalization", ] -[[package]] -name = "bip44-eth-wallet-cli" -version = "0.1.0" -dependencies = [ - "anyhow", - "bip39", - "bitcoin", - "clap", - "colored", - "hex", - "secp256k1 0.27.0", - "tiny-keccak", -] - [[package]] name = "bitcoin" version = "0.29.2" @@ -442,6 +428,20 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" +[[package]] +name = "wallet-keygen" +version = "0.1.0" +dependencies = [ + "anyhow", + "bip39", + "bitcoin", + "clap", + "colored", + "hex", + "secp256k1 0.27.0", + "tiny-keccak", +] + [[package]] name = "wasi" version = "0.11.0+wasi-snapshot-preview1" diff --git a/Cargo.toml b/Cargo.toml index 827f0ec..00657c2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "bip44-eth-wallet-cli" +name = "wallet-keygen" version = "0.1.0" edition = "2021" authors = ["Parthipan Natkunam"] diff --git a/src/main.rs b/src/main.rs index 10a2f2a..89c526e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -12,7 +12,7 @@ use tiny_keccak::{Hasher, Keccak}; const ETH_COIN_TYPE: u32 = 60; #[derive(Parser, Debug)] -#[command(version, about = "BIP44 Wallet Data Generator for Ethereum Network")] +#[command(version, about = "BIP44 Compatible Wallet Keys Generator for Ethereum Network")] struct Args { /// The mnemonic phrase (12 or 24 words) #[arg(long)]