Skip to content

Commit

Permalink
Indexed senderWallet, senderToken, signerToken params of the setRule …
Browse files Browse the repository at this point in the history
…and UnsetRule events
  • Loading branch information
smartcontrart committed Jan 22, 2025
1 parent 8c6b28e commit f809a71
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions source/delegate/contracts/interfaces/IDelegate.sol
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ interface IDelegate {
event Revoke(address tmp, address signer);

event SetRule(
address senderWallet,
address senderToken,
address indexed senderWallet,
address indexed senderToken,
uint256 senderAmount,
address signerToken,
address indexed signerToken,
uint256 signerAmount,
uint256 expiry
);

event UnsetRule(
address senderWallet,
address senderToken,
address signerToken
address indexed senderWallet,
address indexed senderToken,
address indexed signerToken
);

error AddressInvalid();
Expand Down

0 comments on commit f809a71

Please sign in to comment.