Skip to content

Commit

Permalink
📌 Pin ethers (#680)
Browse files Browse the repository at this point in the history
  • Loading branch information
rzadp committed Mar 28, 2022
1 parent 8cf0e4d commit 6709e0b
Show file tree
Hide file tree
Showing 18 changed files with 80 additions and 39 deletions.
2 changes: 1 addition & 1 deletion examples/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"ethereum-waffle": "workspace:*",
"ethers": "^5.6.1",
"ethers": "5.6.1",
"mocha": "^7.1.2",
"ts-node": "^8.9.1",
"typescript": "^4.6.2",
Expand Down
2 changes: 1 addition & 1 deletion examples/called-on-contract/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"ethereum-waffle": "workspace:*",
"ethers": "^5.6.1",
"ethers": "5.6.1",
"mocha": "^7.1.2",
"ts-node": "^8.9.1",
"typescript": "^4.6.2",
Expand Down
2 changes: 1 addition & 1 deletion examples/change-balance/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"ethereum-waffle": "workspace:*",
"ethers": "^5.6.1",
"ethers": "5.6.1",
"mocha": "^7.1.2",
"ts-node": "^8.9.1",
"typescript": "^4.6.2"
Expand Down
2 changes: 1 addition & 1 deletion examples/dynamic-mocking-and-testing-calls/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"ethereum-waffle": "workspace:*",
"ethers": "^5.6.1",
"ethers": "5.6.1",
"mocha": "^7.1.2",
"ts-node": "^8.9.1",
"typescript": "^4.6.2"
Expand Down
2 changes: 1 addition & 1 deletion examples/ens/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"lint:fix": "eslint --fix '{src,test}/**/*.ts'"
},
"devDependencies": {
"ethers": "^5.6.1",
"ethers": "5.6.1",
"@types/chai": "^4.2.3",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^5.15.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/mock-contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"lint:fix": "eslint --fix '{src,test}/**/*.ts'"
},
"devDependencies": {
"ethers": "^5.6.1",
"ethers": "5.6.1",
"@types/chai": "^4.2.3",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^5.15.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/typechain-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"ethereum-waffle": "workspace:*",
"ethers": "^5.6.1",
"ethers": "5.6.1",
"mocha": "^7.1.2",
"solc": "^0.8.13",
"ts-node": "^8.9.1",
Expand Down
48 changes: 34 additions & 14 deletions pnpm-lock.yaml

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

11 changes: 7 additions & 4 deletions waffle-chai/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ethereum-waffle/chai",
"description": "A sweet set of chai matchers for your blockchain testing needs.",
"version": "4.0.0-alpha.6",
"version": "4.0.0-alpha.7",
"author": "Marek Kirejczyk <account@ethworks.io> (http://ethworks.io)",
"repository": "git@github.com:EthWorks/Waffle.git",
"private": false,
Expand Down Expand Up @@ -38,8 +38,11 @@
"node": ">=10.0"
},
"dependencies": {
"ethers": "^5.6.1",
"@ethereum-waffle/provider": "workspace:*"
"@ethereum-waffle/provider": "workspace:*",
"debug": "^4.3.4",
"ethers": "5.6.1"
},
"devDependencies": {}
"devDependencies": {
"@types/debug": "^4.1.7"
}
}
5 changes: 5 additions & 0 deletions waffle-chai/src/log.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import debug from 'debug';

const log = debug('waffle:waffle-chai');

