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
Update draft-IERC7674.sol
  • Loading branch information
Amxx authored Jul 17, 2024
commit 461d527865fa14065cfdb0c28bcf791f7ff1f4fd
4 changes: 3 additions & 1 deletion contracts/interfaces/draft-IERC7674.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";

/**
* @dev Temporary Approval Extension for ERC-20 (https://github.com/ethereum/ERCs/pull/358[ERC-7674])
*/
interface IERC7674 {
interface IERC7674 is ERC20 {
/**
* @dev Set the temporary allowance, allowing `spender` to withdraw (within the same transaction) assets
* held by the caller.
Expand Down