From 8ba75a852442eb09e4863b0fc9485a88b4eadacc Mon Sep 17 00:00:00 2001 From: Mujeebullah Kalwar Date: Wed, 8 Jun 2022 15:45:03 +0500 Subject: [PATCH 1/2] Updates on `README.md` Format --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e5d6c691bac..26505ee8096 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -

- web3.js +

+ web3.js

# web3.js - Ethereum JavaScript API @@ -56,10 +56,10 @@ UNPKG: ```js // In Node.js const Web3 = require('web3'); - -let web3 = new Web3('ws://localhost:8546'); +const web3 = new Web3('ws://localhost:8546'); console.log(web3); -> { +// Output +{ eth: ... , shh: ... , utils: ..., @@ -227,7 +227,7 @@ global.process = { If you are using Ionic/Angular at a version >5 you may run into a build error in which modules `crypto` and `stream` are `undefined` -a work around for this is to go into your node-modules and at `/angular-cli-files/models/webpack-configs/browser.js` change the `node: false` to `node: {crypto: true, stream: true}` as mentioned [here](https://github.com/ethereum/web3.js/issues/2260#issuecomment-458519127) +a workaround for this is to go into your node-modules and at `/angular-cli-files/models/webpack-configs/browser.js` change the `node: false` to `node: {crypto: true, stream: true}` as mentioned [here](https://github.com/ethereum/web3.js/issues/2260#issuecomment-458519127) Another variation of this problem was an [issue opned on angular-cli](https://github.com/angular/angular-cli/issues/1548) From a626b326cbe23cb2d7e93f604a1e971e2f451c11 Mon Sep 17 00:00:00 2001 From: Mujeebullah Kalwar Date: Wed, 22 Jun 2022 23:52:14 +0500 Subject: [PATCH 2/2] Update CHANGELOG.md Added required entry in `CHANGELOG.md` file --- CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b8ad41cf6d..ee27055b4d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -563,4 +563,7 @@ Released with 1.0.0-beta.37 code base. ## [Unreleased] -## [1.7.5] \ No newline at end of file +## [1.7.5] + +### Added +- Improve README.md & Fix typos (#4848)