We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35a50e5 commit fc51ac3Copy full SHA for fc51ac3
packages/world-modules/src/modules/erc20-own-store/IERC20Events.sol
@@ -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