Skip to content

Commit fc51ac3

Browse files
committed
add events interface
1 parent 35a50e5 commit fc51ac3

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// SPDX-License-Identifier: MIT
2+
pragma solidity >=0.8.24;
3+
4+
interface IERC20Events {
5+
/**
6+
* @dev Emitted when `value` tokens are moved from one account (`from`) to
7+
* another (`to`).
8+
*
9+
* Note that `value` may be zero.
10+
*/
11+
event Transfer(address indexed from, address indexed to, uint256 value);
12+
13+
/**
14+
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
15+
* a call to {approve}. `value` is the new allowance.
16+
*/
17+
event Approval(address indexed owner, address indexed spender, uint256 value);
18+
}

0 commit comments

Comments
 (0)