-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: regenerate protobufs with cosmos sdk 0.50.6
- Loading branch information
Showing
88 changed files
with
4,678 additions
and
1,182 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 |
---|---|---|
|
@@ -63,6 +63,33 @@ export class Module extends Message<Module> { | |
*/ | ||
overrideStoreKeys: StoreKeyConfig[] = []; | ||
|
||
/** | ||
* order_migrations defines the order in which module migrations are performed. | ||
* If this is left empty, it uses the default migration order. | ||
* https://pkg.go.dev/github.com/cosmos/[email protected]/types/module#DefaultMigrationsOrder | ||
* | ||
* @generated from field: repeated string order_migrations = 7; | ||
*/ | ||
orderMigrations: string[] = []; | ||
|
||
/** | ||
* precommiters specifies the module names of the precommiters | ||
* to call in the order in which they should be called. If this is left empty | ||
* no precommit function will be registered. | ||
* | ||
* @generated from field: repeated string precommiters = 8; | ||
*/ | ||
precommiters: string[] = []; | ||
|
||
/** | ||
* prepare_check_staters specifies the module names of the prepare_check_staters | ||
* to call in the order in which they should be called. If this is left empty | ||
* no preparecheckstate function will be registered. | ||
* | ||
* @generated from field: repeated string prepare_check_staters = 9; | ||
*/ | ||
prepareCheckStaters: string[] = []; | ||
|
||
constructor(data?: PartialMessage<Module>) { | ||
super(); | ||
proto3.util.initPartial(data, this); | ||
|
@@ -77,6 +104,9 @@ export class Module extends Message<Module> { | |
{ no: 4, name: "init_genesis", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true }, | ||
{ no: 5, name: "export_genesis", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true }, | ||
{ no: 6, name: "override_store_keys", kind: "message", T: StoreKeyConfig, repeated: true }, | ||
{ no: 7, name: "order_migrations", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true }, | ||
{ no: 8, name: "precommiters", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true }, | ||
{ no: 9, name: "prepare_check_staters", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true }, | ||
]); | ||
|
||
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): Module { | ||
|
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
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
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
Oops, something went wrong.