export {log};
4 changes: 2 additions & 2 deletions waffle-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ethereum-waffle",
"description": "Sweeter, faster and simpler than truffle.",
"version": "4.0.0-alpha.6",
"version": "4.0.0-alpha.7",
"author": "Marek Kirejczyk <account@ethworks.io> (http://ethworks.io)",
"repository": "git@github.com:EthWorks/Waffle.git",
"private": false,
Expand Down Expand Up @@ -49,7 +49,7 @@
"@ethereum-waffle/compiler": "workspace:*",
"@ethereum-waffle/mock-contract": "workspace:*",
"@ethereum-waffle/provider": "workspace:*",
"ethers": "^5.6.1",
"ethers": "5.6.1",
"solc": "^0.6.3",
"typechain": "^8.0.0"
},
Expand Down
6 changes: 3 additions & 3 deletions waffle-compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ethereum-waffle/compiler",
"description": "Compile solidity without the hassle.",
"version": "4.0.0-alpha.6",
"version": "4.0.0-alpha.7",
"author": "Marek Kirejczyk <account@ethworks.io> (http://ethworks.io)",
"repository": "git@github.com:EthWorks/Waffle.git",
"private": false,
Expand Down Expand Up @@ -54,14 +54,14 @@
"@ethereum-waffle/provider": "workspace:*",
"@openzeppelin/contracts": "3.0.1",
"@types/fs-extra": "^9.0.4",
"ethers": "^5.6.1",
"ethers": "5.6.1",
"fs-extra": "^9.0.1",
"openzeppelin-solidity": "2.3.0",
"solc": "^0.6.3",
"typechain": "^8.0.0"
},
"peerDependencies": {
"ethers": "^5.6.1",
"ethers": "5.6.1",
"solc": "*",
"typechain": "^8.0.0"
}
Expand Down
4 changes: 2 additions & 2 deletions waffle-e2e/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ethereum-waffle/e2e",
"version": "4.0.0-alpha.6",
"version": "4.0.0-alpha.7",
"private": true,
"main": "index.js",
"license": "MIT",
Expand All @@ -15,7 +15,7 @@
"@ethereum-waffle/chai": "workspace:*",
"@ethereum-waffle/compiler": "workspace:*",
"@ethereum-waffle/provider": "workspace:*",
"ethers": "^5.6.1",
"ethers": "5.6.1",
"solc": "^0.6.3",
"typechain": "^8.0.0"
}
Expand Down
4 changes: 2 additions & 2 deletions waffle-ens/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ethereum-waffle/ens",
"version": "4.0.0-alpha.6",
"version": "4.0.0-alpha.7",
"description": "A mock ens implementation for testing.",
"repository": "git@github.com:EthWorks/Waffle.git",
"author": "Marek Kirejczyk <account@ethworks.io> (http://ethworks.io)",
Expand Down Expand Up @@ -41,7 +41,7 @@
"dependencies": {
"@ensdomains/ens": "^0.4.4",
"@ensdomains/resolver": "^0.2.4",
"ethers": "^5.6.1"
"ethers": "5.6.1"
},
"devDependencies": {
"ganache": "^7.0.3"
Expand Down
4 changes: 2 additions & 2 deletions waffle-mock-contract/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ethereum-waffle/mock-contract",
"description": "Mock smart contracts in a smart way.",
"version": "4.0.0-alpha.6",
"version": "4.0.0-alpha.7",
"author": "Marek Kirejczyk <account@ethworks.io> (http://ethworks.io)",
"repository": "git@github.com:EthWorks/Waffle.git",
"private": false,
Expand Down Expand Up @@ -44,7 +44,7 @@
},
"dependencies": {
"@ethersproject/abi": "^5.6.0",
"ethers": "^5.6.1"
"ethers": "5.6.1"
},
"devDependencies": {
"@ethereum-waffle/chai": "workspace:*",
Expand Down
9 changes: 6 additions & 3 deletions waffle-provider/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ethereum-waffle/provider",
"description": "A mock provider for your blockchain testing needs.",
"version": "4.0.0-alpha.6",
"version": "4.0.0-alpha.7",
"author": "Marek Kirejczyk <account@ethworks.io> (http://ethworks.io)",
"repository": "git@github.com:EthWorks/Waffle.git",
"private": false,
Expand Down Expand Up @@ -40,11 +40,14 @@
"dependencies": {
"@ethereum-waffle/ens": "workspace:*",
"@ganache/ethereum-options": "0.1.4",
"ethers": "^5.6.1",
"debug": "^4.3.4",
"ethers": "5.6.1",
"ganache": "7.0.3"
},
"resolutions": {
"web3": "1.2.4"
},
"devDependencies": {}
"devDependencies": {
"@types/debug": "^4.1.7"
}
}
5 changes: 5 additions & 0 deletions waffle-provider/src/log.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import debug from 'debug';

const log = debug('waffle:waffle-provider');

export {log};

0 comments on commit 6709e0b

Please sign in to comment.