Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
up
  • Loading branch information
Amxx committed Jan 24, 2024
commit c80f447f9ac618f2222f13e4ea196750fd218fe8
10 changes: 5 additions & 5 deletions contracts/token/ERC20/extensions/ERC1363.sol
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ abstract contract ERC1363 is ERC20, ERC165, IERC1363 {
* Requirements:
*
* - The target has code (i.e. is a contract).
* - The target `to` must implement {IERC1363Receiver-onTransferReceived}.
* - The target `to` must implement the {IERC1363Receiver} interface.
* - The target must return the {IERC1363Receiver-onTransferReceived} selector to accept the transfer.
* - The internal {transfer} must succeed (returned `true`).
*/
Expand All @@ -84,7 +84,7 @@ abstract contract ERC1363 is ERC20, ERC165, IERC1363 {
* Requirements:
*
* - The target has code (i.e. is a contract).
* - The target `to` must implement {IERC1363Receiver-onTransferReceived}.
* - The target `to` must implement the {IERC1363Receiver} interface.
* - The target must return the {IERC1363Receiver-onTransferReceived} selector to accept the transfer.
* - The internal {transferFrom} must succeed (returned `true`).
*/
Expand Down Expand Up @@ -116,7 +116,7 @@ abstract contract ERC1363 is ERC20, ERC165, IERC1363 {
* Requirements:
*
* - The target has code (i.e. is a contract).
* - The target `to` must implement {IERC1363Spender-onApprovalReceived}.
* - The target `to` must implement the {IERC1363Spender} interface.
* - The target must return the {IERC1363Spender-onApprovalReceived} selector to accept the approval.
* - The internal {approve} must succeed (returned `true`).
*/
Expand All @@ -143,7 +143,7 @@ abstract contract ERC1363 is ERC20, ERC165, IERC1363 {
*
* - The target has code (i.e. is a contract).
* - The target `to` must implement the {IERC1363Receiver} interface.
* - The target should return the {IERC1363Receiver} interface id.
* - The target must return the {IERC1363Receiver-onTransferReceived} selector to accept the transfer.
*/
function _checkOnTransferReceived(address from, address to, uint256 value, bytes memory data) private {
if (to.code.length == 0) {
Expand Down Expand Up @@ -173,7 +173,7 @@ abstract contract ERC1363 is ERC20, ERC165, IERC1363 {
*
* - The target has code (i.e. is a contract).
* - The target `to` must implement the {IERC1363Spender} interface.
* - The target should return the {IERC1363Spender} interface id.
* - The target must return the {IERC1363Spender-onApprovalReceived} selector to accept the approval.
*/
function _checkOnApprovalReceived(address spender, uint256 value, bytes memory data) private {
if (spender.code.length == 0) {
Expand Down