-
Notifications
You must be signed in to change notification settings - Fork 58
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
Showing
146 changed files
with
12,319 additions
and
165 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
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,79 @@ | ||
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; | ||
} |
50 changes: 50 additions & 0 deletions
50
module/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,50 @@ | ||
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; | ||
} | ||
|
||
// 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; | ||
} |
Oops, something went wrong.