Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ jobs:

- name: Install dependencies
run: npm install
- name: Run Test
run: npm test
# - name: Run Test
# run: npm test
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# IoTeX Desktop Wallet

This repo used to be iotex explorer, the V1 version of iotexscan. The updated V2 iotexscan is hosted at iotexscan.io.
This repo used to be iotex explorer, the V1 version of iotexscan. The updated V2 iotexscan is hosted at iotexscan.io.

This repo is still active serving the development of IoTeX Desktop Wallet.

IoTeX Desktop wallet is an electron based desktop wallet. It connects to IoTeX network using IoTeX Antenna (IoTeX Chain SDK, https://github.com/iotexproject/iotex-antenna).
IoTeX Desktop wallet is an electron based desktop wallet. It connects to IoTeX network using IoTeX Antenna (IoTeX Chain SDK, https://github.com/iotexproject/iotex-antenna).

To use mobile wallet, you can download from ioPay website: https://iopay.me/

Expand All @@ -14,15 +14,12 @@ To use other wallets, you can refer to https://docs.iotex.io/get-started/iotex-w

https://github.com/iotexproject/iotex-desktop-wallet/releases

### Source Code
### Source Code

Check it out here [src/electron](src/electron)


### Join Chat

<a href="https://iotex.io/devdiscord" target="_blank">
<img src="https://github.com/iotexproject/halogrants/blob/880eea4af074b082a75608c7376bd7a8eaa1ac21/img/btn-discord.svg" height="36px">
</a>
</div>

6 changes: 3 additions & 3 deletions babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ module.exports = {
"@babel/preset-env",
{
targets: {
node: "current"
ie: "11"
}
}
],
["@babel/preset-react"],
["@babel/preset-typescript"]
],
plugins: ["@babel/plugin-proposal-class-properties"],
ignore: [/node_modules\/(?!onefx)/g]
plugins: ["@babel/plugin-proposal-class-properties"]
// ignore: [/node_modules\/(?!onefx)/g]
};
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"test": "npm run lint && npm run cover",
"check-coverage": "nyc check-coverage --lines 65 --functions 60 --Statements 65",
"ava": " cross-env TS_NODE_TRANSPILE_ONLY=true && cross-env NODE_ENV=test && ava",
"watch": "gulp watch",
"build": "gulp build",
"watch": "gulp watch --max-old-space-size=3000",
"build": "gulp build --max-old-space-size=3000",
"build-production": "cross-env NODE_ENV=production gulp build",
"lint": "pretty-quick --staged && tslint --fix --project tsconfig.json -t stylish && yamllint ./translations/*.yaml",
"postinstall": "npm run bp && npm run doc",
Expand Down
Loading