- Many people do not like to use other clients, they only trust official client.
- The official client account-viewer is not friendly use. And it does not support Chinese language.
- Keep secret key local can make it safe.
- The file encrypt/decrypt part can refer the ripple desktop client.
- Some page layout we refer stellarterm, it is a good web client. We only refer some HTML and CSS.
- We use nwjs to create the client. All stellar relate logic is written by our own.
- Run
npm install
- You need to create a softlink under the src folder. You can run
ln -s ../node_modules ./node_modules
- Run
nw src
or Runnode build-nw.js
- 官方一直不推出好用的钱包,所以让我们自己创造一个。
- 目前各渠道的钱包不太好用,而且基本没中文,广大**人民很不满。
- 很多人注重安全。离线钱包密钥加密存电脑,本地签名后提交易,不能更安全了。
- 文件加解密参考了 ripple desktop client。
- 有一些界面参考了 stellarterm,不过我们也就用了一些纯前端的HTML和CSS。
- 我们使用 nwjs 来创建钱包。业务逻辑都是自己写的,安全第一。
- 安装各种依赖包
npm install
- 你还要建一个文件夹的软链接,这样src文件夹也能看到外面的node_modules, 在src下面跑一下
ln -s ../node_modules ./node_modules
- 开发可以在安装好nwjs后运行
nw src
,编译就直接跑node build-nw.js