diff --git a/packages/store/src/IStoreEvents.sol b/packages/store/src/IStoreEvents.sol index 2f54c172b5..63a93aac87 100644 --- a/packages/store/src/IStoreEvents.sol +++ b/packages/store/src/IStoreEvents.sol @@ -9,6 +9,12 @@ import { PackedCounter } from "./PackedCounter.sol"; * @author MUD (https://mud.dev) by Lattice (https://lattice.xyz) */ interface IStoreEvents { + /** + * @notice Emitted when the store is initialized. + * @param storeVersion The version of the Store contract. + */ + event HelloStore(bytes32 indexed storeVersion); + /** * @notice Emitted when a new record is set in the store. * @param tableId The ID of the table where the record is set. @@ -63,10 +69,4 @@ interface IStoreEvents { * @param keyTuple An array representing the composite key for the record. */ event Store_DeleteRecord(ResourceId indexed tableId, bytes32[] keyTuple); - - /** - * @notice Emitted when the store is initialized. - * @param storeVersion The version of the Store contract. - */ - event HelloStore(bytes32 indexed storeVersion); }