Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
vittominacori committed Dec 8, 2023
1 parent 458a806 commit 26edc17
Show file tree
Hide file tree
Showing 19 changed files with 119 additions and 109 deletions.
14 changes: 0 additions & 14 deletions .solhint.json

This file was deleted.

Binary file modified analysis/control-flow/ERC20Recover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified analysis/control-flow/ERC721Recover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified analysis/control-flow/TokenRecover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified analysis/control-flow/TokenRecoverLegacy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions analysis/description-table/ERC20Recover.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
| **Context** | Implementation | |||
|| _msgSender | Internal 🔒 | | |
|| _msgData | Internal 🔒 | | |
|| _contextSuffixLength | Internal 🔒 | | |
||||||
| **Ownable** | Implementation | Context |||
|| <Constructor> | Public ❗️ | 🛑 |NO❗️ |
Expand Down
1 change: 1 addition & 0 deletions analysis/description-table/ERC721Recover.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
| **Context** | Implementation | |||
|| _msgSender | Internal 🔒 | | |
|| _msgData | Internal 🔒 | | |
|| _contextSuffixLength | Internal 🔒 | | |
||||||
| **Ownable** | Implementation | Context |||
|| <Constructor> | Public ❗️ | 🛑 |NO❗️ |
Expand Down
1 change: 1 addition & 0 deletions analysis/description-table/TokenRecover.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
| **Context** | Implementation | |||
|| _msgSender | Internal 🔒 | | |
|| _msgData | Internal 🔒 | | |
|| _contextSuffixLength | Internal 🔒 | | |
||||||
| **Ownable** | Implementation | Context |||
|| <Constructor> | Public ❗️ | 🛑 |NO❗️ |
Expand Down
1 change: 1 addition & 0 deletions analysis/description-table/TokenRecoverLegacy.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
| **Context** | Implementation | |||
|| _msgSender | Internal 🔒 | | |
|| _msgData | Internal 🔒 | | |
|| _contextSuffixLength | Internal 🔒 | | |
||||||
| **Ownable** | Implementation | Context |||
|| <Constructor> | Public ❗️ | 🛑 |NO❗️ |
Expand Down
19 changes: 10 additions & 9 deletions analysis/uml/ERC20Recover.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 10 additions & 9 deletions analysis/uml/ERC721Recover.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 10 additions & 9 deletions analysis/uml/TokenRecover.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 10 additions & 9 deletions analysis/uml/TokenRecoverLegacy.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 9 additions & 5 deletions dist/ERC20Recover.dist.sol
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// SPDX-License-Identifier: MIT

// Sources flattened with hardhat v2.19.0 https://hardhat.org
// Sources flattened with hardhat v2.19.2 https://hardhat.org



// File @openzeppelin/contracts/utils/Context.sol@v5.0.0
// File @openzeppelin/contracts/utils/Context.sol@v5.0.1

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

Expand All @@ -29,10 +29,14 @@ abstract contract Context {
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}

function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}


// File @openzeppelin/contracts/access/Ownable.sol@v5.0.0
// File @openzeppelin/contracts/access/Ownable.sol@v5.0.1

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
Expand Down Expand Up @@ -134,7 +138,7 @@ abstract contract Ownable is Context {
}


// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v5.0.0
// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v5.0.1

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
Expand Down
16 changes: 10 additions & 6 deletions dist/ERC721Recover.dist.sol
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// SPDX-License-Identifier: MIT

// Sources flattened with hardhat v2.19.0 https://hardhat.org
// Sources flattened with hardhat v2.19.2 https://hardhat.org



// File @openzeppelin/contracts/utils/Context.sol@v5.0.0
// File @openzeppelin/contracts/utils/Context.sol@v5.0.1

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

Expand All @@ -29,10 +29,14 @@ abstract contract Context {
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}

function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}


// File @openzeppelin/contracts/access/Ownable.sol@v5.0.0
// File @openzeppelin/contracts/access/Ownable.sol@v5.0.1

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
Expand Down Expand Up @@ -134,7 +138,7 @@ abstract contract Ownable is Context {
}


// File @openzeppelin/contracts/utils/introspection/IERC165.sol@v5.0.0
// File @openzeppelin/contracts/utils/introspection/IERC165.sol@v5.0.1

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)
Expand Down Expand Up @@ -163,7 +167,7 @@ interface IERC165 {
}


// File @openzeppelin/contracts/token/ERC721/IERC721.sol@v5.0.0
// File @openzeppelin/contracts/token/ERC721/IERC721.sol@v5.0.1

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol)
Expand Down
18 changes: 11 additions & 7 deletions dist/TokenRecover.dist.sol
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// SPDX-License-Identifier: MIT

// Sources flattened with hardhat v2.19.0 https://hardhat.org
// Sources flattened with hardhat v2.19.2 https://hardhat.org



// File @openzeppelin/contracts/utils/Context.sol@v5.0.0
// File @openzeppelin/contracts/utils/Context.sol@v5.0.1

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

Expand All @@ -29,10 +29,14 @@ abstract contract Context {
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}

function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}


// File @openzeppelin/contracts/access/Ownable.sol@v5.0.0
// File @openzeppelin/contracts/access/Ownable.sol@v5.0.1

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
Expand Down Expand Up @@ -134,7 +138,7 @@ abstract contract Ownable is Context {
}


// File @openzeppelin/contracts/utils/introspection/IERC165.sol@v5.0.0
// File @openzeppelin/contracts/utils/introspection/IERC165.sol@v5.0.1

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)
Expand Down Expand Up @@ -163,7 +167,7 @@ interface IERC165 {
}


// File @openzeppelin/contracts/token/ERC721/IERC721.sol@v5.0.0
// File @openzeppelin/contracts/token/ERC721/IERC721.sol@v5.0.1

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol)
Expand Down Expand Up @@ -300,7 +304,7 @@ interface IERC721 is IERC165 {
}


// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v5.0.0
// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v5.0.1

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
Expand Down
14 changes: 9 additions & 5 deletions dist/TokenRecoverLegacy.dist.sol
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// SPDX-License-Identifier: MIT

// Sources flattened with hardhat v2.19.0 https://hardhat.org
// Sources flattened with hardhat v2.19.2 https://hardhat.org



// File @openzeppelin/contracts/utils/Context.sol@v5.0.0
// File @openzeppelin/contracts/utils/Context.sol@v5.0.1

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

Expand All @@ -29,10 +29,14 @@ abstract contract Context {
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}

function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}


// File @openzeppelin/contracts/access/Ownable.sol@v5.0.0
// File @openzeppelin/contracts/access/Ownable.sol@v5.0.1

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
Expand Down Expand Up @@ -134,7 +138,7 @@ abstract contract Ownable is Context {
}


// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v5.0.0
// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v5.0.1

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
Expand Down
Loading

0 comments on commit 26edc17

Please sign in to comment.