Skip to content

Commit

Permalink
refactor: move HelloStore
Browse files Browse the repository at this point in the history
  • Loading branch information
yonadaa committed Mar 1, 2024
1 parent 9e67616 commit 6626419
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/store/src/IStoreEvents.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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);
}

0 comments on commit 6626419

Please sign in to comment.