Skip to content

Commit

Permalink
fix(registry-contract): pin ethers to 5.0.5
Browse files Browse the repository at this point in the history
beacuse of RN issues: ethers-io/ethers.js#993
  • Loading branch information
mnzaki committed Aug 25, 2020
1 parent 8c36ba0 commit ade8beb
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
4 changes: 2 additions & 2 deletions packages/jolo-did-registrar/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jolocom/jolo-did-registrar",
"version": "1.0.0-rc4",
"version": "1.0.0-rc5",
"main": "js",
"types": "js",
"license": "MIT",
Expand All @@ -13,7 +13,7 @@
"js"
],
"dependencies": {
"@jolocom/registry-contract": "1.0.0-rc4",
"@jolocom/registry-contract": "^1.0.0-rc5",
"detect-node": "^2.0.4",
"form-data": "^3.0.0",
"node-fetch": "^2.6.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/jolo-did-resolver/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jolocom/jolo-did-resolver",
"version": "1.0.0-rc4",
"version": "1.0.0-rc5",
"main": "js",
"types": "js",
"license": "MIT",
Expand All @@ -22,7 +22,7 @@
"typescript": "^3.7.2"
},
"dependencies": {
"@jolocom/registry-contract": "1.0.0-rc4",
"@jolocom/registry-contract": "^1.0.0-rc5",
"detect-node": "^2.0.4",
"node-fetch": "^2.6.0"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/registry-contract/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jolocom/registry-contract",
"version": "1.0.0-rc4",
"version": "1.0.0-rc5",
"description": "Basic contract for registering DID / DID Document mappings",
"license": "MIT",
"main": "js",
Expand All @@ -25,7 +25,7 @@
"Volker Schiewe"
],
"dependencies": {
"ethers": "^5.0.8"
"ethers": "5.0.5"
},
"devDependencies": {
"@types/jest": "^24.0.23",
Expand Down
9 changes: 4 additions & 5 deletions packages/registry-contract/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3430,17 +3430,16 @@ ethers@4.0.0-beta.3:
uuid "2.0.1"
xmlhttprequest "1.8.0"

ethers@^5.0.8:
version "5.0.8"
resolved "https://registry.yarnpkg.com/ethers/-/ethers-5.0.8.tgz#c13d0fdf5e66db8085e2036d3309ed2f8a17ed89"
integrity sha512-of/rPgJ7E3yyBADUv5A7Gtkd7EB8ta/T9NS5CCG9tj9cifnXcI3KIdYQ7d8AS+9vm38pR1g6S5I+Q/mRnlQZlg==
ethers@5.0.5:
version "5.0.5"
resolved "https://registry.yarnpkg.com/ethers/-/ethers-5.0.5.tgz#09b37c27d3b7d93c084af7ec4cad72ca8cfa5b7a"
integrity sha512-hkVI7fi16ADWTctYMEfamU39hoR+JpkdEI7LH8PC7Bhl0Dp8y8dqFJ948pSEuuPJI5NR/L4+V6y2Alvyu+zROw==
dependencies:
"@ethersproject/abi" "^5.0.0"
"@ethersproject/abstract-provider" "^5.0.0"
"@ethersproject/abstract-signer" "^5.0.0"
"@ethersproject/address" "^5.0.0"
"@ethersproject/base64" "^5.0.0"
"@ethersproject/basex" "^5.0.0"
"@ethersproject/bignumber" "^5.0.0"
"@ethersproject/bytes" "^5.0.0"
"@ethersproject/constants" "^5.0.0"
Expand Down

0 comments on commit ade8beb

Please sign in to comment.