Skip to content

VISCHub/KyberWallet

 
 

Repository files navigation

KyberNetwork inhouse web wallet

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.

Live deployment

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.

Install dependencies

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

Run in development mode (kovan chain)

npm run dev

Or

npm run kovan

Once it is running, user can access to the wallet by going to http://localhost:3000

For server side to cach rate and history of exchange

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

Build production app

npm run build-mainnet

Code structure

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.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 62.8%
  • CSS 36.0%
  • HTML 1.0%
  • CoffeeScript 0.1%
  • Ruby 0.1%
  • PowerShell 0.0%