Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔁 Bump ethers From 6.0.8 to 6.1.0 #90

Merged
merged 1 commit into from
Mar 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
🔁 bump ethers
Signed-off-by: Pascal Marco Caversaccio <pascal.caversaccio@hotmail.ch>
  • Loading branch information
pcaversaccio committed Mar 7, 2023
commit fe69adcf696a011ae766cde04676e58416892707
2 changes: 1 addition & 1 deletion lib/create-util
Submodule create-util updated 2 files
+104 −104 package-lock.json
+4 −4 package.json
2 changes: 1 addition & 1 deletion lib/openzeppelin-contracts
Submodule openzeppelin-contracts updated 36 files
+53 −0 .github/workflows/formal-verification.yml
+1 −0 certora/.gitignore
+44 −14 certora/Makefile
+0 −101 certora/applyHarness.patch
+7 −0 certora/harnesses/AccessControlHarness.sol
+36 −0 certora/harnesses/ERC20FlashMintHarness.sol
+18 −0 certora/harnesses/ERC20PermitHarness.sol
+0 −28 certora/harnesses/ERC20VotesHarness.sol
+13 −0 certora/harnesses/ERC3156FlashBorrowerHarness.sol
+0 −150 certora/harnesses/WizardControlFirstPriority.sol
+0 −141 certora/harnesses/WizardFirstTry.sol
+0 −2 certora/munged/.gitignore
+109 −0 certora/run.js
+0 −10 certora/scripts/Governor.sh
+0 −10 certora/scripts/GovernorCountingSimple-counting.sh
+0 −12 certora/scripts/WizardControlFirstPriority.sh
+0 −10 certora/scripts/WizardFirstTry.sh
+0 −14 certora/scripts/sanity.sh
+0 −39 certora/scripts/verifyAll.sh
+22 −0 certora/specs.json
+114 −0 certora/specs/AccessControl.spec
+414 −0 certora/specs/ERC20.spec
+48 −0 certora/specs/ERC20FlashMint.spec
+0 −333 certora/specs/GovernorBase.spec
+0 −221 certora/specs/GovernorCountingSimple.spec
+0 −139 certora/specs/RulesInProgress.spec
+1 −0 certora/specs/helpers.spec
+11 −0 certora/specs/methods/IERC20.spec
+5 −0 certora/specs/methods/IERC2612.spec
+5 −0 certora/specs/methods/IERC3156.spec
+0 −14 certora/specs/sanity.spec
+16 −2 contracts/utils/ShortStrings.sol
+108 −81 package-lock.json
+1 −0 package.json
+1 −0 requirements.txt
+4 −1 test/utils/ShortStrings.test.js
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"@openzeppelin/merkle-tree": "^1.0.2",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"ethers": "^6.0.8",
"ethers": "^6.1.0",
"keccak256": "^1.0.6",
"merkletreejs": "^0.3.9",
"prettier": "^2.8.4",
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -740,10 +740,10 @@ ethereumjs-util@^7.1.0:
ethereum-cryptography "^0.1.3"
rlp "^2.2.4"

ethers@^6.0.8:
version "6.0.8"
resolved "https://registry.yarnpkg.com/ethers/-/ethers-6.0.8.tgz#a02e31f2771b66ecab6c731c1141b30d9de09174"
integrity sha512-j5smdMwn4t4vEARcfUv54mTJ2NMCorYLL51wPjFInEnrRr2SF5Sl9a7Z4DXS8UO1fBJVGHnjDDrF1b7msY3f7Q==
ethers@^6.1.0:
version "6.1.0"
resolved "https://registry.yarnpkg.com/ethers/-/ethers-6.1.0.tgz#de9c3acbb865fda6c080e80ec88ae0aada046947"
integrity sha512-aC45YGbvgXt7Nses5WsdQwc1cUIrrQt32zeFShNW7ZT3RQCIHBnd4nmbE5sJmrp70uTdwkRHkr4cZr1D/YwFPg==
dependencies:
"@adraffy/ens-normalize" "1.8.9"
"@noble/hashes" "1.1.2"
Expand Down