-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: cosmwasm lifecycle execution n# blocks
- Loading branch information
Showing
21 changed files
with
1,560 additions
and
557 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
18 changes: 10 additions & 8 deletions
18
proto/cosmwasmlifecycle/contract.proto → ...emidev98/cosmwasmlifecycle/contract.proto
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
2 changes: 1 addition & 1 deletion
2
proto/cosmwasmlifecycle/events.proto → ...o/emidev98/cosmwasmlifecycle/events.proto
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,15 @@ | ||
syntax = "proto3"; | ||
package emidev98.cosmwasmlifecycle; | ||
|
||
option go_package = "github.com/emidev98/cosmwasm-lifecycle/x/cosmwasmlifecycle/types"; | ||
|
||
enum ExecutionType { | ||
BEGIN_BLOCK = 0; | ||
END_BLOCK = 1; | ||
BEGIN_AND_END_BLOCK = 2; | ||
} | ||
|
||
enum ExecutionTypeOperation { | ||
ENABLE = 0; | ||
DISABLE = 1; | ||
} |
6 changes: 3 additions & 3 deletions
6
proto/cosmwasmlifecycle/genesis.proto → .../emidev98/cosmwasmlifecycle/genesis.proto
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
2 changes: 1 addition & 1 deletion
2
proto/cosmwasmlifecycle/params.proto → ...o/emidev98/cosmwasmlifecycle/params.proto
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
4 changes: 2 additions & 2 deletions
4
proto/cosmwasmlifecycle/query.proto → proto/emidev98/cosmwasmlifecycle/query.proto
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.