Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/proto-types-gen/proto/cosmos/authz/v1beta1/event.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ option go_package = "github.com/cosmos/cosmos-sdk/x/authz";

// EventGrant is emitted on Msg/Grant
message EventGrant {
// Msg type URL for which an autorization is granted
// Msg type URL for which an authorization is granted
string msg_type_url = 2;
// Granter account address
string granter = 3;
Expand All @@ -15,7 +15,7 @@ message EventGrant {

// EventRevoke is emitted on Msg/Revoke
message EventRevoke {
// Msg type URL for which an autorization is revoked
// Msg type URL for which an authorization is revoked
string msg_type_url = 2;
// Granter account address
string granter = 3;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import "cosmos/staking/v1beta1/staking.proto";

// GenesisState defines the staking module's genesis state.
message GenesisState {
// params defines all the paramaters of related to deposit.
// params defines all the parameters of related to deposit.
Params params = 1 [(gogoproto.nullable) = false];

// last_total_power tracks the total amounts of bonded tokens recorded during
Expand Down
2 changes: 1 addition & 1 deletion src/proto-types-gen/proto/cosmwasm/wasm/v1/proposal.proto
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ message InstantiateContractProposal {
string admin = 4;
// CodeID is the reference to the stored WASM code
uint64 code_id = 5 [ (gogoproto.customname) = "CodeID" ];
// Label is optional metadata to be stored with a constract instance.
// Label is optional metadata to be stored with a construct instance.
string label = 6;
// Msg json encoded message to be passed to the contract on instantiation
bytes msg = 7 [ (gogoproto.casttype) = "RawContractMessage" ];
Expand Down