Skip to content

Latest commit

 

History

History
58 lines (44 loc) · 1.2 KB

setup.md

File metadata and controls

58 lines (44 loc) · 1.2 KB

Setting up wallet713

Option 1: Using a pre-compiled binary

Requirements

  • OpenSSL.
    • macOS with Homebrew:
      $ brew install openssl # you need to install version 1.1 of openssl for version 1.0.1 or newer of wallet713
      
    • Linux:
      $ sudo apt-get install openssl
      

Download binary

From releases section.

Run

Unzip and then from the same directory run:

$ ./wallet713

Option 2: Building your own binary

Requirements

wallet713 has the same requirements as Grin.

Installation

$ git clone https://github.com/vault713/wallet713
$ cd wallet713
$ cargo build --release

And then to run:

$ cd target/release
$ ./wallet713

If you'd like to run against floonet, use:

$ cd target/release
$ ./wallet713 --floonet

Option 3: Build and run via docker

$ docker build -t my/wallet713 .
$ docker run --rm --name wallet713 -ti -v $PWD/data:/root/.wallet713 my/wallet713

You can use ctrl p q to detach and docker attach wallet713 to reattach to the running container.