We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae0660e commit b6b5ae2Copy full SHA for b6b5ae2
1 file changed
src/interfaces/IRootHashSwapPair.sol
@@ -2,9 +2,6 @@
2
pragma solidity ^0.8.20;
3
4
interface IRootHashSwapPair {
5
- event Approval(address indexed owner, address indexed spender, uint256 value);
6
- event Transfer(address indexed from, address indexed to, uint256 value);
7
-
8
function name() external pure returns (string memory);
9
10
function symbol() external pure returns (string memory);
@@ -63,4 +60,7 @@ interface IRootHashSwapPair {
63
60
function sync() external;
64
61
65
62
function initialize(address, address) external;
+
+ event Approval(address indexed owner, address indexed spender, uint256 value);
+ event Transfer(address indexed from, address indexed to, uint256 value);
66
}
0 commit comments