Kyber web wallet helps users to interact directly with KyberNetwork in order to exchange their ethers and tokens. You can see a walkthrough on Youtube here.
We deployed the Testnet version of the wallet at https://ropsten.kyber.network/. Any other websites that claims to be Kyber Wallet is fake and might contain malicious scripts to scam or steal your assets.
The wallet is developed on Nodejs
, we assume users have it installed in their environment. We suggest to use Node v7.3.0
npm install
npm install [email protected]
We have the second install command due to web3 is unstable now
npm run dev
Or
npm run kovan
Once it is running, user can access to the wallet by going to http://localhost:3000
npm run server --chain=[option_chain] --port=[option_port] --init=[option_delete_db]
Option_chain default is kovan, option_port default is 3001, option_delete_db default is false .
After running server, please edit history_enpoint in /env/config-env/kovan.json. For example: http:localhost:3001
You can also run cached server with docker
docker build . -t kyber/server
docker run -p 3001:3001 kyber/server
npm run build-mainnet
This wallet is using Reactjs
and Redux
and following their naming conventions. Source code of the wallet is in src
. Most of the logic is in src/js
.