From f06c0a03c5a550d7a88e1d275bf3f080597a6818 Mon Sep 17 00:00:00 2001 From: Victor Baranov Date: Tue, 2 Jul 2019 19:08:43 +0300 Subject: [PATCH 1/3] Replace Goerli RPC --- package-lock.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index cbed0b0c4..3228e74ca 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9259,9 +9259,9 @@ } }, "eth-net-props": { - "version": "1.0.23", - "resolved": "https://registry.npmjs.org/eth-net-props/-/eth-net-props-1.0.23.tgz", - "integrity": "sha512-hKed33ejnow+zleH8IVDWGwFrNnld5lKJ9D6trM9H7NtFen8j9n4q1ihK7pod0/0nxfQe0axnqrzb5gvbmvT+A==", + "version": "1.0.24", + "resolved": "https://registry.npmjs.org/eth-net-props/-/eth-net-props-1.0.24.tgz", + "integrity": "sha512-wxwO2QftU7slA3Dlez0k700ODlVJ2uJ9YNWPkGHDIc1t9R7dM/3uGaxcTBvK40a6Tu7Fagp5ydyX7PJFgLuVGA==", "requires": { "chai": "^4.1.2" } diff --git a/package.json b/package.json index 61ba175c0..09317ee62 100644 --- a/package.json +++ b/package.json @@ -117,7 +117,7 @@ "eth-keychain-controller": "github:vbaranov/KeyringController#simple-address", "eth-ledger-bridge-keyring": "github:vbaranov/eth-ledger-bridge-keyring#0.1.0-clear-accounts-flag", "eth-method-registry": "^1.0.0", - "eth-net-props": "^1.0.23", + "eth-net-props": "^1.0.24", "eth-phishing-detect": "^1.1.4", "eth-query": "^2.1.2", "eth-sig-util": "^2.2.0", From 0535585458829f0605e649199aaff39ca8ec2a3b Mon Sep 17 00:00:00 2001 From: Victor Baranov Date: Wed, 3 Jul 2019 18:09:02 +0300 Subject: [PATCH 2/3] Version bump --- CHANGELOG.md | 8 ++++++++ app/manifest.json | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 365fc1633..057a93ac6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ ## Current Master +## 4.11.8 Wed Jul 03 2019 + +- [#305](https://github.com/poanetwork/nifty-wallet/pull/305): (Feature) gas price for RSK from the last block +- [#298](https://github.com/poanetwork/nifty-wallet/pull/298): (Feature) isNiftyWallet property added +- [#299](https://github.com/poanetwork/nifty-wallet/pull/299): (Upgrade) Node 10 support +- [#306](https://github.com/poanetwork/nifty-wallet/pull/306): (Fix) Replace Goerli RPC endpoint +- [#302](https://github.com/poanetwork/nifty-wallet/pull/302): (Fix) Return scrolls in dropdowns + ## 4.11.7 Tue Jun 25 2019 - [#294](https://github.com/poanetwork/nifty-wallet/pull/294): Address checksum for RSK chains. RSKIP60 diff --git a/app/manifest.json b/app/manifest.json index 20402c2f6..f99fcbbb7 100644 --- a/app/manifest.json +++ b/app/manifest.json @@ -1,7 +1,7 @@ { "name": "__MSG_appName__", "short_name": "__MSG_appName__", - "version": "4.11.7", + "version": "4.11.8", "manifest_version": 2, "author": "POA Network", "description": "__MSG_appDescription__", From 5a1aff93154cd8f610d6a0545c483020050e9f6f Mon Sep 17 00:00:00 2001 From: Victor Baranov Date: Wed, 3 Jul 2019 18:16:06 +0300 Subject: [PATCH 3/3] Update README.md Upgrade Nodejs, npm versions --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ee2952166..787c8d959 100644 --- a/README.md +++ b/README.md @@ -7,9 +7,9 @@ ## Building locally - - Install [Node.js](https://nodejs.org/en/) version 8.11.3 and npm version 6.1.0 + - Install [Node.js](https://nodejs.org/en/) version 10.16.0 and npm version 6.9.0 - If you are using [nvm](https://github.com/creationix/nvm#installation) (recommended) running `nvm use` will automatically choose the right node version for you. - - Select npm 6.1.0: ```npm install -g npm@6.1.0``` + - Select npm 6.9.0: ```npm install -g npm@6.9.0``` - Install dependencies: ```npm install``` - Install gulp globally with `npm install -g gulp-cli`. - Build the project to the `./dist/` folder with `gulp build`.