seedelf-cli 0.4.5

Seedelf: A Cardano Stealth Wallet
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use blstrs::Scalar;
use colored::Colorize;
use seedelf_cli::setup;

pub fn run() {
    println!(
        "\n{}\n",
        "Exposing Your Secret Key, Use With Caution!".bright_red()
    );
    println!(
        "\n{}\n",
        "This command will display your secret key. Press Crtl-C To Exit.".bright_yellow()
    );
    let scalar: Scalar = setup::load_wallet();
    println!("\n{}\n", scalar);
}