An open API service indexing awesome lists of open source software.

https://github.com/cardano-forge/cardano-wallet-cli

Simple CLI tool to generate mnemonic (BIP39) or BIP32 wallets and restore from mnemonic on cardano
https://github.com/cardano-forge/cardano-wallet-cli

Last synced: over 1 year ago
JSON representation

Simple CLI tool to generate mnemonic (BIP39) or BIP32 wallets and restore from mnemonic on cardano

Awesome Lists containing this project

README

          

# Cardano Wallet CLI

## Goal

Simple utility CLI to create cardano wallets.
This tool allows to quickly generate wallets, the goal is to streamline our testbench and have tools to automate most of the process.

## Usage

**Create binary**

```bash
deno compile --allow-read --allow-write --output cardano-wallet src/mod.ts
```

**Creating enterprise Wallet (No staking)**

> Limited wallet, no staking, unable to import in a wallet extension.

```bash
./cardano-wallet --name=customer
./cardano-wallet --name=policy-cip68
./cardano-wallet --name=meta-manager
```

**Creating mnemonic Wallet (24 words seed phrase) (With staking)**

> Allows to get the key to sign without human interaction AND imports the mnenomic in a wallet extension.

```bash
./cardano-wallet --name=wallet-1 --mnemonic
```

**12 words seed phrase**

```bash
./cardano-wallet --name=wallet-1 --mnemonic --bits=128
```

**Restoring mnemonic Wallet (With staking)**

*Tested with 12 and 24 words mnemonic*

```bash
./cardano-wallet --name=wallet-2 --mnemonic --seed="beef swamp swing original fresh acquire virus hub essay welcome nut spray"
```