From fd45e83651793b6ce80d8979a1af1134e19b3ec6 Mon Sep 17 00:00:00 2001 From: Greg Fitzgerald Date: Wed, 12 Dec 2018 13:39:06 -0700 Subject: [PATCH] Add web wallet example --- book/src/SUMMARY.md | 1 + book/src/webwallet.md | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 book/src/webwallet.md diff --git a/book/src/SUMMARY.md b/book/src/SUMMARY.md index 7e7b4d9dc..6cd805e0f 100644 --- a/book/src/SUMMARY.md +++ b/book/src/SUMMARY.md @@ -5,6 +5,7 @@ - [Terminology](terminology.md) - [Getting Started](getting-started.md) + - [Example: Web Wallet](webwallet.md) - [Programming Model](programs.md) - [Example: Tic-Tac-Toe](tictactoe.md) diff --git a/book/src/webwallet.md b/book/src/webwallet.md new file mode 100644 index 000000000..34182b664 --- /dev/null +++ b/book/src/webwallet.md @@ -0,0 +1,13 @@ +# Example app: Web Wallet + +## Build and run a web wallet locally + +First fetch the example code: + +```sh +$ git clone https://github.com/solana-labs/example-webwallet.git +$ cd example-webwallet +``` + +Next, follow the steps in the git repository's +[README](https://github.com/solana-labs/example-webwallet/blob/master/README.md).