Skip to content

Stoxum/stoxum-validator-keys-tool

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

validator-keys-tool

CircleCI Build Status Build status codecov

stoxumd validator key generation tool

Table of contents

Dependencies

stoxum-libpp submodule

This includes a git submodule to the stoxum-libpp source code, which is not cloned by default. To get the stoxum-libpp source, either clone this repository using

$ git clone --recursive <location>

or after cloning, run the following commands

$ git submodule update --init --recursive

Other dependencies

Build and run

For linux and other unix-like OSes, run the following commands:

$ cd ${YOUR_VALIDATOR_KEYS_TOOL_DIRECTORY}
$ mkdir -p build/gcc.debug
$ cd build/gcc.debug
$ cmake ../..
$ cmake --build .
$ ./validator-keys

For 64-bit Windows, open a MSBuild Command Prompt for Visual Studio and run the following commands:

> cd %YOUR_VALIDATOR_KEYS_TOOL_DIRECTORY%
> mkdir build
> cd build
> cmake -G"Visual Studio 14 2015 Win64" ..
> cmake --build .
> .\Debug\validator-keys.exe

32-bit Windows builds are not officially supported.

Guide

Validator Keys Tool Guide

About

Generate master and ephemeral rippled validator keys

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 93.9%
  • CMake 6.1%