Skip to content

Commit

Permalink
Fix certs expired (#1999)
Browse files Browse the repository at this point in the history
* fix build error

* fix websocket certs expired

* add packaage-lock

* fix build

* update

* remove workflow test

* update

* update version name

---------

Co-authored-by: zongzheng <304389312@qq.com>
  • Loading branch information
chen-yijiang and zongzheng committed Nov 28, 2023
1 parent 174671e commit a22afd1
Show file tree
Hide file tree
Showing 10 changed files with 16,293 additions and 21 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
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
@@ -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
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
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

0 comments on commit a22afd1

Please sign in to comment.