-
Notifications
You must be signed in to change notification settings - Fork 4
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
update hardhat-web3 web3 version to 4.x #1
base: main
Are you sure you want to change the base?
Commits on May 8, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 585eae5 - Browse repository at this point
Copy the full SHA 585eae5View commit details -
Configuration menu - View commit details
-
Copy full SHA for c6dd8d5 - Browse repository at this point
Copy the full SHA c6dd8d5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 90c2f5d - Browse repository at this point
Copy the full SHA 90c2f5dView commit details
Commits on May 9, 2023
-
update hardhat-web3 web3 version to 4.x
Signed-off-by: Marin Petrunic <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e9c0511 - Browse repository at this point
Copy the full SHA e9c0511View commit details
Commits on May 10, 2023
-
Configuration menu - View commit details
-
Copy full SHA for aa900fa - Browse repository at this point
Copy the full SHA aa900faView commit details -
Configuration menu - View commit details
-
Copy full SHA for 843f788 - Browse repository at this point
Copy the full SHA 843f788View commit details -
Merge pull request NomicFoundation#3912 from NomicFoundation/use-alchemy
Use alchemy instead of infura in fork tests
Configuration menu - View commit details
-
Copy full SHA for 9ea82c0 - Browse repository at this point
Copy the full SHA 9ea82c0View commit details
Commits on May 11, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 1455459 - Browse repository at this point
Copy the full SHA 1455459View commit details -
Merge pull request NomicFoundation#3920 from NomicFoundation/use-node…
…-18-15-in-ci Use node 18.15 in CI
Configuration menu - View commit details
-
Copy full SHA for 4106862 - Browse repository at this point
Copy the full SHA 4106862View commit details
Commits on May 12, 2023
-
Configuration menu - View commit details
-
Copy full SHA for ad5d50b - Browse repository at this point
Copy the full SHA ad5d50bView commit details -
Configuration menu - View commit details
-
Copy full SHA for a5b0033 - Browse repository at this point
Copy the full SHA a5b0033View commit details
Commits on May 15, 2023
-
Configuration menu - View commit details
-
Copy full SHA for e994986 - Browse repository at this point
Copy the full SHA e994986View commit details -
Merge pull request NomicFoundation#3923 from NomicFoundation/check-al…
…l-hardforks-history Check that all supported hardforks have a history entry
Configuration menu - View commit details
-
Copy full SHA for 515f305 - Browse repository at this point
Copy the full SHA 515f305View commit details -
Merge pull request NomicFoundation#3907 from anataliocs/Add-Infura-Se…
…polia-Faucet-link-to-Tutorial-deploying-to-a-live-network-#3906 Add Infura Sepolia Faucet to docs NomicFoundation#3906
Configuration menu - View commit details
-
Copy full SHA for a424039 - Browse repository at this point
Copy the full SHA a424039View commit details
Commits on May 19, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 10e9c72 - Browse repository at this point
Copy the full SHA 10e9c72View commit details -
Configuration menu - View commit details
-
Copy full SHA for 952dc0e - Browse repository at this point
Copy the full SHA 952dc0eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 084029f - Browse repository at this point
Copy the full SHA 084029fView commit details
Commits on May 20, 2023
-
Configuration menu - View commit details
-
Copy full SHA for f0b8a72 - Browse repository at this point
Copy the full SHA f0b8a72View commit details
Commits on May 22, 2023
-
Configuration menu - View commit details
-
Copy full SHA for a28d5c2 - Browse repository at this point
Copy the full SHA a28d5c2View commit details
Commits on May 23, 2023
-
Configuration menu - View commit details
-
Copy full SHA for fa839f8 - Browse repository at this point
Copy the full SHA fa839f8View commit details -
Merge pull request NomicFoundation#3946 from donoso-eth/gelato-plugin
Gelato w3f plugin
Configuration menu - View commit details
-
Copy full SHA for 6179a32 - Browse repository at this point
Copy the full SHA 6179a32View commit details -
Configuration menu - View commit details
-
Copy full SHA for e87000c - Browse repository at this point
Copy the full SHA e87000cView commit details
Commits on May 24, 2023
-
Configuration menu - View commit details
-
Copy full SHA for b087d0f - Browse repository at this point
Copy the full SHA b087d0fView commit details -
Merge pull request NomicFoundation#3952 from donoso-eth/gelato-plugin
Gelato w3f plugin update link
Configuration menu - View commit details
-
Copy full SHA for 55a6a1c - Browse repository at this point
Copy the full SHA 55a6a1cView commit details
Commits on May 25, 2023
-
Configuration menu - View commit details
-
Copy full SHA for cb33dac - Browse repository at this point
Copy the full SHA cb33dacView commit details
Commits on May 30, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 008e95e - Browse repository at this point
Copy the full SHA 008e95eView commit details -
Configuration menu - View commit details
-
Copy full SHA for e920f51 - Browse repository at this point
Copy the full SHA e920f51View commit details -
Configuration menu - View commit details
-
Copy full SHA for b088bbb - Browse repository at this point
Copy the full SHA b088bbbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 523235b - Browse repository at this point
Copy the full SHA 523235bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3c916ea - Browse repository at this point
Copy the full SHA 3c916eaView commit details -
This is both for making the check-dependencies script pass and to make it more explicit that the BigNumber support in the helpers is for ethers v5.
Configuration menu - View commit details
-
Copy full SHA for dcb9677 - Browse repository at this point
Copy the full SHA dcb9677View commit details -
Configuration menu - View commit details
-
Copy full SHA for 16ea02d - Browse repository at this point
Copy the full SHA 16ea02dView commit details -
Configuration menu - View commit details
-
Copy full SHA for a75de2d - Browse repository at this point
Copy the full SHA a75de2dView commit details -
Create common with proper hardfork before manipulating the block
This prevents the following bug: - We use the merge hardfork locally - We fork a shanghai block - We run a call in a block before the forked block In this case, the remote block will be fetched and will have withdrawals. But when Block.fromBlockData is called with the current common (which has a merge hardfork) it will fail. If we create the right common before doing the block context manipulation, this doesn't happen. There is already a test for this scenario. I don't know why it wasn't failing before this.
Configuration menu - View commit details
-
Copy full SHA for a62dbfd - Browse repository at this point
Copy the full SHA a62dbfdView commit details -
Merge pull request NomicFoundation#3924 from NomicFoundation/hardhat-…
…ethers-v6 Add support for ethers v6
Configuration menu - View commit details
-
Copy full SHA for af686fc - Browse repository at this point
Copy the full SHA af686fcView commit details
Commits on May 31, 2023
-
Configuration menu - View commit details
-
Copy full SHA for a367502 - Browse repository at this point
Copy the full SHA a367502View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9cd9211 - Browse repository at this point
Copy the full SHA 9cd9211View commit details -
Configuration menu - View commit details
-
Copy full SHA for fb3fe0e - Browse repository at this point
Copy the full SHA fb3fe0eView commit details
Commits on Jun 1, 2023
-
Use more future-proof type imports from ethers
The way we were doing these imports doesn't work starting from ethers v6.4.0
Configuration menu - View commit details
-
Copy full SHA for 8626c87 - Browse repository at this point
Copy the full SHA 8626c87View commit details -
Merge pull request NomicFoundation#3970 from NomicFoundation/use-bett…
…er-ethers-import Use more future-proof type imports from ethers
Configuration menu - View commit details
-
Copy full SHA for 3ae4a78 - Browse repository at this point
Copy the full SHA 3ae4a78View commit details
Commits on Jun 5, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 61feb2c - Browse repository at this point
Copy the full SHA 61feb2cView commit details -
Configuration menu - View commit details
-
Copy full SHA for b3d916e - Browse repository at this point
Copy the full SHA b3d916eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7f7114f - Browse repository at this point
Copy the full SHA 7f7114fView commit details -
Configuration menu - View commit details
-
Copy full SHA for f1272b3 - Browse repository at this point
Copy the full SHA f1272b3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 75b1b43 - Browse repository at this point
Copy the full SHA 75b1b43View commit details -
Configuration menu - View commit details
-
Copy full SHA for aedd460 - Browse repository at this point
Copy the full SHA aedd460View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8bf0f10 - Browse repository at this point
Copy the full SHA 8bf0f10View commit details -
Configuration menu - View commit details
-
Copy full SHA for 09e71b2 - Browse repository at this point
Copy the full SHA 09e71b2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2a25743 - Browse repository at this point
Copy the full SHA 2a25743View commit details -
Configuration menu - View commit details
-
Copy full SHA for aaf6dce - Browse repository at this point
Copy the full SHA aaf6dceView commit details -
Configuration menu - View commit details
-
Copy full SHA for b7b8855 - Browse repository at this point
Copy the full SHA b7b8855View commit details -
Configuration menu - View commit details
-
Copy full SHA for 56c4a3d - Browse repository at this point
Copy the full SHA 56c4a3dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 32e2935 - Browse repository at this point
Copy the full SHA 32e2935View commit details -
Configuration menu - View commit details
-
Copy full SHA for c139831 - Browse repository at this point
Copy the full SHA c139831View commit details -
Merge pull request NomicFoundation#3982 from freiremanuel91/patch-6
Update LICENSE
Configuration menu - View commit details
-
Copy full SHA for a449527 - Browse repository at this point
Copy the full SHA a449527View commit details -
Merge pull request NomicFoundation#3983 from freiremanuel91/patch-5
Update LICENSE
Configuration menu - View commit details
-
Copy full SHA for 2002265 - Browse repository at this point
Copy the full SHA 2002265View commit details -
Merge pull request NomicFoundation#3984 from freiremanuel91/patch-7
Update LICENSE
Configuration menu - View commit details
-
Copy full SHA for 5446707 - Browse repository at this point
Copy the full SHA 5446707View commit details -
Merge pull request NomicFoundation#3985 from freiremanuel91/patch-8
Update LICENSE
Configuration menu - View commit details
-
Copy full SHA for 62cb77e - Browse repository at this point
Copy the full SHA 62cb77eView commit details -
Merge pull request NomicFoundation#3986 from freiremanuel91/patch-9
Update LICENSE
Configuration menu - View commit details
-
Copy full SHA for dd5291d - Browse repository at this point
Copy the full SHA dd5291dView commit details -
Merge pull request NomicFoundation#3987 from freiremanuel91/patch-10
Update LICENSE
Configuration menu - View commit details
-
Copy full SHA for 3a64624 - Browse repository at this point
Copy the full SHA 3a64624View commit details -
Merge pull request NomicFoundation#3988 from freiremanuel91/patch-11
Update LICENSE
Configuration menu - View commit details
-
Copy full SHA for aa51b56 - Browse repository at this point
Copy the full SHA aa51b56View commit details -
Merge pull request NomicFoundation#3990 from freiremanuel91/patch-13
Update LICENSE
Configuration menu - View commit details
-
Copy full SHA for 9b3fb69 - Browse repository at this point
Copy the full SHA 9b3fb69View commit details -
Merge pull request NomicFoundation#3991 from freiremanuel91/patch-14
Update LICENSE
Configuration menu - View commit details
-
Copy full SHA for 732060c - Browse repository at this point
Copy the full SHA 732060cView commit details -
Merge pull request NomicFoundation#3989 from freiremanuel91/patch-12
Update LICENSE
Configuration menu - View commit details
-
Copy full SHA for e6d73a3 - Browse repository at this point
Copy the full SHA e6d73a3View commit details -
Merge pull request NomicFoundation#3992 from freiremanuel91/patch-15
Update LICENSE
Configuration menu - View commit details
-
Copy full SHA for e8909a7 - Browse repository at this point
Copy the full SHA e8909a7View commit details -
Merge pull request NomicFoundation#3993 from freiremanuel91/patch-16
Update LICENSE
Configuration menu - View commit details
-
Copy full SHA for 7538833 - Browse repository at this point
Copy the full SHA 7538833View commit details -
Merge pull request NomicFoundation#3994 from freiremanuel91/patch-17
Update LICENSE
Configuration menu - View commit details
-
Copy full SHA for 990cbc0 - Browse repository at this point
Copy the full SHA 990cbc0View commit details -
Merge pull request NomicFoundation#3995 from freiremanuel91/patch-18
Update LICENSE
Configuration menu - View commit details
-
Copy full SHA for 22d51b4 - Browse repository at this point
Copy the full SHA 22d51b4View commit details
Commits on Jun 6, 2023
-
Configuration menu - View commit details
-
Copy full SHA for af7ace9 - Browse repository at this point
Copy the full SHA af7ace9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 40b371b - Browse repository at this point
Copy the full SHA 40b371bView commit details -
Configuration menu - View commit details
-
Copy full SHA for c16d405 - Browse repository at this point
Copy the full SHA c16d405View commit details
Commits on Jun 7, 2023
-
Configuration menu - View commit details
-
Copy full SHA for e8a5d15 - Browse repository at this point
Copy the full SHA e8a5d15View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1fe175f - Browse repository at this point
Copy the full SHA 1fe175fView commit details -
Configuration menu - View commit details
-
Copy full SHA for ce4eddc - Browse repository at this point
Copy the full SHA ce4eddcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 290b16a - Browse repository at this point
Copy the full SHA 290b16aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 726be05 - Browse repository at this point
Copy the full SHA 726be05View commit details -
Configuration menu - View commit details
-
Copy full SHA for d8056fb - Browse repository at this point
Copy the full SHA d8056fbView commit details -
Configuration menu - View commit details
-
Copy full SHA for cbcfb87 - Browse repository at this point
Copy the full SHA cbcfb87View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8acc707 - Browse repository at this point
Copy the full SHA 8acc707View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0902a6a - Browse repository at this point
Copy the full SHA 0902a6aView commit details -
Configuration menu - View commit details
-
Copy full SHA for ec6acb4 - Browse repository at this point
Copy the full SHA ec6acb4View commit details -
Configuration menu - View commit details
-
Copy full SHA for c69540f - Browse repository at this point
Copy the full SHA c69540fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 236c8a2 - Browse repository at this point
Copy the full SHA 236c8a2View commit details -
Configuration menu - View commit details
-
Copy full SHA for f9382fe - Browse repository at this point
Copy the full SHA f9382feView commit details -
Configuration menu - View commit details
-
Copy full SHA for 26f240e - Browse repository at this point
Copy the full SHA 26f240eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 168e937 - Browse repository at this point
Copy the full SHA 168e937View commit details -
Configuration menu - View commit details
-
Copy full SHA for cbbd0bd - Browse repository at this point
Copy the full SHA cbbd0bdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 70c2ccf - Browse repository at this point
Copy the full SHA 70c2ccfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 399347f - Browse repository at this point
Copy the full SHA 399347fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 99995d5 - Browse repository at this point
Copy the full SHA 99995d5View commit details -
Configuration menu - View commit details
-
Copy full SHA for a9c159f - Browse repository at this point
Copy the full SHA a9c159fView commit details -
Configuration menu - View commit details
-
Copy full SHA for aaf2c92 - Browse repository at this point
Copy the full SHA aaf2c92View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7775b5d - Browse repository at this point
Copy the full SHA 7775b5dView commit details -
Configuration menu - View commit details
-
Copy full SHA for e584f6a - Browse repository at this point
Copy the full SHA e584f6aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9d900ce - Browse repository at this point
Copy the full SHA 9d900ceView commit details -
Configuration menu - View commit details
-
Copy full SHA for 64b0fc5 - Browse repository at this point
Copy the full SHA 64b0fc5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5432aa3 - Browse repository at this point
Copy the full SHA 5432aa3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9e2554e - Browse repository at this point
Copy the full SHA 9e2554eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1409b0a - Browse repository at this point
Copy the full SHA 1409b0aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1b5e1cf - Browse repository at this point
Copy the full SHA 1b5e1cfView commit details -
Configuration menu - View commit details
-
Copy full SHA for b6b8e98 - Browse repository at this point
Copy the full SHA b6b8e98View commit details -
Configuration menu - View commit details
-
Copy full SHA for 94b2fd1 - Browse repository at this point
Copy the full SHA 94b2fd1View commit details -
Merge pull request NomicFoundation#3996 from NomicFoundation/issue#3969
Rename error class & avoid compiling
Configuration menu - View commit details
-
Copy full SHA for 61727ca - Browse repository at this point
Copy the full SHA 61727caView commit details -
Configuration menu - View commit details
-
Copy full SHA for adc684d - Browse repository at this point
Copy the full SHA adc684dView commit details
Commits on Jun 8, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 3a1846e - Browse repository at this point
Copy the full SHA 3a1846eView commit details -
Configuration menu - View commit details
-
Copy full SHA for f0aa3c3 - Browse repository at this point
Copy the full SHA f0aa3c3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 83f23a1 - Browse repository at this point
Copy the full SHA 83f23a1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0039b3b - Browse repository at this point
Copy the full SHA 0039b3bView commit details -
Configuration menu - View commit details
-
Copy full SHA for b466e49 - Browse repository at this point
Copy the full SHA b466e49View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3421439 - Browse repository at this point
Copy the full SHA 3421439View commit details -
Merge pull request NomicFoundation#4005 from pcaversaccio/patch-1
Pin `web3` version in installation guides
Configuration menu - View commit details
-
Copy full SHA for a6424ea - Browse repository at this point
Copy the full SHA a6424eaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8726d0b - Browse repository at this point
Copy the full SHA 8726d0bView commit details -
Configuration menu - View commit details
-
Copy full SHA for eb1ae06 - Browse repository at this point
Copy the full SHA eb1ae06View commit details -
Merge pull request NomicFoundation#4007 from NomicFoundation/fix-wait…
…-for-deployment Fix waitForDeployment in non-automined networks
Configuration menu - View commit details
-
Copy full SHA for a250555 - Browse repository at this point
Copy the full SHA a250555View commit details -
Configuration menu - View commit details
-
Copy full SHA for eaab9ea - Browse repository at this point
Copy the full SHA eaab9eaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 55a15bf - Browse repository at this point
Copy the full SHA 55a15bfView commit details
Commits on Jun 9, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 4159589 - Browse repository at this point
Copy the full SHA 4159589View commit details -
Merge pull request NomicFoundation#3999 from ZumZoom/patch-1
fix aurora browser urls
Configuration menu - View commit details
-
Copy full SHA for 66eed36 - Browse repository at this point
Copy the full SHA 66eed36View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5071ed1 - Browse repository at this point
Copy the full SHA 5071ed1View commit details -
Configuration menu - View commit details
-
Copy full SHA for f56ecab - Browse repository at this point
Copy the full SHA f56ecabView commit details -
Merge pull request NomicFoundation#4011 from anajuliabit/main
This removes an useless array
Configuration menu - View commit details
-
Copy full SHA for 735671e - Browse repository at this point
Copy the full SHA 735671eView commit details
Commits on Jun 12, 2023
-
Signed-off-by: Marin Petrunic <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 06d766e - Browse repository at this point
Copy the full SHA 06d766eView commit details -
Merge remote-tracking branch 'origin/main' into update-web3
Signed-off-by: Marin Petrunic <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 8e805ff - Browse repository at this point
Copy the full SHA 8e805ffView commit details -
Configuration menu - View commit details
-
Copy full SHA for d469cef - Browse repository at this point
Copy the full SHA d469cefView commit details