Skip to content

Commit

Permalink
chore: update dependencies and solc
Browse files Browse the repository at this point in the history
  • Loading branch information
vittominacori committed Mar 27, 2024
1 parent dd2e885 commit 20c59ae
Show file tree
Hide file tree
Showing 8 changed files with 4,334 additions and 1,166 deletions.
2 changes: 1 addition & 1 deletion dist/ERC20Recover.dist.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: MIT

// Sources flattened with hardhat v2.21.0 https://hardhat.org
// Sources flattened with hardhat v2.22.2 https://hardhat.org



Expand Down
2 changes: 1 addition & 1 deletion dist/ERC721Recover.dist.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: MIT

// Sources flattened with hardhat v2.21.0 https://hardhat.org
// Sources flattened with hardhat v2.22.2 https://hardhat.org



Expand Down
2 changes: 1 addition & 1 deletion dist/TokenRecover.dist.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: MIT

// Sources flattened with hardhat v2.21.0 https://hardhat.org
// Sources flattened with hardhat v2.22.2 https://hardhat.org



Expand Down
2 changes: 1 addition & 1 deletion dist/TokenRecoverLegacy.dist.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: MIT

// Sources flattened with hardhat v2.21.0 https://hardhat.org
// Sources flattened with hardhat v2.22.2 https://hardhat.org



Expand Down
4 changes: 2 additions & 2 deletions hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ require('solidity-docgen');
module.exports = {
defaultNetwork: 'hardhat',
solidity: {
version: '0.8.24',
version: '0.8.25',
settings: {
evmVersion: 'shanghai',
evmVersion: 'cancun',
optimizer: {
enabled: true,
runs: 200,
Expand Down
5,473 changes: 4,320 additions & 1,153 deletions package-lock.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eth-token-recover",
"version": "6.2.0",
"version": "6.3.0",
"description": "TokenRecover allows to recover any ERC20 or ERC721 token sent into the contract and send them to a receiver.",
"files": [
"contracts",
Expand Down Expand Up @@ -62,20 +62,20 @@
"eslint-config-standard": "^17.1.0",
"eslint-plugin-mocha-no-only": "^1.1.1",
"graphlib": "^2.1.8",
"hardhat": "^2.21.0",
"hardhat": "^2.22.2",
"hardhat-exposed": "^0.3.14",
"hardhat-gas-reporter": "^1.0.10",
"hardhat-gas-reporter": "^2.0.2",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"rimraf": "^5.0.5",
"sol2uml": "^2.5.20",
"solhint": "^4.1.1",
"solhint": "^4.5.2",
"solhint-plugin-openzeppelin": "file:scripts/solhint-custom",
"solidity-coverage": "^0.8.10",
"solidity-coverage": "^0.8.11",
"solidity-docgen": "^0.6.0-beta.36",
"surya": "^0.4.11",
"truffle": "^5.11.5",
"vitepress": "^1.0.0-rc.44",
"vitepress": "^1.0.1",
"yargs": "^17.7.2"
}
}
3 changes: 2 additions & 1 deletion truffle-config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
module.exports = {
compilers: {
solc: {
version: '0.8.24',
version: '0.8.25',
settings: {
evmVersion: 'cancun',
optimizer: {
enabled: true,
runs: 200,
Expand Down

0 comments on commit 20c59ae

Please sign in to comment.