Small cli application for Stellar-based utilities.
Released under the terms of the MIT LICENSE.
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.
Generates a new Keypair and prints its Seed and Address
stellar-spaceship gen
orstellar-spaceship g
Parses a Stellar Seed and print its corresponding Address
stellar-spaceship parse <valid Stellar SEED>
stellar-spaceship p <valid Stellar SEED>
Derives a RANGE
of keypairs from a desired SEED
seed
: Sets theSEED
from which to derive fromrange
: Sets theRANGE
of key_pairs to derive (e.g. 0..9)
stellar-spaceship derive -seed <valid Stellar SEED> -range 0..9
stellar-spaceship d -s <valid Stellar SEED> -r 0..9