Skip to content

Commit 1193a4a

Browse files
authored
evm/src/interfaces: update topic hashes (#396)
1 parent 000d269 commit 1193a4a

5 files changed

+6
-6
lines changed

evm/src/interfaces/IManagerBase.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ interface IManagerBase {
4848

4949
/// @notice Emitted when an transceiver is removed from the nttManager.
5050
/// @dev Topic0
51-
/// 0xc6289e62021fd0421276d06677862d6b328d9764cdd4490ca5ac78b173f25883.
51+
/// 0xf05962b5774c658e85ed80c91a75af9d66d2af2253dda480f90bce78aff5eda5.
5252
/// @param transceiver The address of the transceiver.
5353
/// @param transceiversNum The current number of transceivers.
5454
/// @param threshold The current threshold of transceivers.
5555
event TransceiverAdded(address transceiver, uint256 transceiversNum, uint8 threshold);
5656

5757
/// @notice Emitted when an transceiver is removed from the nttManager.
5858
/// @dev Topic0
59-
/// 0x638e631f34d9501a3ff0295873b29f50d0207b5400bf0e48b9b34719e6b1a39e.
59+
/// 0x697a3853515b88013ad432f29f53d406debc9509ed6d9313dcfe115250fcd18f.
6060
/// @param transceiver The address of the transceiver.
6161
/// @param threshold The current threshold of transceivers.
6262
event TransceiverRemoved(address transceiver, uint8 threshold);

evm/src/interfaces/INttManager.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ interface INttManager is IManagerBase {
1515

1616
/// @notice Emitted when a message is sent from the nttManager.
1717
/// @dev Topic0
18-
/// 0x9cc8ade41ef46b98ba8bcad8c6bfa643934e6b84d3ce066cd38b5f0813bb2ae5.
18+
/// 0xe54e51e42099622516fa3b48e9733581c9dbdcb771cafb093f745a0532a35982.
1919
/// @param recipient The recipient of the message.
2020
/// @param refundAddress The address on the destination chain to which the
2121
/// refund of unused gas will be paid

evm/src/interfaces/IRateLimiterEvents.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ interface IRateLimiterEvents {
1818

1919
/// @notice Emitted when an outbound transfer is rate limited.
2020
/// @dev Topic0
21-
/// 0x754d657d1363ee47d967b415652b739bfe96d5729ccf2f26625dcdbc147db68b.
21+
/// 0xf33512b84e24a49905c26c6991942fc5a9652411769fc1e448f967cdb049f08a.
2222
/// @param sender The initial sender of the transfer.
2323
/// @param amount The amount to be transferred.
2424
/// @param currentCapacity The capacity left for transfers within the 24-hour window.

evm/src/interfaces/IWormholeTransceiver.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ interface IWormholeTransceiver is IWormholeTransceiverState {
3333

3434
/// @notice Emitted when a message is sent from the transceiver.
3535
/// @dev Topic0
36-
/// 0x53b3e029c5ead7bffc739118953883859d30b1aaa086e0dca4d0a1c99cd9c3f5.
36+
/// 0x79376a0dc6cbfe6f6f8f89ad24c262a8c6233f8df181d3fe5abb2e2442e8c738.
3737
/// @param recipientChain The chain ID of the recipient.
3838
/// @param message The message.
3939
event SendTransceiverMessage(

evm/src/interfaces/IWormholeTransceiverState.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ interface IWormholeTransceiverState {
3333

3434
/// @notice Emitted when the chain is EVM compatible.
3535
/// @dev Topic0
36-
/// 0x50bbeb4e180e8f9e429f6ef6b53496616c747fe502441c4f423d5fc9ec958d9c.
36+
/// 0x4add57d97a7bf5035340ea1212aeeb3d4d3887eb1faf3821a8224c3a6956a10c.
3737
/// @param chainId The chain ID to set.
3838
/// @param isEvm A boolean indicating whether relaying is enabled.
3939
event SetIsWormholeEvmChain(uint16 chainId, bool isEvm);

0 commit comments

Comments
 (0)