Commit 35dfc5e5 authored by smartcontracts's avatar smartcontracts Committed by GitHub

Merge pull request #2134 from ethereum-optimism/sc/sdk-peer-ethers

fix: have sdk use ethers peer dep
parents 849ec8cc 64e746b6
---
'@eth-optimism/sdk': patch
---
Have SDK include ethers as a peer dependency
...@@ -31,6 +31,8 @@ ...@@ -31,6 +31,8 @@
"url": "https://github.com/ethereum-optimism/optimism-monorepo.git" "url": "https://github.com/ethereum-optimism/optimism-monorepo.git"
}, },
"devDependencies": { "devDependencies": {
"@ethersproject/abstract-provider": "^5.5.1",
"@ethersproject/abstract-signer": "^5.5.0",
"@nomiclabs/hardhat-ethers": "^2.0.2", "@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1", "@nomiclabs/hardhat-waffle": "^2.0.1",
"@types/chai": "^4.2.18", "@types/chai": "^4.2.18",
...@@ -50,6 +52,7 @@ ...@@ -50,6 +52,7 @@
"eslint-plugin-react": "^7.24.0", "eslint-plugin-react": "^7.24.0",
"eslint-plugin-unicorn": "^32.0.1", "eslint-plugin-unicorn": "^32.0.1",
"ethereum-waffle": "^3.4.0", "ethereum-waffle": "^3.4.0",
"ethers": "^5.5.4",
"hardhat": "^2.3.0", "hardhat": "^2.3.0",
"lint-staged": "11.0.0", "lint-staged": "11.0.0",
"mocha": "^8.4.0", "mocha": "^8.4.0",
...@@ -61,10 +64,10 @@ ...@@ -61,10 +64,10 @@
"dependencies": { "dependencies": {
"@eth-optimism/contracts": "0.5.11", "@eth-optimism/contracts": "0.5.11",
"@eth-optimism/core-utils": "0.7.5", "@eth-optimism/core-utils": "0.7.5",
"@ethersproject/abstract-provider": "^5.5.1",
"@ethersproject/abstract-signer": "^5.5.0",
"ethers": "^5.5.4",
"merkletreejs": "^0.2.27", "merkletreejs": "^0.2.27",
"rlp": "^2.2.7" "rlp": "^2.2.7"
},
"peerDependencies": {
"ethers": "^5"
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment