Ever wanted to access your crypto funds quickly but had to wait for hours while the blockchain downloads first? The Waves Wallet connects to public Waves nodes to retrieve up-to-date blockchain information.
We provide all the cryptographic tools required to create addresses, sign and verify transactions for the Waves blockchain. The Waves Wallet reads all the data from the public nodes, creates the transaction directly in the browser, and simply broadcasts it in a finished state.
During registration, the most important piece of information is the wallet SEED. Save it somewhere safe: write it down on a piece of paper, or store it in different media.
Using the SEED you can always import your account again or change your password. The SEED will be AES-encrypted with a password of your choice, which you can enter to access your account at the log-in screen. Every transaction will be signed locally with JavaScript and transmitted to the node without revealing your wallet seed or private keys.
The Client sources are currently setup for TESTNET. If you want to run on MAINNET please change the according settings in js/app.js. Check for the possible values Gruntfile.js.
Our project uses a javascript development environment that needs to be set up before you try to open src/index.html in your browser.
- You need to install
yarn
. - You need to install bower. Here is a good link to start with.
Since you have your environment set up you can clone the repository and run in the project root directory
yarn
Since we are reorganizing the building process, there is something more you need to have a fully working Waves Wallet:
npm install -g grunt
yarn build
yarn start:electron:mainnet
Here in the Releases page you can find all Waves Wallet packages available for download. For mainnet Client please download waves-lite-client-mainnet-vx.y.z.zip. For testnet use waves-lite-client-testnet-vx.y.z.zip.
To run the Waves Wallet downloaded as a regular zip archive, follow these steps:
- Download and extract zip package to some directory
- Navigate to that directory
- Open index.html in your browser
- Start using Waves Wallet!
Please keep in mind that the Waves Wallet uses your browser’s local storage to persist your accounts’ data in a secure way. The browser’s local storage is bound to the url of the page, so in this case it will be the path to index.html. This means that if you download the next Waves Wallet version, please ensure you unpack the archive in the previous version’s directory. Otherwise, the path to the index.html will change and you won’t be able to see your stored accounts.
We do not recommend using online versions of the wallets due to security reasons. The safest way is to use the desktop binaries deployed on Github, because we can work with their administrators to address potential scams.
Yes, you can! The current Waves Wallet version tries to access the required node only when you log in to your account. All you need to do is to download the Waves Wallet and run it in a safe environment (i.e. on a machine without access to the internet).
Yes, but you will have to modify some javascript code. Follow these simple steps:
- Open the js/waves-lite-client-mainnet-vx.y.z.js in your favourite text editor
- Search for the string AngularApplicationConfig
- Find where the NODE_ADDRESS is set
- Change the address to the address of your node. (Something like http://127.0.0.1:6869 or http://localhost:6869)
Yes, we're gonna make this much easier in the future versions...
Package cairo was not found in the pkg-config search path.
Perhaps you should add the directory containing `cairo.pc'
to the PKG_CONFIG_PATH environment variable
No package 'cairo' found
Solution:
sudo apt-get install libcairo2-dev libjpeg-dev libgif-dev