-
Notifications
You must be signed in to change notification settings - Fork 12.4k
Add ERC7674 (draft)
#5071
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
Add ERC7674 (draft)
#5071
Changes from 1 commit
bbf64d3
4f94434
119f718
76f1745
1e6911e
28402a6
43ee727
e729394
2bbd0b2
580c0ec
f48694c
8119a6e
b8fa057
5bb7662
fc031f1
112c22b
6f3df41
352f56c
a18f963
17f3410
461d527
12a79e7
887121c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,6 +2,15 @@ | |
|
|
||
| pragma solidity ^0.8.20; | ||
|
|
||
| /** | ||
| * @dev Temporary Approval Extension for ERC-20 (https://github.com/ethereum/ERCs/pull/358[ERC-7674]) | ||
| * | ||
| * WARNING: This ERC is not final, and is likelly to evolve. | ||
| */ | ||
| interface IERC7674 { | ||
| /** | ||
| * @dev Set the temporary allowance, allowing allows `spender` to withdraw (within the same transaction) assets | ||
Amxx marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| * held by the caller. | ||
|
||
| */ | ||
| function temporaryApprove(address spender, uint256 value) external returns (bool success); | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.