Live Demo: Currently unavailable
Denarius Node Wallet - A NodeJS/MongoDB powered denariusd Web Wallet.
Send and Receive Funds, Create new addresses, View Transactions, Edit your account, and more!
Swap between your DNR Balance in USD and BTC prices calculated from http://coinmarketcap.com/currencies/denarius-dnr/
2FA Authentication is included as well as QR Codes for addresses and 2FA!
-More features will be coming!
xcode-select --install
)sudo apt-get install build-essential
sudo dnf groupinstall "Development Tools"
sudo zypper install --type pattern devel_basis
The easiest way to get started is to clone the repository:
# Get the latest snapshot
git clone --depth=1 https://github.com/carsenk/denariusnodewallet.git denariuswallet
# Change directory
cd denariuswallet
# Install NPM dependencies
npm install
# Or, if you prefer to use `yarn` instead of `npm`
yarn install
# Then simply start your app
node app.js
# Or, if you are using nodemon
nodemon app.js
Note: I highly recommend installing Nodemon.
It watches for any changes in your node.js app and automatically restarts the
server. Once installed, instead of node app.js
use nodemon app.js
. It will
save you a lot of time in the long run, because you won't need to manually
restart the server each time you make a small change in code. To install, run
sudo npm install -g nodemon
.
You must have a Denarius daemon running on a local server or remote server (highly recommend using SSL)
Your configuration options should be set within your .env file, you can check the .env.example for examples
In your denarius.conf file (The Denariusd/QT configuration file) add the following to allow use of the web wallet.
enableaccounts=1
staking=0
server=1
rpcuser=yourusername
rpcpassword=yourpassword
The MIT License (MIT)
Copyright (c) 2017 Carsen Klock
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.