-
Notifications
You must be signed in to change notification settings - Fork 352
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use EmitTypedEvent instead of EmitEvent
- Loading branch information
Showing
5 changed files
with
511 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
syntax = "proto3"; | ||
package dymensionxyz.dymension.rollapp; | ||
|
||
option go_package = "github.com/dymensionxyz/dymension/x/rollapp/types"; | ||
|
||
// EventGrant is emitted on Msg/Grant | ||
message EventStateUpdate { | ||
// rollappId is the rollapp that was updated | ||
// The rollappId follows the same standard as cosmos chain_id | ||
string rollappId = 1; | ||
// latestStateInfoIndex is a sequential increasing number, updating on each | ||
// state update used for indexing to a specific state info | ||
uint64 index = 2; | ||
// startHeight is the block height of the first block in the batch | ||
uint64 startHeight = 3; | ||
// numBlocks is the number of blocks included in this batch update | ||
uint64 numBlocks = 4; | ||
// DAPath is the description of the location on the DA layer | ||
string DAPath = 5; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.