Iroha Wallet is an example wallet application for Iroha.
Iroha Wallet has following features:
- Login with your Iroha account.
- See your assets and transactions.
- Transfer your assets to another Iroha account.
First, you need to have an Iroha instance working. You can read how to launch it on Iroha's docs. In this guide we assume the local Iroha instance working at localhost:50051
.
Also we provide docker that you can easily run and use.
docker-compose -f docker/docker-compose.yaml up
Then, populate the database by our example script as below. The script will create new account alice@test
and several new assets. Note that there already exist admin@test
. Their keys are in scripts/
.
Note that you need to complete "Installation" steps in advance if you want to use the example script.
% node scripts/setup.js
Install npm packages.
# install dependencies
yarn install
To run application
yarn serve