-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f61d6cd
commit bbc1fb6
Showing
212 changed files
with
5,721 additions
and
2,858 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
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,84 @@ | ||
syntax = "proto3"; | ||
|
||
package amino; | ||
|
||
import "google/protobuf/descriptor.proto"; | ||
|
||
// TODO(fdymylja): once we fully migrate to protov2 the go_package needs to be updated. | ||
// We need this right now because gogoproto codegen needs to import the extension. | ||
option go_package = "github.com/cosmos/cosmos-sdk/types/tx/amino"; | ||
|
||
extend google.protobuf.MessageOptions { | ||
// name is the string used when registering a concrete | ||
// type into the Amino type registry, via the Amino codec's | ||
// `RegisterConcrete()` method. This string MUST be at most 39 | ||
// characters long, or else the message will be rejected by the | ||
// Ledger hardware device. | ||
string name = 11110001; | ||
|
||
// encoding describes the encoding format used by Amino for the given | ||
// message. The field type is chosen to be a string for | ||
// flexibility, but it should ideally be short and expected to be | ||
// machine-readable, for example "base64" or "utf8_json". We | ||
// highly recommend to use underscores for word separation instead of spaces. | ||
// | ||
// If left empty, then the Amino encoding is expected to be the same as the | ||
// Protobuf one. | ||
// | ||
// This annotation should not be confused with the `encoding` | ||
// one which operates on the field level. | ||
string message_encoding = 11110002; | ||
} | ||
|
||
extend google.protobuf.FieldOptions { | ||
// encoding describes the encoding format used by Amino for | ||
// the given field. The field type is chosen to be a string for | ||
// flexibility, but it should ideally be short and expected to be | ||
// machine-readable, for example "base64" or "utf8_json". We | ||
// highly recommend to use underscores for word separation instead of spaces. | ||
// | ||
// If left empty, then the Amino encoding is expected to be the same as the | ||
// Protobuf one. | ||
// | ||
// This annotation should not be confused with the | ||
// `message_encoding` one which operates on the message level. | ||
string encoding = 11110003; | ||
|
||
// field_name sets a different field name (i.e. key name) in | ||
// the amino JSON object for the given field. | ||
// | ||
// Example: | ||
// | ||
// message Foo { | ||
// string bar = 1 [(amino.field_name) = "baz"]; | ||
// } | ||
// | ||
// Then the Amino encoding of Foo will be: | ||
// `{"baz":"some value"}` | ||
string field_name = 11110004; | ||
|
||
// dont_omitempty sets the field in the JSON object even if | ||
// its value is empty, i.e. equal to the Golang zero value. To learn what | ||
// the zero values are, see https://go.dev/ref/spec#The_zero_value. | ||
// | ||
// Fields default to `omitempty`, which is the default behavior when this | ||
// annotation is unset. When set to true, then the field value in the | ||
// JSON object will be set, i.e. not `undefined`. | ||
// | ||
// Example: | ||
// | ||
// message Foo { | ||
// string bar = 1; | ||
// string baz = 2 [(amino.dont_omitempty) = true]; | ||
// } | ||
// | ||
// f := Foo{}; | ||
// out := AminoJSONEncoder(&f); | ||
// out == {"baz":""} | ||
bool dont_omitempty = 11110005; | ||
|
||
// oneof_name sets the type name for the given field oneof field. This is used | ||
// by the Amino JSON encoder to encode the type of the oneof field, and must be the same string in | ||
// the RegisterConcrete() method usage used to register the concrete type. | ||
string oneof_name = 11110006; | ||
} |
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 was deleted.
Oops, something went wrong.
65 changes: 65 additions & 0 deletions
65
third_party/proto/cosmos/app/runtime/v1alpha1/module.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
syntax = "proto3"; | ||
|
||
package cosmos.app.runtime.v1alpha1; | ||
|
||
import "cosmos/app/v1alpha1/module.proto"; | ||
|
||
// Module is the config object for the runtime module. | ||
message Module { | ||
option (cosmos.app.v1alpha1.module) = { | ||
go_import: "github.com/cosmos/cosmos-sdk/runtime" | ||
use_package: {name: "cosmos.app.v1alpha1"} | ||
}; | ||
|
||
// app_name is the name of the app. | ||
string app_name = 1; | ||
|
||
// begin_blockers specifies the module names of begin blockers | ||
// to call in the order in which they should be called. If this is left empty | ||
// no begin blocker will be registered. | ||
repeated string begin_blockers = 2; | ||
|
||
// end_blockers specifies the module names of the end blockers | ||
// to call in the order in which they should be called. If this is left empty | ||
// no end blocker will be registered. | ||
repeated string end_blockers = 3; | ||
|
||
// init_genesis specifies the module names of init genesis functions | ||
// to call in the order in which they should be called. If this is left empty | ||
// no init genesis function will be registered. | ||
repeated string init_genesis = 4; | ||
|
||
// export_genesis specifies the order in which to export module genesis data. | ||
// If this is left empty, the init_genesis order will be used for export genesis | ||
// if it is specified. | ||
repeated string export_genesis = 5; | ||
|
||
// override_store_keys is an optional list of overrides for the module store keys | ||
// to be used in keeper construction. | ||
repeated StoreKeyConfig override_store_keys = 6; | ||
|
||
// 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 | ||
repeated string order_migrations = 7; | ||
|
||
// 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. | ||
repeated string precommiters = 8; | ||
|
||
// 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. | ||
repeated string prepare_check_staters = 9; | ||
} | ||
|
||
// StoreKeyConfig may be supplied to override the default module store key, which | ||
// is the module name. | ||
message StoreKeyConfig { | ||
// name of the module to override the store key of | ||
string module_name = 1; | ||
|
||
// the kv store key to use instead of the module name. | ||
string kv_store_key = 2; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
syntax = "proto3"; | ||
|
||
package cosmos.auth.module.v1; | ||
|
||
import "cosmos/app/v1alpha1/module.proto"; | ||
|
||
// Module is the config object for the auth module. | ||
message Module { | ||
option (cosmos.app.v1alpha1.module) = { | ||
go_import: "github.com/cosmos/cosmos-sdk/x/auth" | ||
}; | ||
|
||
// bech32_prefix is the bech32 account prefix for the app. | ||
string bech32_prefix = 1; | ||
|
||
// module_account_permissions are module account permissions. | ||
repeated ModuleAccountPermission module_account_permissions = 2; | ||
|
||
// authority defines the custom module authority. If not set, defaults to the governance module. | ||
string authority = 3; | ||
} | ||
|
||
// ModuleAccountPermission represents permissions for a module account. | ||
message ModuleAccountPermission { | ||
// account is the name of the module. | ||
string account = 1; | ||
|
||
// permissions are the permissions this module has. Currently recognized | ||
// values are minter, burner and staking. | ||
repeated string permissions = 2; | ||
} |
Oops, something went wrong.