Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 1.33 KB

README.md

File metadata and controls

50 lines (33 loc) · 1.33 KB

stellar-spaceship

Go Report Card

Small cli application for Stellar-based utilities.

Released under the terms of the MIT LICENSE.

Installation

To install, just run

go get github.com/edunuzzi/stellar-spaceship

Alternatively, you can download a compiled binary for your OS and paste it in a directory included in your $PATH.

Commands

gen | g

Description

Generates a new Keypair and prints its Seed and Address

Usage

  • stellar-spaceship gen or
  • stellar-spaceship g

parse | p

Description

Parses a Stellar Seed and print its corresponding Address

Usage

  • stellar-spaceship parse <valid Stellar SEED>
  • stellar-spaceship p <valid Stellar SEED>

derive | d

Description

Derives a RANGE of keypairs from a desired SEED

Flags

  • seed: Sets the SEED from which to derive from
  • range: Sets the RANGE of key_pairs to derive (e.g. 0..9)

Usage

  • stellar-spaceship derive -seed <valid Stellar SEED> -range 0..9
  • stellar-spaceship d -s <valid Stellar SEED> -r 0..9