Skip to content

Commit 8d9e6ab

Browse files
authored
evm: Add indexing in TransferSent event (#547)
* evm: Index `recipient` and `refundAddress` in `TransferSent` event
1 parent e84cbc1 commit 8d9e6ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

evm/src/interfaces/INttManager.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ interface INttManager is IManagerBase {
2424
/// @param recipientChain The chain ID of the recipient.
2525
/// @param msgSequence The unique sequence ID of the message.
2626
event TransferSent(
27-
bytes32 recipient,
28-
bytes32 refundAddress,
27+
bytes32 indexed recipient,
28+
bytes32 indexed refundAddress,
2929
uint256 amount,
3030
uint256 fee,
3131
uint16 recipientChain,

0 commit comments

Comments
 (0)