Skip to content

Commit

Permalink
publish version 2.1.0-RC.5.15 and 2.1.0-RC.5.16
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveMieskoski committed Jul 31, 2020
1 parent 93faf94 commit e888687
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### Release v2.1.0-RC.5.16
- Bump wrtc version to 0.4.6

### Release v2.1.0-RC.5.15
- Add isMewConnect and name properties to the provider instance (src/connectProvider/index.js)

### Release v2.1.0-RC.5.14
- Add infuraId as an option on the Provider constructor. If supplied, no parameters are required for the makeWeb3Provider method call.

Expand Down
8 changes: 4 additions & 4 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@myetherwallet/mewconnect-web-client",
"homepage": "https://github.com/myetherwallet/MEWconnect-web-client",
"version": "2.1.0-RC.5.14",
"version": "2.1.0-RC.5.16",
"main": "./dist/index.js",
"module": "./src/index.js",
"scripts": {
Expand Down Expand Up @@ -55,7 +55,7 @@
"web3-core-requestmanager": "1.2.4",
"web3-utils": "1.2.4",
"webrtc-adapter": "^6.4.3",
"wrtc": "^0.4.4",
"wrtc": "^0.4.6",
"ws": "^7.2.1",
"underscore": "latest"
},
Expand Down
2 changes: 2 additions & 0 deletions src/connectProvider/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,8 @@ export default class Integration extends EventEmitter {
state.web3.currentProvider.sendAsync = state.web3.currentProvider.send;
this.setupListeners();
web3Provider.enable = this.enable.bind(this);
web3Provider.isMewConnect = true;
web3Provider.name = 'MewConnect';
return web3Provider;
} catch (e) {
// eslint-disable-next-line
Expand Down

Large diffs are not rendered by default.

0 comments on commit e888687

Please sign in to comment.