From 29599b6645b897b0a13693425f3c770cf90d412a Mon Sep 17 00:00:00 2001 From: jahway603 Date: Wed, 1 Mar 2023 12:55:28 -0500 Subject: [PATCH] let there be a working SDP! --- README.md | 3 ++- build.sh | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 80f6ba8..37520e0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # SilentDragonPaper -SilentDragonPaper is a paper wallet generator that can be compiled and run completely offline. +SilentDragonPaper is a paper wallet generator that can be run completely offline. You can run it on an air-gapped computer to generate your shielded z-addresses, which will allow you to keep your keys completely offline. @@ -39,6 +39,7 @@ SilentDragonPaper is built with Rust. To compile from source, you must [install ``` cd SilentDragonPaper/cli +cargo vendor cargo build --release --offline ``` diff --git a/build.sh b/build.sh index a974e2d..409af84 100755 --- a/build.sh +++ b/build.sh @@ -38,4 +38,5 @@ PATH=$(pwd)/../build/bin/:$PATH echo PATH=$PATH cargo --version rustc --version +../build/bin/cargo vendor ../build/bin/cargo build --verbose --release --offline