diff --git a/__fixtures__/chain1/cosmos/auth/v1beta1/genesis.proto b/__fixtures__/chain1/cosmos/auth/v1beta1/genesis.proto index c88b94ee4e..48f068b872 100644 --- a/__fixtures__/chain1/cosmos/auth/v1beta1/genesis.proto +++ b/__fixtures__/chain1/cosmos/auth/v1beta1/genesis.proto @@ -9,7 +9,7 @@ option go_package = "github.com/cosmos/cosmos-sdk/x/auth/types"; // GenesisState defines the auth module's genesis state. message GenesisState { - // params defines all the paramaters of the module. + // params defines all the parameters of the module. Params params = 1 [(gogoproto.nullable) = false]; // accounts are the accounts present at genesis. diff --git a/__fixtures__/chain1/cosmos/bank/v1beta1/genesis.proto b/__fixtures__/chain1/cosmos/bank/v1beta1/genesis.proto index aa35790b7a..467b6557e2 100644 --- a/__fixtures__/chain1/cosmos/bank/v1beta1/genesis.proto +++ b/__fixtures__/chain1/cosmos/bank/v1beta1/genesis.proto @@ -10,7 +10,7 @@ option go_package = "github.com/cosmos/cosmos-sdk/x/bank/types"; // GenesisState defines the bank module's genesis state. message GenesisState { - // params defines all the paramaters of the module. + // params defines all the parameters of the module. Params params = 1 [(gogoproto.nullable) = false]; // balances is an array containing the balances of all the accounts. diff --git a/__fixtures__/chain1/cosmos/distribution/v1beta1/genesis.proto b/__fixtures__/chain1/cosmos/distribution/v1beta1/genesis.proto index 4662e8df42..d50a2a9293 100644 --- a/__fixtures__/chain1/cosmos/distribution/v1beta1/genesis.proto +++ b/__fixtures__/chain1/cosmos/distribution/v1beta1/genesis.proto @@ -99,7 +99,7 @@ message ValidatorSlashEventRecord { // validator_address is the address of the validator. string validator_address = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"]; - // height defines the block height at which the slash event occured. + // height defines the block height at which the slash event occurred. uint64 height = 2; // period is the period of the slash event. uint64 period = 3; @@ -112,7 +112,7 @@ message GenesisState { option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; - // params defines all the paramaters of the module. + // params defines all the parameters of the module. Params params = 1 [(gogoproto.nullable) = false]; // fee_pool defines the fee pool at genesis. diff --git a/__fixtures__/chain1/cosmos/gov/v1/genesis.proto b/__fixtures__/chain1/cosmos/gov/v1/genesis.proto index cb44a7f34c..8ef5b0fc91 100644 --- a/__fixtures__/chain1/cosmos/gov/v1/genesis.proto +++ b/__fixtures__/chain1/cosmos/gov/v1/genesis.proto @@ -17,10 +17,10 @@ message GenesisState { repeated Vote votes = 3; // proposals defines all the proposals present at genesis. repeated Proposal proposals = 4; - // params defines all the paramaters of related to deposit. + // params defines all the parameters of related to deposit. DepositParams deposit_params = 5; - // params defines all the paramaters of related to voting. + // params defines all the parameters of related to voting. VotingParams voting_params = 6; - // params defines all the paramaters of related to tally. + // params defines all the parameters of related to tally. TallyParams tally_params = 7; } diff --git a/__fixtures__/chain1/cosmos/gov/v1beta1/genesis.proto b/__fixtures__/chain1/cosmos/gov/v1beta1/genesis.proto index be9b07e467..28cdacb369 100644 --- a/__fixtures__/chain1/cosmos/gov/v1beta1/genesis.proto +++ b/__fixtures__/chain1/cosmos/gov/v1beta1/genesis.proto @@ -17,10 +17,10 @@ message GenesisState { repeated Vote votes = 3 [(gogoproto.castrepeated) = "Votes", (gogoproto.nullable) = false]; // proposals defines all the proposals present at genesis. repeated Proposal proposals = 4 [(gogoproto.castrepeated) = "Proposals", (gogoproto.nullable) = false]; - // params defines all the paramaters of related to deposit. + // params defines all the parameters of related to deposit. DepositParams deposit_params = 5 [(gogoproto.nullable) = false]; - // params defines all the paramaters of related to voting. + // params defines all the parameters of related to voting. VotingParams voting_params = 6 [(gogoproto.nullable) = false]; - // params defines all the paramaters of related to tally. + // params defines all the parameters of related to tally. TallyParams tally_params = 7 [(gogoproto.nullable) = false]; } diff --git a/__fixtures__/chain1/cosmos/mint/v1beta1/genesis.proto b/__fixtures__/chain1/cosmos/mint/v1beta1/genesis.proto index 4e783fb544..30199d1ddb 100644 --- a/__fixtures__/chain1/cosmos/mint/v1beta1/genesis.proto +++ b/__fixtures__/chain1/cosmos/mint/v1beta1/genesis.proto @@ -11,6 +11,6 @@ message GenesisState { // minter is a space for holding current inflation information. Minter minter = 1 [(gogoproto.nullable) = false]; - // params defines all the paramaters of the module. + // params defines all the parameters of the module. Params params = 2 [(gogoproto.nullable) = false]; } diff --git a/__fixtures__/chain1/cosmos/slashing/v1beta1/genesis.proto b/__fixtures__/chain1/cosmos/slashing/v1beta1/genesis.proto index 312d56aa2f..165400d287 100644 --- a/__fixtures__/chain1/cosmos/slashing/v1beta1/genesis.proto +++ b/__fixtures__/chain1/cosmos/slashing/v1beta1/genesis.proto @@ -9,7 +9,7 @@ import "cosmos_proto/cosmos.proto"; // GenesisState defines the slashing 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]; // signing_infos represents a map between validator addresses and their diff --git a/__fixtures__/chain1/cosmos/staking/v1beta1/genesis.proto b/__fixtures__/chain1/cosmos/staking/v1beta1/genesis.proto index bf3c298e39..6d0177217b 100644 --- a/__fixtures__/chain1/cosmos/staking/v1beta1/genesis.proto +++ b/__fixtures__/chain1/cosmos/staking/v1beta1/genesis.proto @@ -9,7 +9,7 @@ import "cosmos_proto/cosmos.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 diff --git a/__fixtures__/chain1/evmos/inflation/v1/genesis.proto b/__fixtures__/chain1/evmos/inflation/v1/genesis.proto index f7d4b6cee7..2d6e78d517 100644 --- a/__fixtures__/chain1/evmos/inflation/v1/genesis.proto +++ b/__fixtures__/chain1/evmos/inflation/v1/genesis.proto @@ -9,7 +9,7 @@ option go_package = "github.com/tharsis/evmos/v4/x/inflation/types"; // GenesisState defines the inflation module's genesis state. message GenesisState { - // params defines all the paramaters of the module. + // params defines all the parameters of the module. Params params = 1 [ (gogoproto.nullable) = false ]; // amount of past periods, based on the epochs per period param uint64 period = 2; diff --git a/__fixtures__/chain1/evmos/recovery/v1/genesis.proto b/__fixtures__/chain1/evmos/recovery/v1/genesis.proto index e433a0a61f..c7d56af9ed 100644 --- a/__fixtures__/chain1/evmos/recovery/v1/genesis.proto +++ b/__fixtures__/chain1/evmos/recovery/v1/genesis.proto @@ -8,7 +8,7 @@ option go_package = "github.com/tharsis/evmos/v4/x/recovery/types"; // GenesisState defines the recovery module's genesis state. message GenesisState { - // params defines all the paramaters of the module. + // params defines all the parameters of the module. Params params = 1 [ (gogoproto.nullable) = false ]; } diff --git a/__fixtures__/chain1/google/api/expr/v1alpha1/eval.proto b/__fixtures__/chain1/google/api/expr/v1alpha1/eval.proto index 38ae8bb667..8295d67b6c 100644 --- a/__fixtures__/chain1/google/api/expr/v1alpha1/eval.proto +++ b/__fixtures__/chain1/google/api/expr/v1alpha1/eval.proto @@ -27,7 +27,7 @@ option java_package = "com.google.api.expr.v1alpha1"; // The state of an evaluation. // -// Can represent an inital, partial, or completed state of evaluation. +// Can represent an initial, partial, or completed state of evaluation. message EvalState { // A single evalution result. message Result { diff --git a/__fixtures__/chain1/osmosis/incentives/genesis.proto b/__fixtures__/chain1/osmosis/incentives/genesis.proto index 402970b0ab..0a2ce59be2 100644 --- a/__fixtures__/chain1/osmosis/incentives/genesis.proto +++ b/__fixtures__/chain1/osmosis/incentives/genesis.proto @@ -16,7 +16,7 @@ message GenesisState { // gauges are all gauges that should exist at genesis repeated Gauge gauges = 2 [ (gogoproto.nullable) = false ]; // lockable_durations are all lockup durations that gauges can be locked for - // in order to recieve incentives + // in order to receive incentives repeated google.protobuf.Duration lockable_durations = 3 [ (gogoproto.nullable) = false, (gogoproto.stdduration) = true, diff --git a/__fixtures__/chain1/osmosis/incentives/query.proto b/__fixtures__/chain1/osmosis/incentives/query.proto index d2d0e64fcc..0766bf025a 100644 --- a/__fixtures__/chain1/osmosis/incentives/query.proto +++ b/__fixtures__/chain1/osmosis/incentives/query.proto @@ -39,12 +39,12 @@ service Query { option (google.api.http).get = "/osmosis/incentives/v1beta1/active_gauges_per_denom"; } - // Returns scheduled gauges that have not yet occured + // Returns scheduled gauges that have not yet occurred rpc UpcomingGauges(UpcomingGaugesRequest) returns (UpcomingGaugesResponse) { option (google.api.http).get = "/osmosis/incentives/v1beta1/upcoming_gauges"; } - // UpcomingGaugesPerDenom returns scheduled gauges that have not yet occured + // UpcomingGaugesPerDenom returns scheduled gauges that have not yet occurred // by denom rpc UpcomingGaugesPerDenom(UpcomingGaugesPerDenomRequest) returns (UpcomingGaugesPerDenomResponse) { @@ -156,7 +156,7 @@ message RewardsEstRequest { int64 end_epoch = 3; } message RewardsEstResponse { - // Estimated coin rewards that will be recieved at provided address + // Estimated coin rewards that will be received at provided address // from specified locks between current time and end epoch repeated cosmos.base.v1beta1.Coin coins = 1 [ (gogoproto.nullable) = false, @@ -166,7 +166,7 @@ message RewardsEstResponse { message QueryLockableDurationsRequest {} message QueryLockableDurationsResponse { - // Time durations that users can lock coins for in order to recieve rewards + // Time durations that users can lock coins for in order to receive rewards repeated google.protobuf.Duration lockable_durations = 1 [ (gogoproto.nullable) = false, (gogoproto.stdduration) = true, diff --git a/__fixtures__/chain1/osmosis/mint/v1beta1/genesis.proto b/__fixtures__/chain1/osmosis/mint/v1beta1/genesis.proto index 67534debf9..4ba240e0b3 100644 --- a/__fixtures__/chain1/osmosis/mint/v1beta1/genesis.proto +++ b/__fixtures__/chain1/osmosis/mint/v1beta1/genesis.proto @@ -11,7 +11,7 @@ message GenesisState { // minter is an abstraction for holding current rewards information. Minter minter = 1 [ (gogoproto.nullable) = false ]; - // params defines all the paramaters of the mint module. + // params defines all the parameters of the mint module. Params params = 2 [ (gogoproto.nullable) = false ]; // reduction_started_epoch is the first epoch in which the reduction of mint diff --git a/__fixtures__/chain1/osmosis/pool-incentives/v1beta1/genesis.proto b/__fixtures__/chain1/osmosis/pool-incentives/v1beta1/genesis.proto index 5130202917..e97288ad03 100644 --- a/__fixtures__/chain1/osmosis/pool-incentives/v1beta1/genesis.proto +++ b/__fixtures__/chain1/osmosis/pool-incentives/v1beta1/genesis.proto @@ -9,7 +9,7 @@ option go_package = "github.com/osmosis-labs/osmosis/v13/x/pool-incentives/types // GenesisState defines the pool incentives module's genesis state. message GenesisState { - // params defines all the paramaters of the module. + // params defines all the parameters of the module. Params params = 1 [ (gogoproto.nullable) = false ]; repeated google.protobuf.Duration lockable_durations = 2 [ (gogoproto.nullable) = false, diff --git a/__fixtures__/chain1/osmosis/pool-incentives/v1beta1/gov.proto b/__fixtures__/chain1/osmosis/pool-incentives/v1beta1/gov.proto index d0a48bca00..ecf1bc5975 100644 --- a/__fixtures__/chain1/osmosis/pool-incentives/v1beta1/gov.proto +++ b/__fixtures__/chain1/osmosis/pool-incentives/v1beta1/gov.proto @@ -26,7 +26,7 @@ message ReplacePoolIncentivesProposal { // UpdatePoolIncentivesProposal is a gov Content type for updating the pool // incentives. If a UpdatePoolIncentivesProposal passes, all the DistrRecords -// in the proposals are edited. An existing DistrRecord is not overriden unless +// in the proposals are edited. An existing DistrRecord is not overridden unless // explicitly included in the proposal. // This differs from an ReplacePoolIncentivesProposal because it only does an // in place update of the DistrRecords for gauges explicitly mentioned in the diff --git a/__fixtures__/chain1/osmosis/tokenfactory/v1beta1/genesis.proto b/__fixtures__/chain1/osmosis/tokenfactory/v1beta1/genesis.proto index e8c2c7c208..794a1b50ed 100644 --- a/__fixtures__/chain1/osmosis/tokenfactory/v1beta1/genesis.proto +++ b/__fixtures__/chain1/osmosis/tokenfactory/v1beta1/genesis.proto @@ -9,7 +9,7 @@ option go_package = "github.com/osmosis-labs/osmosis/v13/x/tokenfactory/types"; // GenesisState defines the tokenfactory module's genesis state. message GenesisState { - // params defines the paramaters of the module. + // params defines the parameters of the module. Params params = 1 [ (gogoproto.nullable) = false ]; repeated GenesisDenom factory_denoms = 2 [ diff --git a/__fixtures__/chain1/osmosis/twap/v1beta1/twap_record.proto b/__fixtures__/chain1/osmosis/twap/v1beta1/twap_record.proto index d040b318eb..0b596522d0 100644 --- a/__fixtures__/chain1/osmosis/twap/v1beta1/twap_record.proto +++ b/__fixtures__/chain1/osmosis/twap/v1beta1/twap_record.proto @@ -58,7 +58,7 @@ message TwapRecord { // "github.com/cosmos/cosmos-sdk/types.Dec", // (gogoproto.nullable) = false]; - // This field contains the time in which the last spot price error occured. + // This field contains the time in which the last spot price error occurred. // It is used to alert the caller if they are getting a potentially erroneous // TWAP, due to an unforeseen underlying error. google.protobuf.Timestamp last_error_time = 11 [ diff --git a/__fixtures__/chain2/cosmos/auth/v1beta1/genesis.proto b/__fixtures__/chain2/cosmos/auth/v1beta1/genesis.proto index c88b94ee4e..48f068b872 100644 --- a/__fixtures__/chain2/cosmos/auth/v1beta1/genesis.proto +++ b/__fixtures__/chain2/cosmos/auth/v1beta1/genesis.proto @@ -9,7 +9,7 @@ option go_package = "github.com/cosmos/cosmos-sdk/x/auth/types"; // GenesisState defines the auth module's genesis state. message GenesisState { - // params defines all the paramaters of the module. + // params defines all the parameters of the module. Params params = 1 [(gogoproto.nullable) = false]; // accounts are the accounts present at genesis. diff --git a/__fixtures__/chain2/cosmos/bank/v1beta1/genesis.proto b/__fixtures__/chain2/cosmos/bank/v1beta1/genesis.proto index 8fd7329a0a..46eb94f427 100644 --- a/__fixtures__/chain2/cosmos/bank/v1beta1/genesis.proto +++ b/__fixtures__/chain2/cosmos/bank/v1beta1/genesis.proto @@ -9,7 +9,7 @@ option go_package = "github.com/cosmos/cosmos-sdk/x/bank/types"; // GenesisState defines the bank module's genesis state. message GenesisState { - // params defines all the paramaters of the module. + // params defines all the parameters of the module. Params params = 1 [(gogoproto.nullable) = false]; // balances is an array containing the balances of all the accounts. diff --git a/__fixtures__/chain2/cosmos/distribution/v1beta1/genesis.proto b/__fixtures__/chain2/cosmos/distribution/v1beta1/genesis.proto index c0b17cdf11..ecfda642ea 100644 --- a/__fixtures__/chain2/cosmos/distribution/v1beta1/genesis.proto +++ b/__fixtures__/chain2/cosmos/distribution/v1beta1/genesis.proto @@ -103,7 +103,7 @@ message ValidatorSlashEventRecord { // validator_address is the address of the validator. string validator_address = 1 [(gogoproto.moretags) = "yaml:\"validator_address\""]; - // height defines the block height at which the slash event occured. + // height defines the block height at which the slash event occurred. uint64 height = 2; // period is the period of the slash event. uint64 period = 3; @@ -116,7 +116,7 @@ message GenesisState { option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; - // params defines all the paramaters of the module. + // params defines all the parameters of the module. Params params = 1 [(gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"params\""]; // fee_pool defines the fee pool at genesis. diff --git a/__fixtures__/chain2/cosmos/mint/v1beta1/genesis.proto b/__fixtures__/chain2/cosmos/mint/v1beta1/genesis.proto index 4e783fb544..30199d1ddb 100644 --- a/__fixtures__/chain2/cosmos/mint/v1beta1/genesis.proto +++ b/__fixtures__/chain2/cosmos/mint/v1beta1/genesis.proto @@ -11,6 +11,6 @@ message GenesisState { // minter is a space for holding current inflation information. Minter minter = 1 [(gogoproto.nullable) = false]; - // params defines all the paramaters of the module. + // params defines all the parameters of the module. Params params = 2 [(gogoproto.nullable) = false]; } diff --git a/__fixtures__/chain2/cosmos/slashing/v1beta1/genesis.proto b/__fixtures__/chain2/cosmos/slashing/v1beta1/genesis.proto index a7aebcfbad..c7e441c237 100644 --- a/__fixtures__/chain2/cosmos/slashing/v1beta1/genesis.proto +++ b/__fixtures__/chain2/cosmos/slashing/v1beta1/genesis.proto @@ -8,7 +8,7 @@ import "cosmos/slashing/v1beta1/slashing.proto"; // GenesisState defines the slashing 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]; // signing_infos represents a map between validator addresses and their diff --git a/__fixtures__/chain2/cosmos/staking/v1beta1/genesis.proto b/__fixtures__/chain2/cosmos/staking/v1beta1/genesis.proto index d1563dbc54..4c46376886 100644 --- a/__fixtures__/chain2/cosmos/staking/v1beta1/genesis.proto +++ b/__fixtures__/chain2/cosmos/staking/v1beta1/genesis.proto @@ -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 diff --git a/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/auth/v1beta1/genesis.proto b/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/auth/v1beta1/genesis.proto index 24bb953e2c..d1aa66e462 100644 --- a/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/auth/v1beta1/genesis.proto +++ b/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/auth/v1beta1/genesis.proto @@ -10,7 +10,7 @@ option go_package = "github.com/cosmos/cosmos-sdk/x/auth/types"; // GenesisState defines the auth module's genesis state. message GenesisState { - // params defines all the paramaters of the module. + // params defines all the parameters of the module. Params params = 1 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true]; // accounts are the accounts present at genesis. diff --git a/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/bank/v1beta1/genesis.proto b/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/bank/v1beta1/genesis.proto index b44992c7d6..e7698de4e8 100644 --- a/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/bank/v1beta1/genesis.proto +++ b/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/bank/v1beta1/genesis.proto @@ -10,7 +10,7 @@ option go_package = "github.com/cosmos/cosmos-sdk/x/bank/types"; // GenesisState defines the bank module's genesis state. message GenesisState { - // params defines all the paramaters of the module. + // params defines all the parameters of the module. Params params = 1 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true]; // balances is an array containing the balances of all the accounts. diff --git a/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/distribution/v1beta1/genesis.proto b/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/distribution/v1beta1/genesis.proto index 5214b663d3..1a742af7a8 100644 --- a/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/distribution/v1beta1/genesis.proto +++ b/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/distribution/v1beta1/genesis.proto @@ -107,7 +107,7 @@ message ValidatorSlashEventRecord { // validator_address is the address of the validator. string validator_address = 1 [(gogoproto.moretags) = "yaml:\"validator_address\""]; - // height defines the block height at which the slash event occured. + // height defines the block height at which the slash event occurred. uint64 height = 2; // period is the period of the slash event. uint64 period = 3; @@ -121,7 +121,7 @@ message GenesisState { option (gogoproto.equal) = false; option (gogoproto.goproto_getters) = false; - // params defines all the paramaters of the module. + // params defines all the parameters of the module. Params params = 1 [(gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"params\"", (amino.dont_omitempty) = true]; diff --git a/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/gov/v1beta1/genesis.proto b/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/gov/v1beta1/genesis.proto index 621275600e..d8a1065818 100644 --- a/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/gov/v1beta1/genesis.proto +++ b/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/gov/v1beta1/genesis.proto @@ -22,13 +22,13 @@ message GenesisState { // proposals defines all the proposals present at genesis. repeated Proposal proposals = 4 [(gogoproto.castrepeated) = "Proposals", (gogoproto.nullable) = false, (amino.dont_omitempty) = true]; - // params defines all the paramaters of related to deposit. + // params defines all the parameters of related to deposit. DepositParams deposit_params = 5 [(gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"deposit_params\"", (amino.dont_omitempty) = true]; - // params defines all the paramaters of related to voting. + // params defines all the parameters of related to voting. VotingParams voting_params = 6 [(gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"voting_params\"", (amino.dont_omitempty) = true]; - // params defines all the paramaters of related to tally. + // params defines all the parameters of related to tally. TallyParams tally_params = 7 [(gogoproto.nullable) = false, (gogoproto.moretags) = "yaml:\"tally_params\"", (amino.dont_omitempty) = true]; } diff --git a/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/mint/v1beta1/genesis.proto b/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/mint/v1beta1/genesis.proto index dd658218fc..b6cc1504c1 100644 --- a/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/mint/v1beta1/genesis.proto +++ b/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/mint/v1beta1/genesis.proto @@ -12,6 +12,6 @@ message GenesisState { // minter is a space for holding current inflation information. Minter minter = 1 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true]; - // params defines all the paramaters of the module. + // params defines all the parameters of the module. Params params = 2 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true]; } diff --git a/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/slashing/v1beta1/genesis.proto b/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/slashing/v1beta1/genesis.proto index f747060e5e..14285292f8 100644 --- a/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/slashing/v1beta1/genesis.proto +++ b/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/slashing/v1beta1/genesis.proto @@ -9,7 +9,7 @@ import "amino/amino.proto"; // GenesisState defines the slashing 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, (amino.dont_omitempty) = true]; // signing_infos represents a map between validator addresses and their diff --git a/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/staking/v1beta1/genesis.proto b/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/staking/v1beta1/genesis.proto index 1769ab5b21..235fdbb4f1 100644 --- a/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/staking/v1beta1/genesis.proto +++ b/__fixtures__/osmojs/cosmos-sdk/proto/cosmos/staking/v1beta1/genesis.proto @@ -9,7 +9,7 @@ import "amino/amino.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, (amino.dont_omitempty) = true]; // last_total_power tracks the total amounts of bonded tokens recorded during diff --git a/__fixtures__/osmojs/osmosis/proto/osmosis/gamm/v1beta1/gov.proto b/__fixtures__/osmojs/osmosis/proto/osmosis/gamm/v1beta1/gov.proto index fbe594c3ea..e6a50dc227 100644 --- a/__fixtures__/osmojs/osmosis/proto/osmosis/gamm/v1beta1/gov.proto +++ b/__fixtures__/osmojs/osmosis/proto/osmosis/gamm/v1beta1/gov.proto @@ -25,7 +25,7 @@ message ReplaceMigrationRecordsProposal { // UpdateMigrationRecordsProposal is a gov Content type for updating the // migration records. If a UpdateMigrationRecordsProposal passes, all the // MigrationRecords in the proposals are edited. An existing -// BalancerToConcentratedPoolLink is not overriden unless explicitly included in +// BalancerToConcentratedPoolLink is not overridden unless explicitly included in // the proposal. This differs from a ReplaceMigrationRecordsProposal because it // only does an in place update of the MigrationRecords for records explicitly // mentioned in the proposal. diff --git a/__fixtures__/osmojs/osmosis/proto/osmosis/incentives/genesis.proto b/__fixtures__/osmojs/osmosis/proto/osmosis/incentives/genesis.proto index 4c9dd6daf8..7256258ba8 100644 --- a/__fixtures__/osmojs/osmosis/proto/osmosis/incentives/genesis.proto +++ b/__fixtures__/osmojs/osmosis/proto/osmosis/incentives/genesis.proto @@ -16,7 +16,7 @@ message GenesisState { // gauges are all gauges that should exist at genesis repeated Gauge gauges = 2 [ (gogoproto.nullable) = false ]; // lockable_durations are all lockup durations that gauges can be locked for - // in order to recieve incentives + // in order to receive incentives repeated google.protobuf.Duration lockable_durations = 3 [ (gogoproto.nullable) = false, (gogoproto.stdduration) = true, diff --git a/__fixtures__/osmojs/osmosis/proto/osmosis/incentives/query.proto b/__fixtures__/osmojs/osmosis/proto/osmosis/incentives/query.proto index b6a038505c..4a6c8d2065 100644 --- a/__fixtures__/osmojs/osmosis/proto/osmosis/incentives/query.proto +++ b/__fixtures__/osmojs/osmosis/proto/osmosis/incentives/query.proto @@ -39,12 +39,12 @@ service Query { option (google.api.http).get = "/osmosis/incentives/v1beta1/active_gauges_per_denom"; } - // Returns scheduled gauges that have not yet occured + // Returns scheduled gauges that have not yet occurred rpc UpcomingGauges(UpcomingGaugesRequest) returns (UpcomingGaugesResponse) { option (google.api.http).get = "/osmosis/incentives/v1beta1/upcoming_gauges"; } - // UpcomingGaugesPerDenom returns scheduled gauges that have not yet occured + // UpcomingGaugesPerDenom returns scheduled gauges that have not yet occurred // by denom rpc UpcomingGaugesPerDenom(UpcomingGaugesPerDenomRequest) returns (UpcomingGaugesPerDenomResponse) { @@ -156,7 +156,7 @@ message RewardsEstRequest { int64 end_epoch = 3; } message RewardsEstResponse { - // Estimated coin rewards that will be recieved at provided address + // Estimated coin rewards that will be received at provided address // from specified locks between current time and end epoch repeated cosmos.base.v1beta1.Coin coins = 1 [ (gogoproto.nullable) = false, @@ -166,7 +166,7 @@ message RewardsEstResponse { message QueryLockableDurationsRequest {} message QueryLockableDurationsResponse { - // Time durations that users can lock coins for in order to recieve rewards + // Time durations that users can lock coins for in order to receive rewards repeated google.protobuf.Duration lockable_durations = 1 [ (gogoproto.nullable) = false, (gogoproto.stdduration) = true, diff --git a/__fixtures__/osmojs/osmosis/proto/osmosis/mint/v1beta1/genesis.proto b/__fixtures__/osmojs/osmosis/proto/osmosis/mint/v1beta1/genesis.proto index 16dbc19560..264acf4e23 100644 --- a/__fixtures__/osmojs/osmosis/proto/osmosis/mint/v1beta1/genesis.proto +++ b/__fixtures__/osmojs/osmosis/proto/osmosis/mint/v1beta1/genesis.proto @@ -11,7 +11,7 @@ message GenesisState { // minter is an abstraction for holding current rewards information. Minter minter = 1 [ (gogoproto.nullable) = false ]; - // params defines all the paramaters of the mint module. + // params defines all the parameters of the mint module. Params params = 2 [ (gogoproto.nullable) = false ]; // reduction_started_epoch is the first epoch in which the reduction of mint diff --git a/__fixtures__/osmojs/osmosis/proto/osmosis/pool-incentives/v1beta1/genesis.proto b/__fixtures__/osmojs/osmosis/proto/osmosis/pool-incentives/v1beta1/genesis.proto index 42cc6a9844..ea485e80f5 100644 --- a/__fixtures__/osmojs/osmosis/proto/osmosis/pool-incentives/v1beta1/genesis.proto +++ b/__fixtures__/osmojs/osmosis/proto/osmosis/pool-incentives/v1beta1/genesis.proto @@ -9,7 +9,7 @@ option go_package = "github.com/osmosis-labs/osmosis/v15/x/pool-incentives/types // GenesisState defines the pool incentives module's genesis state. message GenesisState { - // params defines all the paramaters of the module. + // params defines all the parameters of the module. Params params = 1 [ (gogoproto.nullable) = false ]; repeated google.protobuf.Duration lockable_durations = 2 [ (gogoproto.nullable) = false, diff --git a/__fixtures__/osmojs/osmosis/proto/osmosis/pool-incentives/v1beta1/gov.proto b/__fixtures__/osmojs/osmosis/proto/osmosis/pool-incentives/v1beta1/gov.proto index 2c3cac204a..60d7027978 100644 --- a/__fixtures__/osmojs/osmosis/proto/osmosis/pool-incentives/v1beta1/gov.proto +++ b/__fixtures__/osmojs/osmosis/proto/osmosis/pool-incentives/v1beta1/gov.proto @@ -28,7 +28,7 @@ message ReplacePoolIncentivesProposal { // UpdatePoolIncentivesProposal is a gov Content type for updating the pool // incentives. If a UpdatePoolIncentivesProposal passes, all the DistrRecords -// in the proposals are edited. An existing DistrRecord is not overriden unless +// in the proposals are edited. An existing DistrRecord is not overridden unless // explicitly included in the proposal. // This differs from an ReplacePoolIncentivesProposal because it only does an // in place update of the DistrRecords for gauges explicitly mentioned in the diff --git a/__fixtures__/osmojs/osmosis/proto/osmosis/tokenfactory/v1beta1/genesis.proto b/__fixtures__/osmojs/osmosis/proto/osmosis/tokenfactory/v1beta1/genesis.proto index 92af2c466a..fd2f511f0d 100644 --- a/__fixtures__/osmojs/osmosis/proto/osmosis/tokenfactory/v1beta1/genesis.proto +++ b/__fixtures__/osmojs/osmosis/proto/osmosis/tokenfactory/v1beta1/genesis.proto @@ -9,7 +9,7 @@ option go_package = "github.com/osmosis-labs/osmosis/v15/x/tokenfactory/types"; // GenesisState defines the tokenfactory module's genesis state. message GenesisState { - // params defines the paramaters of the module. + // params defines the parameters of the module. Params params = 1 [ (gogoproto.nullable) = false ]; repeated GenesisDenom factory_denoms = 2 [ diff --git a/__fixtures__/osmojs/osmosis/proto/osmosis/twap/v1beta1/twap_record.proto b/__fixtures__/osmojs/osmosis/proto/osmosis/twap/v1beta1/twap_record.proto index 83f490be00..9662dca477 100644 --- a/__fixtures__/osmojs/osmosis/proto/osmosis/twap/v1beta1/twap_record.proto +++ b/__fixtures__/osmojs/osmosis/proto/osmosis/twap/v1beta1/twap_record.proto @@ -60,7 +60,7 @@ message TwapRecord { (gogoproto.nullable) = false ]; - // This field contains the time in which the last spot price error occured. + // This field contains the time in which the last spot price error occurred. // It is used to alert the caller if they are getting a potentially erroneous // TWAP, due to an unforeseen underlying error. google.protobuf.Timestamp last_error_time = 11 [ diff --git a/__fixtures__/output1/cosmos/auth/v1beta1/genesis.ts b/__fixtures__/output1/cosmos/auth/v1beta1/genesis.ts index a4782c8cd5..c77392d3c1 100644 --- a/__fixtures__/output1/cosmos/auth/v1beta1/genesis.ts +++ b/__fixtures__/output1/cosmos/auth/v1beta1/genesis.ts @@ -6,7 +6,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "cosmos.auth.v1beta1"; /** GenesisState defines the auth module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** accounts are the accounts present at genesis. */ accounts: Any[]; diff --git a/__fixtures__/output1/cosmos/bank/v1beta1/genesis.ts b/__fixtures__/output1/cosmos/bank/v1beta1/genesis.ts index 9a77dbdf3e..169ddbd8d4 100644 --- a/__fixtures__/output1/cosmos/bank/v1beta1/genesis.ts +++ b/__fixtures__/output1/cosmos/bank/v1beta1/genesis.ts @@ -6,7 +6,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "cosmos.bank.v1beta1"; /** GenesisState defines the bank module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** balances is an array containing the balances of all the accounts. */ balances: Balance[]; diff --git a/__fixtures__/output1/cosmos/distribution/v1beta1/genesis.ts b/__fixtures__/output1/cosmos/distribution/v1beta1/genesis.ts index 893b928dbb..2ce1bb735f 100644 --- a/__fixtures__/output1/cosmos/distribution/v1beta1/genesis.ts +++ b/__fixtures__/output1/cosmos/distribution/v1beta1/genesis.ts @@ -106,7 +106,7 @@ export interface DelegatorStartingInfoRecordSDKType { export interface ValidatorSlashEventRecord { /** validator_address is the address of the validator. */ validatorAddress: string; - /** height defines the block height at which the slash event occured. */ + /** height defines the block height at which the slash event occurred. */ height: Long; /** period is the period of the slash event. */ period: Long; @@ -122,7 +122,7 @@ export interface ValidatorSlashEventRecordSDKType { } /** GenesisState defines the distribution module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** fee_pool defines the fee pool at genesis. */ feePool: FeePool; diff --git a/__fixtures__/output1/cosmos/gov/v1/genesis.ts b/__fixtures__/output1/cosmos/gov/v1/genesis.ts index 03cc6d771f..ec7a768cbe 100644 --- a/__fixtures__/output1/cosmos/gov/v1/genesis.ts +++ b/__fixtures__/output1/cosmos/gov/v1/genesis.ts @@ -13,11 +13,11 @@ export interface GenesisState { votes: Vote[]; /** proposals defines all the proposals present at genesis. */ proposals: Proposal[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ depositParams?: DepositParams; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ votingParams?: VotingParams; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tallyParams?: TallyParams; } /** GenesisState defines the gov module's genesis state. */ diff --git a/__fixtures__/output1/cosmos/gov/v1beta1/genesis.ts b/__fixtures__/output1/cosmos/gov/v1beta1/genesis.ts index 16779bc681..d581954a7a 100644 --- a/__fixtures__/output1/cosmos/gov/v1beta1/genesis.ts +++ b/__fixtures__/output1/cosmos/gov/v1beta1/genesis.ts @@ -13,11 +13,11 @@ export interface GenesisState { votes: Vote[]; /** proposals defines all the proposals present at genesis. */ proposals: Proposal[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ depositParams: DepositParams; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ votingParams: VotingParams; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tallyParams: TallyParams; } /** GenesisState defines the gov module's genesis state. */ diff --git a/__fixtures__/output1/cosmos/mint/v1beta1/genesis.ts b/__fixtures__/output1/cosmos/mint/v1beta1/genesis.ts index ede9f474e4..e3520be955 100644 --- a/__fixtures__/output1/cosmos/mint/v1beta1/genesis.ts +++ b/__fixtures__/output1/cosmos/mint/v1beta1/genesis.ts @@ -7,7 +7,7 @@ export const protobufPackage = "cosmos.mint.v1beta1"; export interface GenesisState { /** minter is a space for holding current inflation information. */ minter: Minter; - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; } /** GenesisState defines the mint module's genesis state. */ diff --git a/__fixtures__/output1/cosmos/slashing/v1beta1/genesis.ts b/__fixtures__/output1/cosmos/slashing/v1beta1/genesis.ts index 8445b41ff5..d37b625b7d 100644 --- a/__fixtures__/output1/cosmos/slashing/v1beta1/genesis.ts +++ b/__fixtures__/output1/cosmos/slashing/v1beta1/genesis.ts @@ -5,7 +5,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "cosmos.slashing.v1beta1"; /** GenesisState defines the slashing module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params: Params; /** * signing_infos represents a map between validator addresses and their diff --git a/__fixtures__/output1/cosmos/staking/v1beta1/genesis.ts b/__fixtures__/output1/cosmos/staking/v1beta1/genesis.ts index 3e6c114198..5bdd4e8d43 100644 --- a/__fixtures__/output1/cosmos/staking/v1beta1/genesis.ts +++ b/__fixtures__/output1/cosmos/staking/v1beta1/genesis.ts @@ -5,7 +5,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "cosmos.staking.v1beta1"; /** GenesisState defines the staking module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params: Params; /** * last_total_power tracks the total amounts of bonded tokens recorded during diff --git a/__fixtures__/output1/evmos/inflation/v1/genesis.ts b/__fixtures__/output1/evmos/inflation/v1/genesis.ts index 55d62242b5..dbc93f493d 100644 --- a/__fixtures__/output1/evmos/inflation/v1/genesis.ts +++ b/__fixtures__/output1/evmos/inflation/v1/genesis.ts @@ -5,7 +5,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "evmos.inflation.v1"; /** GenesisState defines the inflation module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** amount of past periods, based on the epochs per period param */ period: Long; diff --git a/__fixtures__/output1/evmos/recovery/v1/genesis.ts b/__fixtures__/output1/evmos/recovery/v1/genesis.ts index dcf51b9e73..f7ba109f91 100644 --- a/__fixtures__/output1/evmos/recovery/v1/genesis.ts +++ b/__fixtures__/output1/evmos/recovery/v1/genesis.ts @@ -5,7 +5,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "evmos.recovery.v1"; /** GenesisState defines the recovery module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; } /** GenesisState defines the recovery module's genesis state. */ diff --git a/__fixtures__/output1/google/api/expr/v1alpha1/eval.ts b/__fixtures__/output1/google/api/expr/v1alpha1/eval.ts index 54302a9303..7facfdb069 100644 --- a/__fixtures__/output1/google/api/expr/v1alpha1/eval.ts +++ b/__fixtures__/output1/google/api/expr/v1alpha1/eval.ts @@ -7,7 +7,7 @@ export const protobufPackage = "google.api.expr.v1alpha1"; /** * The state of an evaluation. * - * Can represent an inital, partial, or completed state of evaluation. + * Can represent an initial, partial, or completed state of evaluation. */ export interface EvalState { /** The unique values referenced in this message. */ @@ -23,7 +23,7 @@ export interface EvalState { /** * The state of an evaluation. * - * Can represent an inital, partial, or completed state of evaluation. + * Can represent an initial, partial, or completed state of evaluation. */ export interface EvalStateSDKType { values: ExprValueSDKType[]; diff --git a/__fixtures__/output1/osmosis/incentives/genesis.ts b/__fixtures__/output1/osmosis/incentives/genesis.ts index 765fc55e24..a2c665b010 100644 --- a/__fixtures__/output1/osmosis/incentives/genesis.ts +++ b/__fixtures__/output1/osmosis/incentives/genesis.ts @@ -16,7 +16,7 @@ export interface GenesisState { gauges: Gauge[]; /** * lockable_durations are all lockup durations that gauges can be locked for - * in order to recieve incentives + * in order to receive incentives */ lockableDurations: Duration[]; /** diff --git a/__fixtures__/output1/osmosis/incentives/query.lcd.ts b/__fixtures__/output1/osmosis/incentives/query.lcd.ts index 08924dd63e..a632849a7b 100644 --- a/__fixtures__/output1/osmosis/incentives/query.lcd.ts +++ b/__fixtures__/output1/osmosis/incentives/query.lcd.ts @@ -73,7 +73,7 @@ export class LCDQueryClient { const endpoint = `osmosis/incentives/v1beta1/active_gauges_per_denom`; return await this.req.get(endpoint, options); } - /* Returns scheduled gauges that have not yet occured */ + /* Returns scheduled gauges that have not yet occurred */ async upcomingGauges(params: UpcomingGaugesRequest = { pagination: undefined }): Promise { @@ -86,7 +86,7 @@ export class LCDQueryClient { const endpoint = `osmosis/incentives/v1beta1/upcoming_gauges`; return await this.req.get(endpoint, options); } - /* UpcomingGaugesPerDenom returns scheduled gauges that have not yet occured + /* UpcomingGaugesPerDenom returns scheduled gauges that have not yet occurred by denom */ async upcomingGaugesPerDenom(params: UpcomingGaugesPerDenomRequest): Promise { const options: any = { diff --git a/__fixtures__/output1/osmosis/incentives/query.rpc.Query.ts b/__fixtures__/output1/osmosis/incentives/query.rpc.Query.ts index e141d0835f..0a4341d157 100644 --- a/__fixtures__/output1/osmosis/incentives/query.rpc.Query.ts +++ b/__fixtures__/output1/osmosis/incentives/query.rpc.Query.ts @@ -20,10 +20,10 @@ export interface Query { activeGauges(request?: ActiveGaugesRequest): Promise; /** ActiveGaugesPerDenom returns active gauges by denom */ activeGaugesPerDenom(request: ActiveGaugesPerDenomRequest): Promise; - /** Returns scheduled gauges that have not yet occured */ + /** Returns scheduled gauges that have not yet occurred */ upcomingGauges(request?: UpcomingGaugesRequest): Promise; /** - * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occured + * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occurred * by denom */ upcomingGaugesPerDenom(request: UpcomingGaugesPerDenomRequest): Promise; @@ -264,9 +264,9 @@ export const createRpcQueryHooks = (rpc: ProtobufRpcClient | undefined) => { /** Gauges returns both upcoming and active gauges */useGauges, /** ActiveGauges returns active gauges */useActiveGauges, /** ActiveGaugesPerDenom returns active gauges by denom */useActiveGaugesPerDenom, - /** Returns scheduled gauges that have not yet occured */useUpcomingGauges, + /** Returns scheduled gauges that have not yet occurred */useUpcomingGauges, /** - * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occured + * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occurred * by denom */ useUpcomingGaugesPerDenom, diff --git a/__fixtures__/output1/osmosis/incentives/query.ts b/__fixtures__/output1/osmosis/incentives/query.ts index 9e3720e278..988073b846 100644 --- a/__fixtures__/output1/osmosis/incentives/query.ts +++ b/__fixtures__/output1/osmosis/incentives/query.ts @@ -138,7 +138,7 @@ export interface RewardsEstRequestSDKType { } export interface RewardsEstResponse { /** - * Estimated coin rewards that will be recieved at provided address + * Estimated coin rewards that will be received at provided address * from specified locks between current time and end epoch */ coins: Coin[]; @@ -149,7 +149,7 @@ export interface RewardsEstResponseSDKType { export interface QueryLockableDurationsRequest {} export interface QueryLockableDurationsRequestSDKType {} export interface QueryLockableDurationsResponse { - /** Time durations that users can lock coins for in order to recieve rewards */ + /** Time durations that users can lock coins for in order to receive rewards */ lockableDurations: Duration[]; } export interface QueryLockableDurationsResponseSDKType { diff --git a/__fixtures__/output1/osmosis/mint/v1beta1/genesis.ts b/__fixtures__/output1/osmosis/mint/v1beta1/genesis.ts index fface1f98d..c3fba4be31 100644 --- a/__fixtures__/output1/osmosis/mint/v1beta1/genesis.ts +++ b/__fixtures__/output1/osmosis/mint/v1beta1/genesis.ts @@ -7,7 +7,7 @@ export const protobufPackage = "osmosis.mint.v1beta1"; export interface GenesisState { /** minter is an abstraction for holding current rewards information. */ minter: Minter; - /** params defines all the paramaters of the mint module. */ + /** params defines all the parameters of the mint module. */ params: Params; /** * reduction_started_epoch is the first epoch in which the reduction of mint diff --git a/__fixtures__/output1/osmosis/pool-incentives/v1beta1/genesis.ts b/__fixtures__/output1/osmosis/pool-incentives/v1beta1/genesis.ts index 829d3c0e2c..d972bee240 100644 --- a/__fixtures__/output1/osmosis/pool-incentives/v1beta1/genesis.ts +++ b/__fixtures__/output1/osmosis/pool-incentives/v1beta1/genesis.ts @@ -6,7 +6,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "osmosis.poolincentives.v1beta1"; /** GenesisState defines the pool incentives module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; lockableDurations: Duration[]; distrInfo?: DistrInfo; diff --git a/__fixtures__/output1/osmosis/tokenfactory/v1beta1/genesis.ts b/__fixtures__/output1/osmosis/tokenfactory/v1beta1/genesis.ts index 1b88bf75fb..233a71a0f0 100644 --- a/__fixtures__/output1/osmosis/tokenfactory/v1beta1/genesis.ts +++ b/__fixtures__/output1/osmosis/tokenfactory/v1beta1/genesis.ts @@ -6,7 +6,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "osmosis.tokenfactory.v1beta1"; /** GenesisState defines the tokenfactory module's genesis state. */ export interface GenesisState { - /** params defines the paramaters of the module. */ + /** params defines the parameters of the module. */ params: Params; factoryDenoms: GenesisDenom[]; } diff --git a/__fixtures__/output1/osmosis/twap/v1beta1/twap_record.ts b/__fixtures__/output1/osmosis/twap/v1beta1/twap_record.ts index 36cb2244d0..f132d5e26a 100644 --- a/__fixtures__/output1/osmosis/twap/v1beta1/twap_record.ts +++ b/__fixtures__/output1/osmosis/twap/v1beta1/twap_record.ts @@ -34,7 +34,7 @@ export interface TwapRecord { p0ArithmeticTwapAccumulator: string; p1ArithmeticTwapAccumulator: string; /** - * This field contains the time in which the last spot price error occured. + * This field contains the time in which the last spot price error occurred. * It is used to alert the caller if they are getting a potentially erroneous * TWAP, due to an unforeseen underlying error. */ diff --git a/__fixtures__/output2/cosmos/auth/v1beta1/genesis.ts b/__fixtures__/output2/cosmos/auth/v1beta1/genesis.ts index 0398d9f8e1..f17ed8dd74 100644 --- a/__fixtures__/output2/cosmos/auth/v1beta1/genesis.ts +++ b/__fixtures__/output2/cosmos/auth/v1beta1/genesis.ts @@ -8,7 +8,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "cosmos.auth.v1beta1"; /** GenesisState defines the auth module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** accounts are the accounts present at genesis. */ accounts: Any[]; diff --git a/__fixtures__/output2/cosmos/bank/v1beta1/genesis.ts b/__fixtures__/output2/cosmos/bank/v1beta1/genesis.ts index 0be4318032..bc3c621ee6 100644 --- a/__fixtures__/output2/cosmos/bank/v1beta1/genesis.ts +++ b/__fixtures__/output2/cosmos/bank/v1beta1/genesis.ts @@ -8,7 +8,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "cosmos.bank.v1beta1"; /** GenesisState defines the bank module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** balances is an array containing the balances of all the accounts. */ balances: Balance[]; diff --git a/__fixtures__/output2/cosmos/distribution/v1beta1/genesis.ts b/__fixtures__/output2/cosmos/distribution/v1beta1/genesis.ts index c4446ce956..6e700a8d27 100644 --- a/__fixtures__/output2/cosmos/distribution/v1beta1/genesis.ts +++ b/__fixtures__/output2/cosmos/distribution/v1beta1/genesis.ts @@ -66,7 +66,7 @@ export interface DelegatorStartingInfoRecord { export interface ValidatorSlashEventRecord { /** validator_address is the address of the validator. */ validatorAddress: string; - /** height defines the block height at which the slash event occured. */ + /** height defines the block height at which the slash event occurred. */ height: Long; /** period is the period of the slash event. */ period: Long; @@ -75,7 +75,7 @@ export interface ValidatorSlashEventRecord { } /** GenesisState defines the distribution module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** fee_pool defines the fee pool at genesis. */ feePool: FeePool; diff --git a/__fixtures__/output2/cosmos/gov/v1/genesis.ts b/__fixtures__/output2/cosmos/gov/v1/genesis.ts index 460e5fde90..2f50b1cba0 100644 --- a/__fixtures__/output2/cosmos/gov/v1/genesis.ts +++ b/__fixtures__/output2/cosmos/gov/v1/genesis.ts @@ -15,11 +15,11 @@ export interface GenesisState { votes: Vote[]; /** proposals defines all the proposals present at genesis. */ proposals: Proposal[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ depositParams?: DepositParams; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ votingParams?: VotingParams; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tallyParams?: TallyParams; } function createBaseGenesisState(): GenesisState { diff --git a/__fixtures__/output2/cosmos/mint/v1beta1/genesis.ts b/__fixtures__/output2/cosmos/mint/v1beta1/genesis.ts index 4271d61ae0..6af927006e 100644 --- a/__fixtures__/output2/cosmos/mint/v1beta1/genesis.ts +++ b/__fixtures__/output2/cosmos/mint/v1beta1/genesis.ts @@ -9,7 +9,7 @@ export const protobufPackage = "cosmos.mint.v1beta1"; export interface GenesisState { /** minter is a space for holding current inflation information. */ minter: Minter; - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; } function createBaseGenesisState(): GenesisState { diff --git a/__fixtures__/output2/cosmos/slashing/v1beta1/genesis.ts b/__fixtures__/output2/cosmos/slashing/v1beta1/genesis.ts index 637db82aeb..7541a0f0f1 100644 --- a/__fixtures__/output2/cosmos/slashing/v1beta1/genesis.ts +++ b/__fixtures__/output2/cosmos/slashing/v1beta1/genesis.ts @@ -7,7 +7,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "cosmos.slashing.v1beta1"; /** GenesisState defines the slashing module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params: Params; /** * signing_infos represents a map between validator addresses and their diff --git a/__fixtures__/output2/cosmos/staking/v1beta1/genesis.ts b/__fixtures__/output2/cosmos/staking/v1beta1/genesis.ts index 1104035a9f..bc81b17883 100644 --- a/__fixtures__/output2/cosmos/staking/v1beta1/genesis.ts +++ b/__fixtures__/output2/cosmos/staking/v1beta1/genesis.ts @@ -7,7 +7,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "cosmos.staking.v1beta1"; /** GenesisState defines the staking module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params: Params; /** * last_total_power tracks the total amounts of bonded tokens recorded during diff --git a/__fixtures__/output2/evmos/inflation/v1/genesis.ts b/__fixtures__/output2/evmos/inflation/v1/genesis.ts index 229b7f653c..c0c38610a0 100644 --- a/__fixtures__/output2/evmos/inflation/v1/genesis.ts +++ b/__fixtures__/output2/evmos/inflation/v1/genesis.ts @@ -7,7 +7,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "evmos.inflation.v1"; /** GenesisState defines the inflation module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** amount of past periods, based on the epochs per period param */ period: Long; diff --git a/__fixtures__/output2/evmos/recovery/v1/genesis.ts b/__fixtures__/output2/evmos/recovery/v1/genesis.ts index 22fe700fd5..f6fdf8fadd 100644 --- a/__fixtures__/output2/evmos/recovery/v1/genesis.ts +++ b/__fixtures__/output2/evmos/recovery/v1/genesis.ts @@ -7,7 +7,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "evmos.recovery.v1"; /** GenesisState defines the recovery module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; } /** Params holds parameters for the recovery module */ diff --git a/__fixtures__/output2/google/api/expr/v1alpha1/eval.ts b/__fixtures__/output2/google/api/expr/v1alpha1/eval.ts index b10db09c72..2ad242d902 100644 --- a/__fixtures__/output2/google/api/expr/v1alpha1/eval.ts +++ b/__fixtures__/output2/google/api/expr/v1alpha1/eval.ts @@ -9,7 +9,7 @@ export const protobufPackage = "google.api.expr.v1alpha1"; /** * The state of an evaluation. * - * Can represent an inital, partial, or completed state of evaluation. + * Can represent an initial, partial, or completed state of evaluation. */ export interface EvalState { /** The unique values referenced in this message. */ diff --git a/__fixtures__/output2/osmosis/incentives/genesis.ts b/__fixtures__/output2/osmosis/incentives/genesis.ts index 934eec8adb..a5915e9985 100644 --- a/__fixtures__/output2/osmosis/incentives/genesis.ts +++ b/__fixtures__/output2/osmosis/incentives/genesis.ts @@ -18,7 +18,7 @@ export interface GenesisState { gauges: Gauge[]; /** * lockable_durations are all lockup durations that gauges can be locked for - * in order to recieve incentives + * in order to receive incentives */ lockableDurations: Duration[]; /** diff --git a/__fixtures__/output2/osmosis/incentives/query.ts b/__fixtures__/output2/osmosis/incentives/query.ts index 66031cdaf3..68b1eabee6 100644 --- a/__fixtures__/output2/osmosis/incentives/query.ts +++ b/__fixtures__/output2/osmosis/incentives/query.ts @@ -88,14 +88,14 @@ export interface RewardsEstRequest { } export interface RewardsEstResponse { /** - * Estimated coin rewards that will be recieved at provided address + * Estimated coin rewards that will be received at provided address * from specified locks between current time and end epoch */ coins: Coin[]; } export interface QueryLockableDurationsRequest {} export interface QueryLockableDurationsResponse { - /** Time durations that users can lock coins for in order to recieve rewards */ + /** Time durations that users can lock coins for in order to receive rewards */ lockableDurations: Duration[]; } function createBaseModuleToDistributeCoinsRequest(): ModuleToDistributeCoinsRequest { @@ -1031,10 +1031,10 @@ export interface Query { ActiveGauges(request?: ActiveGaugesRequest): Promise; /** ActiveGaugesPerDenom returns active gauges by denom */ ActiveGaugesPerDenom(request: ActiveGaugesPerDenomRequest): Promise; - /** Returns scheduled gauges that have not yet occured */ + /** Returns scheduled gauges that have not yet occurred */ UpcomingGauges(request?: UpcomingGaugesRequest): Promise; /** - * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occured + * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occurred * by denom */ UpcomingGaugesPerDenom(request: UpcomingGaugesPerDenomRequest): Promise; diff --git a/__fixtures__/output2/osmosis/mint/v1beta1/genesis.ts b/__fixtures__/output2/osmosis/mint/v1beta1/genesis.ts index c6bdc0a76c..11bac8c808 100644 --- a/__fixtures__/output2/osmosis/mint/v1beta1/genesis.ts +++ b/__fixtures__/output2/osmosis/mint/v1beta1/genesis.ts @@ -9,7 +9,7 @@ export const protobufPackage = "osmosis.mint.v1beta1"; export interface GenesisState { /** minter is an abstraction for holding current rewards information. */ minter: Minter; - /** params defines all the paramaters of the mint module. */ + /** params defines all the parameters of the mint module. */ params: Params; /** * reduction_started_epoch is the first epoch in which the reduction of mint diff --git a/__fixtures__/output2/osmosis/pool-incentives/v1beta1/genesis.ts b/__fixtures__/output2/osmosis/pool-incentives/v1beta1/genesis.ts index 7495033c3b..869de6f300 100644 --- a/__fixtures__/output2/osmosis/pool-incentives/v1beta1/genesis.ts +++ b/__fixtures__/output2/osmosis/pool-incentives/v1beta1/genesis.ts @@ -8,7 +8,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "osmosis.poolincentives.v1beta1"; /** GenesisState defines the pool incentives module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; lockableDurations: Duration[]; distrInfo?: DistrInfo; diff --git a/__fixtures__/output2/osmosis/tokenfactory/v1beta1/genesis.ts b/__fixtures__/output2/osmosis/tokenfactory/v1beta1/genesis.ts index 6a46c8dc5d..407a0d91c7 100644 --- a/__fixtures__/output2/osmosis/tokenfactory/v1beta1/genesis.ts +++ b/__fixtures__/output2/osmosis/tokenfactory/v1beta1/genesis.ts @@ -8,7 +8,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "osmosis.tokenfactory.v1beta1"; /** GenesisState defines the tokenfactory module's genesis state. */ export interface GenesisState { - /** params defines the paramaters of the module. */ + /** params defines the parameters of the module. */ params: Params; factoryDenoms: GenesisDenom[]; } diff --git a/__fixtures__/output2/osmosis/twap/v1beta1/twap_record.ts b/__fixtures__/output2/osmosis/twap/v1beta1/twap_record.ts index 1b76d40557..a3fce94e0a 100644 --- a/__fixtures__/output2/osmosis/twap/v1beta1/twap_record.ts +++ b/__fixtures__/output2/osmosis/twap/v1beta1/twap_record.ts @@ -36,7 +36,7 @@ export interface TwapRecord { p0ArithmeticTwapAccumulator: string; p1ArithmeticTwapAccumulator: string; /** - * This field contains the time in which the last spot price error occured. + * This field contains the time in which the last spot price error occurred. * It is used to alert the caller if they are getting a potentially erroneous * TWAP, due to an unforeseen underlying error. */ diff --git a/__fixtures__/proto-json/cosmos/auth/v1beta1/genesis.json b/__fixtures__/proto-json/cosmos/auth/v1beta1/genesis.json index 793d7b60f4..0ad67e886a 100644 --- a/__fixtures__/proto-json/cosmos/auth/v1beta1/genesis.json +++ b/__fixtures__/proto-json/cosmos/auth/v1beta1/genesis.json @@ -25,7 +25,7 @@ "options": { "(gogoproto.nullable)": false }, - "comment": "params defines all the paramaters of the module." + "comment": "params defines all the parameters of the module." }, "accounts": { "rule": "repeated", diff --git a/__fixtures__/proto-json/cosmos/bank/v1beta1/genesis.json b/__fixtures__/proto-json/cosmos/bank/v1beta1/genesis.json index a90eee1362..c8860ea861 100644 --- a/__fixtures__/proto-json/cosmos/bank/v1beta1/genesis.json +++ b/__fixtures__/proto-json/cosmos/bank/v1beta1/genesis.json @@ -26,7 +26,7 @@ "options": { "(gogoproto.nullable)": false }, - "comment": "params defines all the paramaters of the module." + "comment": "params defines all the parameters of the module." }, "balances": { "rule": "repeated", diff --git a/__fixtures__/proto-json/cosmos/distribution/v1beta1/genesis.json b/__fixtures__/proto-json/cosmos/distribution/v1beta1/genesis.json index a338cd3fa3..f7f2035459 100644 --- a/__fixtures__/proto-json/cosmos/distribution/v1beta1/genesis.json +++ b/__fixtures__/proto-json/cosmos/distribution/v1beta1/genesis.json @@ -201,7 +201,7 @@ "height": { "type": "uint64", "id": 2, - "comment": "height defines the block height at which the slash event occured." + "comment": "height defines the block height at which the slash event occurred." }, "period": { "type": "uint64", @@ -231,7 +231,7 @@ "options": { "(gogoproto.nullable)": false }, - "comment": "params defines all the paramaters of the module." + "comment": "params defines all the parameters of the module." }, "feePool": { "type": "FeePool", diff --git a/__fixtures__/proto-json/cosmos/gov/v1/genesis.json b/__fixtures__/proto-json/cosmos/gov/v1/genesis.json index 6521c74b5c..8db9f2bf46 100644 --- a/__fixtures__/proto-json/cosmos/gov/v1/genesis.json +++ b/__fixtures__/proto-json/cosmos/gov/v1/genesis.json @@ -43,17 +43,17 @@ "depositParams": { "type": "DepositParams", "id": 5, - "comment": "params defines all the paramaters of related to deposit." + "comment": "params defines all the parameters of related to deposit." }, "votingParams": { "type": "VotingParams", "id": 6, - "comment": "params defines all the paramaters of related to voting." + "comment": "params defines all the parameters of related to voting." }, "tallyParams": { "type": "TallyParams", "id": 7, - "comment": "params defines all the paramaters of related to tally." + "comment": "params defines all the parameters of related to tally." } }, "comment": "GenesisState defines the gov module's genesis state." diff --git a/__fixtures__/proto-json/cosmos/gov/v1beta1/genesis.json b/__fixtures__/proto-json/cosmos/gov/v1beta1/genesis.json index 01a84b472c..36e88788a9 100644 --- a/__fixtures__/proto-json/cosmos/gov/v1beta1/genesis.json +++ b/__fixtures__/proto-json/cosmos/gov/v1beta1/genesis.json @@ -59,7 +59,7 @@ "options": { "(gogoproto.nullable)": false }, - "comment": "params defines all the paramaters of related to deposit." + "comment": "params defines all the parameters of related to deposit." }, "votingParams": { "type": "VotingParams", @@ -67,7 +67,7 @@ "options": { "(gogoproto.nullable)": false }, - "comment": "params defines all the paramaters of related to voting." + "comment": "params defines all the parameters of related to voting." }, "tallyParams": { "type": "TallyParams", @@ -75,7 +75,7 @@ "options": { "(gogoproto.nullable)": false }, - "comment": "params defines all the paramaters of related to tally." + "comment": "params defines all the parameters of related to tally." } }, "comment": "GenesisState defines the gov module's genesis state." diff --git a/__fixtures__/proto-json/cosmos/mint/v1beta1/genesis.json b/__fixtures__/proto-json/cosmos/mint/v1beta1/genesis.json index 90b9e40228..23724f77f6 100644 --- a/__fixtures__/proto-json/cosmos/mint/v1beta1/genesis.json +++ b/__fixtures__/proto-json/cosmos/mint/v1beta1/genesis.json @@ -32,7 +32,7 @@ "options": { "(gogoproto.nullable)": false }, - "comment": "params defines all the paramaters of the module." + "comment": "params defines all the parameters of the module." } }, "comment": "GenesisState defines the mint module's genesis state." diff --git a/__fixtures__/proto-json/cosmos/slashing/v1beta1/genesis.json b/__fixtures__/proto-json/cosmos/slashing/v1beta1/genesis.json index a4046fe6a8..e5c07c5617 100644 --- a/__fixtures__/proto-json/cosmos/slashing/v1beta1/genesis.json +++ b/__fixtures__/proto-json/cosmos/slashing/v1beta1/genesis.json @@ -25,7 +25,7 @@ "options": { "(gogoproto.nullable)": false }, - "comment": "params defines all the paramaters of related to deposit." + "comment": "params defines all the parameters of related to deposit." }, "signingInfos": { "rule": "repeated", diff --git a/__fixtures__/proto-json/cosmos/staking/v1beta1/genesis.json b/__fixtures__/proto-json/cosmos/staking/v1beta1/genesis.json index 7b2083a59c..baa3a4fc10 100644 --- a/__fixtures__/proto-json/cosmos/staking/v1beta1/genesis.json +++ b/__fixtures__/proto-json/cosmos/staking/v1beta1/genesis.json @@ -25,7 +25,7 @@ "options": { "(gogoproto.nullable)": false }, - "comment": "params defines all the paramaters of related to deposit." + "comment": "params defines all the parameters of related to deposit." }, "lastTotalPower": { "type": "bytes", diff --git a/__fixtures__/proto-json/google/api/expr/v1alpha1/eval.json b/__fixtures__/proto-json/google/api/expr/v1alpha1/eval.json index 27548c8231..2563a5ca81 100644 --- a/__fixtures__/proto-json/google/api/expr/v1alpha1/eval.json +++ b/__fixtures__/proto-json/google/api/expr/v1alpha1/eval.json @@ -54,7 +54,7 @@ "comment": "A single evalution result." } }, - "comment": "The state of an evaluation.\n\nCan represent an inital, partial, or completed state of evaluation." + "comment": "The state of an evaluation.\n\nCan represent an initial, partial, or completed state of evaluation." }, "ExprValue": { "oneofs": { diff --git a/__fixtures__/proto-json/osmosis/mint/v1beta1/genesis.json b/__fixtures__/proto-json/osmosis/mint/v1beta1/genesis.json index 753c4704b6..bb478ab43a 100644 --- a/__fixtures__/proto-json/osmosis/mint/v1beta1/genesis.json +++ b/__fixtures__/proto-json/osmosis/mint/v1beta1/genesis.json @@ -32,7 +32,7 @@ "options": { "(gogoproto.nullable)": false }, - "comment": "params defines all the paramaters of the module." + "comment": "params defines all the parameters of the module." }, "halvenStartedEpoch": { "type": "int64", diff --git a/__fixtures__/proto-json/osmosis/pool-incentives/v1beta1/genesis.json b/__fixtures__/proto-json/osmosis/pool-incentives/v1beta1/genesis.json index e0deab983a..1f70391aa1 100644 --- a/__fixtures__/proto-json/osmosis/pool-incentives/v1beta1/genesis.json +++ b/__fixtures__/proto-json/osmosis/pool-incentives/v1beta1/genesis.json @@ -25,7 +25,7 @@ "options": { "(gogoproto.nullable)": false }, - "comment": "params defines all the paramaters of the module." + "comment": "params defines all the parameters of the module." }, "lockableDurations": { "rule": "repeated", diff --git a/__fixtures__/v-next/outputhelperfunc/cosmos/auth/v1beta1/genesis.ts b/__fixtures__/v-next/outputhelperfunc/cosmos/auth/v1beta1/genesis.ts index 62f322cdc5..a675a57ba0 100644 --- a/__fixtures__/v-next/outputhelperfunc/cosmos/auth/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputhelperfunc/cosmos/auth/v1beta1/genesis.ts @@ -7,7 +7,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "cosmos.auth.v1beta1"; /** GenesisState defines the auth module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** accounts are the accounts present at genesis. */ accounts: Any[]; @@ -18,7 +18,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the auth module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; /** accounts are the accounts present at genesis. */ accounts?: AnyAmino[]; diff --git a/__fixtures__/v-next/outputhelperfunc/cosmos/bank/v1beta1/genesis.ts b/__fixtures__/v-next/outputhelperfunc/cosmos/bank/v1beta1/genesis.ts index d35da1fd21..d67543cbd3 100644 --- a/__fixtures__/v-next/outputhelperfunc/cosmos/bank/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputhelperfunc/cosmos/bank/v1beta1/genesis.ts @@ -7,7 +7,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "cosmos.bank.v1beta1"; /** GenesisState defines the bank module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** balances is an array containing the balances of all the accounts. */ balances: Balance[]; @@ -25,7 +25,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the bank module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; /** balances is an array containing the balances of all the accounts. */ balances?: BalanceAmino[]; diff --git a/__fixtures__/v-next/outputhelperfunc/cosmos/distribution/v1beta1/genesis.ts b/__fixtures__/v-next/outputhelperfunc/cosmos/distribution/v1beta1/genesis.ts index 171c0a5036..1675b8f646 100644 --- a/__fixtures__/v-next/outputhelperfunc/cosmos/distribution/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputhelperfunc/cosmos/distribution/v1beta1/genesis.ts @@ -211,7 +211,7 @@ export interface DelegatorStartingInfoRecordSDKType { export interface ValidatorSlashEventRecord { /** validator_address is the address of the validator. */ validatorAddress: string; - /** height defines the block height at which the slash event occured. */ + /** height defines the block height at which the slash event occurred. */ height: bigint; /** period is the period of the slash event. */ period: bigint; @@ -226,7 +226,7 @@ export interface ValidatorSlashEventRecordProtoMsg { export interface ValidatorSlashEventRecordAmino { /** validator_address is the address of the validator. */ validator_address?: string; - /** height defines the block height at which the slash event occured. */ + /** height defines the block height at which the slash event occurred. */ height?: string; /** period is the period of the slash event. */ period?: string; @@ -246,7 +246,7 @@ export interface ValidatorSlashEventRecordSDKType { } /** GenesisState defines the distribution module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** fee_pool defines the fee pool at genesis. */ feePool: FeePool; @@ -273,7 +273,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the distribution module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; /** fee_pool defines the fee pool at genesis. */ fee_pool?: FeePoolAmino; diff --git a/__fixtures__/v-next/outputhelperfunc/cosmos/gov/v1/genesis.ts b/__fixtures__/v-next/outputhelperfunc/cosmos/gov/v1/genesis.ts index acf3f43dd3..68badc1a5b 100644 --- a/__fixtures__/v-next/outputhelperfunc/cosmos/gov/v1/genesis.ts +++ b/__fixtures__/v-next/outputhelperfunc/cosmos/gov/v1/genesis.ts @@ -14,11 +14,11 @@ export interface GenesisState { votes: Vote[]; /** proposals defines all the proposals present at genesis. */ proposals: Proposal[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ depositParams?: DepositParams; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ votingParams?: VotingParams; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tallyParams?: TallyParams; } export interface GenesisStateProtoMsg { @@ -35,11 +35,11 @@ export interface GenesisStateAmino { votes?: VoteAmino[]; /** proposals defines all the proposals present at genesis. */ proposals?: ProposalAmino[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ deposit_params?: DepositParamsAmino; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ voting_params?: VotingParamsAmino; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tally_params?: TallyParamsAmino; } export interface GenesisStateAminoMsg { diff --git a/__fixtures__/v-next/outputhelperfunc/cosmos/gov/v1beta1/genesis.ts b/__fixtures__/v-next/outputhelperfunc/cosmos/gov/v1beta1/genesis.ts index c71e2cb093..f135a887a4 100644 --- a/__fixtures__/v-next/outputhelperfunc/cosmos/gov/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputhelperfunc/cosmos/gov/v1beta1/genesis.ts @@ -14,11 +14,11 @@ export interface GenesisState { votes: Vote[]; /** proposals defines all the proposals present at genesis. */ proposals: Proposal[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ depositParams: DepositParams; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ votingParams: VotingParams; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tallyParams: TallyParams; } export interface GenesisStateProtoMsg { @@ -35,11 +35,11 @@ export interface GenesisStateAmino { votes?: VoteAmino[]; /** proposals defines all the proposals present at genesis. */ proposals?: ProposalAmino[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ deposit_params?: DepositParamsAmino; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ voting_params?: VotingParamsAmino; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tally_params?: TallyParamsAmino; } export interface GenesisStateAminoMsg { diff --git a/__fixtures__/v-next/outputhelperfunc/cosmos/mint/v1beta1/genesis.ts b/__fixtures__/v-next/outputhelperfunc/cosmos/mint/v1beta1/genesis.ts index 92fc1bf5b1..11cbd91406 100644 --- a/__fixtures__/v-next/outputhelperfunc/cosmos/mint/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputhelperfunc/cosmos/mint/v1beta1/genesis.ts @@ -8,7 +8,7 @@ export const protobufPackage = "cosmos.mint.v1beta1"; export interface GenesisState { /** minter is a space for holding current inflation information. */ minter: Minter; - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; } export interface GenesisStateProtoMsg { @@ -19,7 +19,7 @@ export interface GenesisStateProtoMsg { export interface GenesisStateAmino { /** minter is a space for holding current inflation information. */ minter?: MinterAmino; - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; } export interface GenesisStateAminoMsg { diff --git a/__fixtures__/v-next/outputhelperfunc/cosmos/slashing/v1beta1/genesis.ts b/__fixtures__/v-next/outputhelperfunc/cosmos/slashing/v1beta1/genesis.ts index 69f516a442..6d770da9cd 100644 --- a/__fixtures__/v-next/outputhelperfunc/cosmos/slashing/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputhelperfunc/cosmos/slashing/v1beta1/genesis.ts @@ -6,7 +6,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "cosmos.slashing.v1beta1"; /** GenesisState defines the slashing module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params: Params; /** * signing_infos represents a map between validator addresses and their @@ -25,7 +25,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the slashing module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params?: ParamsAmino; /** * signing_infos represents a map between validator addresses and their diff --git a/__fixtures__/v-next/outputhelperfunc/cosmos/staking/v1beta1/genesis.ts b/__fixtures__/v-next/outputhelperfunc/cosmos/staking/v1beta1/genesis.ts index 38705fa91f..5c915a72f0 100644 --- a/__fixtures__/v-next/outputhelperfunc/cosmos/staking/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputhelperfunc/cosmos/staking/v1beta1/genesis.ts @@ -6,7 +6,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "cosmos.staking.v1beta1"; /** GenesisState defines the staking module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params: Params; /** * last_total_power tracks the total amounts of bonded tokens recorded during @@ -34,7 +34,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the staking module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params?: ParamsAmino; /** * last_total_power tracks the total amounts of bonded tokens recorded during diff --git a/__fixtures__/v-next/outputhelperfunc/evmos/inflation/v1/genesis.ts b/__fixtures__/v-next/outputhelperfunc/evmos/inflation/v1/genesis.ts index 8d3f525802..aff44a51a7 100644 --- a/__fixtures__/v-next/outputhelperfunc/evmos/inflation/v1/genesis.ts +++ b/__fixtures__/v-next/outputhelperfunc/evmos/inflation/v1/genesis.ts @@ -6,7 +6,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "evmos.inflation.v1"; /** GenesisState defines the inflation module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** amount of past periods, based on the epochs per period param */ period: bigint; @@ -23,7 +23,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the inflation module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; /** amount of past periods, based on the epochs per period param */ period?: string; diff --git a/__fixtures__/v-next/outputhelperfunc/evmos/recovery/v1/genesis.ts b/__fixtures__/v-next/outputhelperfunc/evmos/recovery/v1/genesis.ts index 860925e5f8..9516b8b309 100644 --- a/__fixtures__/v-next/outputhelperfunc/evmos/recovery/v1/genesis.ts +++ b/__fixtures__/v-next/outputhelperfunc/evmos/recovery/v1/genesis.ts @@ -6,7 +6,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "evmos.recovery.v1"; /** GenesisState defines the recovery module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; } export interface GenesisStateProtoMsg { @@ -15,7 +15,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the recovery module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; } export interface GenesisStateAminoMsg { diff --git a/__fixtures__/v-next/outputhelperfunc/google/api/expr/v1alpha1/eval.ts b/__fixtures__/v-next/outputhelperfunc/google/api/expr/v1alpha1/eval.ts index 926cbd8984..81ad0b413b 100644 --- a/__fixtures__/v-next/outputhelperfunc/google/api/expr/v1alpha1/eval.ts +++ b/__fixtures__/v-next/outputhelperfunc/google/api/expr/v1alpha1/eval.ts @@ -8,7 +8,7 @@ export const protobufPackage = "google.api.expr.v1alpha1"; /** * The state of an evaluation. * - * Can represent an inital, partial, or completed state of evaluation. + * Can represent an initial, partial, or completed state of evaluation. */ export interface EvalState { /** The unique values referenced in this message. */ @@ -28,7 +28,7 @@ export interface EvalStateProtoMsg { /** * The state of an evaluation. * - * Can represent an inital, partial, or completed state of evaluation. + * Can represent an initial, partial, or completed state of evaluation. */ export interface EvalStateAmino { /** The unique values referenced in this message. */ @@ -48,7 +48,7 @@ export interface EvalStateAminoMsg { /** * The state of an evaluation. * - * Can represent an inital, partial, or completed state of evaluation. + * Can represent an initial, partial, or completed state of evaluation. */ export interface EvalStateSDKType { values: ExprValueSDKType[]; diff --git a/__fixtures__/v-next/outputhelperfunc/osmosis/incentives/genesis.ts b/__fixtures__/v-next/outputhelperfunc/osmosis/incentives/genesis.ts index 5f387cbc29..ce36222723 100644 --- a/__fixtures__/v-next/outputhelperfunc/osmosis/incentives/genesis.ts +++ b/__fixtures__/v-next/outputhelperfunc/osmosis/incentives/genesis.ts @@ -17,7 +17,7 @@ export interface GenesisState { gauges: Gauge[]; /** * lockable_durations are all lockup durations that gauges can be locked for - * in order to recieve incentives + * in order to receive incentives */ lockableDurations: Duration[]; /** @@ -41,7 +41,7 @@ export interface GenesisStateAmino { gauges?: GaugeAmino[]; /** * lockable_durations are all lockup durations that gauges can be locked for - * in order to recieve incentives + * in order to receive incentives */ lockable_durations?: DurationAmino[]; /** diff --git a/__fixtures__/v-next/outputhelperfunc/osmosis/incentives/query.lcd.ts b/__fixtures__/v-next/outputhelperfunc/osmosis/incentives/query.lcd.ts index aeed5a1458..82b227b2a4 100644 --- a/__fixtures__/v-next/outputhelperfunc/osmosis/incentives/query.lcd.ts +++ b/__fixtures__/v-next/outputhelperfunc/osmosis/incentives/query.lcd.ts @@ -64,7 +64,7 @@ export class LCDQueryClient { const endpoint = `osmosis/incentives/v1beta1/active_gauges_per_denom`; return ActiveGaugesPerDenomResponse.fromSDKJSON(await this.req.get(endpoint, options)); }; - /* Returns scheduled gauges that have not yet occured */ + /* Returns scheduled gauges that have not yet occurred */ upcomingGauges = async (params: UpcomingGaugesRequest = { pagination: PageRequest.fromPartial({}) }): Promise => { @@ -77,7 +77,7 @@ export class LCDQueryClient { const endpoint = `osmosis/incentives/v1beta1/upcoming_gauges`; return UpcomingGaugesResponse.fromSDKJSON(await this.req.get(endpoint, options)); }; - /* UpcomingGaugesPerDenom returns scheduled gauges that have not yet occured + /* UpcomingGaugesPerDenom returns scheduled gauges that have not yet occurred by denom */ upcomingGaugesPerDenom = async (params: UpcomingGaugesPerDenomRequest): Promise => { const options: any = { diff --git a/__fixtures__/v-next/outputhelperfunc/osmosis/incentives/query.rpc.Query.ts b/__fixtures__/v-next/outputhelperfunc/osmosis/incentives/query.rpc.Query.ts index f508fbb9a1..af2ff258b2 100644 --- a/__fixtures__/v-next/outputhelperfunc/osmosis/incentives/query.rpc.Query.ts +++ b/__fixtures__/v-next/outputhelperfunc/osmosis/incentives/query.rpc.Query.ts @@ -17,10 +17,10 @@ export interface Query { activeGauges(request?: ActiveGaugesRequest): Promise; /** ActiveGaugesPerDenom returns active gauges by denom */ activeGaugesPerDenom(request: ActiveGaugesPerDenomRequest): Promise; - /** Returns scheduled gauges that have not yet occured */ + /** Returns scheduled gauges that have not yet occurred */ upcomingGauges(request?: UpcomingGaugesRequest): Promise; /** - * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occured + * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occurred * by denom */ upcomingGaugesPerDenom(request: UpcomingGaugesPerDenomRequest): Promise; @@ -75,7 +75,7 @@ export class QueryClientImpl implements Query { const promise = this.rpc.request("osmosis.incentives.Query", "ActiveGaugesPerDenom", data); return promise.then(data => ActiveGaugesPerDenomResponse.decode(new BinaryReader(data))); }; - /* Returns scheduled gauges that have not yet occured */ + /* Returns scheduled gauges that have not yet occurred */ upcomingGauges = async (request: UpcomingGaugesRequest = { pagination: PageRequest.fromPartial({}) }): Promise => { @@ -83,7 +83,7 @@ export class QueryClientImpl implements Query { const promise = this.rpc.request("osmosis.incentives.Query", "UpcomingGauges", data); return promise.then(data => UpcomingGaugesResponse.decode(new BinaryReader(data))); }; - /* UpcomingGaugesPerDenom returns scheduled gauges that have not yet occured + /* UpcomingGaugesPerDenom returns scheduled gauges that have not yet occurred by denom */ upcomingGaugesPerDenom = async (request: UpcomingGaugesPerDenomRequest): Promise => { const data = UpcomingGaugesPerDenomRequest.encode(request).finish(); diff --git a/__fixtures__/v-next/outputhelperfunc/osmosis/incentives/query.ts b/__fixtures__/v-next/outputhelperfunc/osmosis/incentives/query.ts index 5aa072c4ea..a097692015 100644 --- a/__fixtures__/v-next/outputhelperfunc/osmosis/incentives/query.ts +++ b/__fixtures__/v-next/outputhelperfunc/osmosis/incentives/query.ts @@ -337,7 +337,7 @@ export interface RewardsEstRequestSDKType { } export interface RewardsEstResponse { /** - * Estimated coin rewards that will be recieved at provided address + * Estimated coin rewards that will be received at provided address * from specified locks between current time and end epoch */ coins: Coin[]; @@ -348,7 +348,7 @@ export interface RewardsEstResponseProtoMsg { } export interface RewardsEstResponseAmino { /** - * Estimated coin rewards that will be recieved at provided address + * Estimated coin rewards that will be received at provided address * from specified locks between current time and end epoch */ coins?: CoinAmino[]; @@ -372,7 +372,7 @@ export interface QueryLockableDurationsRequestAminoMsg { } export interface QueryLockableDurationsRequestSDKType {} export interface QueryLockableDurationsResponse { - /** Time durations that users can lock coins for in order to recieve rewards */ + /** Time durations that users can lock coins for in order to receive rewards */ lockableDurations: Duration[]; } export interface QueryLockableDurationsResponseProtoMsg { @@ -380,7 +380,7 @@ export interface QueryLockableDurationsResponseProtoMsg { value: Uint8Array; } export interface QueryLockableDurationsResponseAmino { - /** Time durations that users can lock coins for in order to recieve rewards */ + /** Time durations that users can lock coins for in order to receive rewards */ lockable_durations?: DurationAmino[]; } export interface QueryLockableDurationsResponseAminoMsg { diff --git a/__fixtures__/v-next/outputhelperfunc/osmosis/mint/v1beta1/genesis.ts b/__fixtures__/v-next/outputhelperfunc/osmosis/mint/v1beta1/genesis.ts index f2996d4614..e51eef2b55 100644 --- a/__fixtures__/v-next/outputhelperfunc/osmosis/mint/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputhelperfunc/osmosis/mint/v1beta1/genesis.ts @@ -8,7 +8,7 @@ export const protobufPackage = "osmosis.mint.v1beta1"; export interface GenesisState { /** minter is an abstraction for holding current rewards information. */ minter: Minter; - /** params defines all the paramaters of the mint module. */ + /** params defines all the parameters of the mint module. */ params: Params; /** * reduction_started_epoch is the first epoch in which the reduction of mint @@ -24,7 +24,7 @@ export interface GenesisStateProtoMsg { export interface GenesisStateAmino { /** minter is an abstraction for holding current rewards information. */ minter?: MinterAmino; - /** params defines all the paramaters of the mint module. */ + /** params defines all the parameters of the mint module. */ params?: ParamsAmino; /** * reduction_started_epoch is the first epoch in which the reduction of mint diff --git a/__fixtures__/v-next/outputhelperfunc/osmosis/pool-incentives/v1beta1/genesis.ts b/__fixtures__/v-next/outputhelperfunc/osmosis/pool-incentives/v1beta1/genesis.ts index 7a6dde31aa..309d19aaf9 100644 --- a/__fixtures__/v-next/outputhelperfunc/osmosis/pool-incentives/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputhelperfunc/osmosis/pool-incentives/v1beta1/genesis.ts @@ -7,7 +7,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "osmosis.poolincentives.v1beta1"; /** GenesisState defines the pool incentives module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; lockableDurations: Duration[]; distrInfo?: DistrInfo; @@ -19,7 +19,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the pool incentives module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; lockable_durations?: DurationAmino[]; distr_info?: DistrInfoAmino; diff --git a/__fixtures__/v-next/outputhelperfunc/osmosis/tokenfactory/v1beta1/genesis.ts b/__fixtures__/v-next/outputhelperfunc/osmosis/tokenfactory/v1beta1/genesis.ts index 31e99a6c75..06d920f001 100644 --- a/__fixtures__/v-next/outputhelperfunc/osmosis/tokenfactory/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputhelperfunc/osmosis/tokenfactory/v1beta1/genesis.ts @@ -7,7 +7,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "osmosis.tokenfactory.v1beta1"; /** GenesisState defines the tokenfactory module's genesis state. */ export interface GenesisState { - /** params defines the paramaters of the module. */ + /** params defines the parameters of the module. */ params: Params; factoryDenoms: GenesisDenom[]; } @@ -17,7 +17,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the tokenfactory module's genesis state. */ export interface GenesisStateAmino { - /** params defines the paramaters of the module. */ + /** params defines the parameters of the module. */ params?: ParamsAmino; factory_denoms?: GenesisDenomAmino[]; } diff --git a/__fixtures__/v-next/outputhelperfunc/osmosis/twap/v1beta1/twap_record.ts b/__fixtures__/v-next/outputhelperfunc/osmosis/twap/v1beta1/twap_record.ts index 1c1c6c8a00..1385ddee40 100644 --- a/__fixtures__/v-next/outputhelperfunc/osmosis/twap/v1beta1/twap_record.ts +++ b/__fixtures__/v-next/outputhelperfunc/osmosis/twap/v1beta1/twap_record.ts @@ -35,7 +35,7 @@ export interface TwapRecord { p0ArithmeticTwapAccumulator: string; p1ArithmeticTwapAccumulator: string; /** - * This field contains the time in which the last spot price error occured. + * This field contains the time in which the last spot price error occurred. * It is used to alert the caller if they are getting a potentially erroneous * TWAP, due to an unforeseen underlying error. */ @@ -76,7 +76,7 @@ export interface TwapRecordAmino { p0_arithmetic_twap_accumulator?: string; p1_arithmetic_twap_accumulator?: string; /** - * This field contains the time in which the last spot price error occured. + * This field contains the time in which the last spot price error occurred. * It is used to alert the caller if they are getting a potentially erroneous * TWAP, due to an unforeseen underlying error. */ diff --git a/__fixtures__/v-next/outputicjs/cosmos/auth/v1beta1/genesis.ts b/__fixtures__/v-next/outputicjs/cosmos/auth/v1beta1/genesis.ts index a49735ee4d..caf18864a7 100644 --- a/__fixtures__/v-next/outputicjs/cosmos/auth/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputicjs/cosmos/auth/v1beta1/genesis.ts @@ -4,7 +4,7 @@ import { BinaryReader, BinaryWriter } from "../../../binary"; import { DeepPartial } from "../../../helpers"; /** GenesisState defines the auth module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** accounts are the accounts present at genesis. */ accounts: Any[]; @@ -15,7 +15,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the auth module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: ParamsAmino; /** accounts are the accounts present at genesis. */ accounts: AnyAmino[]; diff --git a/__fixtures__/v-next/outputicjs/cosmos/bank/v1beta1/genesis.ts b/__fixtures__/v-next/outputicjs/cosmos/bank/v1beta1/genesis.ts index ca23961cca..dc7176f551 100644 --- a/__fixtures__/v-next/outputicjs/cosmos/bank/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputicjs/cosmos/bank/v1beta1/genesis.ts @@ -4,7 +4,7 @@ import { BinaryReader, BinaryWriter } from "../../../binary"; import { DeepPartial } from "../../../helpers"; /** GenesisState defines the bank module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** balances is an array containing the balances of all the accounts. */ balances: Balance[]; @@ -22,7 +22,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the bank module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: ParamsAmino; /** balances is an array containing the balances of all the accounts. */ balances: BalanceAmino[]; diff --git a/__fixtures__/v-next/outputicjs/cosmos/distribution/v1beta1/genesis.ts b/__fixtures__/v-next/outputicjs/cosmos/distribution/v1beta1/genesis.ts index 11271cc17e..1a2a8fd84e 100644 --- a/__fixtures__/v-next/outputicjs/cosmos/distribution/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputicjs/cosmos/distribution/v1beta1/genesis.ts @@ -166,7 +166,7 @@ export interface DelegatorStartingInfoRecordAminoMsg { export interface ValidatorSlashEventRecord { /** validator_address is the address of the validator. */ validatorAddress: string; - /** height defines the block height at which the slash event occured. */ + /** height defines the block height at which the slash event occurred. */ height: bigint; /** period is the period of the slash event. */ period: bigint; @@ -181,7 +181,7 @@ export interface ValidatorSlashEventRecordProtoMsg { export interface ValidatorSlashEventRecordAmino { /** validator_address is the address of the validator. */ validator_address: string; - /** height defines the block height at which the slash event occured. */ + /** height defines the block height at which the slash event occurred. */ height: string; /** period is the period of the slash event. */ period: string; @@ -194,7 +194,7 @@ export interface ValidatorSlashEventRecordAminoMsg { } /** GenesisState defines the distribution module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** fee_pool defines the fee pool at genesis. */ feePool: FeePool; @@ -221,7 +221,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the distribution module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: ParamsAmino; /** fee_pool defines the fee pool at genesis. */ fee_pool: FeePoolAmino; diff --git a/__fixtures__/v-next/outputicjs/cosmos/gov/v1/genesis.ts b/__fixtures__/v-next/outputicjs/cosmos/gov/v1/genesis.ts index 499ee5012b..a7c6d2d402 100644 --- a/__fixtures__/v-next/outputicjs/cosmos/gov/v1/genesis.ts +++ b/__fixtures__/v-next/outputicjs/cosmos/gov/v1/genesis.ts @@ -11,11 +11,11 @@ export interface GenesisState { votes: Vote[]; /** proposals defines all the proposals present at genesis. */ proposals: Proposal[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ depositParams?: DepositParams; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ votingParams?: VotingParams; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tallyParams?: TallyParams; } export interface GenesisStateProtoMsg { @@ -32,11 +32,11 @@ export interface GenesisStateAmino { votes: VoteAmino[]; /** proposals defines all the proposals present at genesis. */ proposals: ProposalAmino[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ deposit_params?: DepositParamsAmino; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ voting_params?: VotingParamsAmino; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tally_params?: TallyParamsAmino; } export interface GenesisStateAminoMsg { diff --git a/__fixtures__/v-next/outputicjs/cosmos/gov/v1beta1/genesis.ts b/__fixtures__/v-next/outputicjs/cosmos/gov/v1beta1/genesis.ts index 361d6099c7..0cddfd2617 100644 --- a/__fixtures__/v-next/outputicjs/cosmos/gov/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputicjs/cosmos/gov/v1beta1/genesis.ts @@ -11,11 +11,11 @@ export interface GenesisState { votes: Vote[]; /** proposals defines all the proposals present at genesis. */ proposals: Proposal[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ depositParams: DepositParams; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ votingParams: VotingParams; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tallyParams: TallyParams; } export interface GenesisStateProtoMsg { @@ -32,11 +32,11 @@ export interface GenesisStateAmino { votes: VoteAmino[]; /** proposals defines all the proposals present at genesis. */ proposals: ProposalAmino[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ deposit_params: DepositParamsAmino; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ voting_params: VotingParamsAmino; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tally_params: TallyParamsAmino; } export interface GenesisStateAminoMsg { diff --git a/__fixtures__/v-next/outputicjs/cosmos/mint/v1beta1/genesis.ts b/__fixtures__/v-next/outputicjs/cosmos/mint/v1beta1/genesis.ts index 9a690d5f3f..234f066473 100644 --- a/__fixtures__/v-next/outputicjs/cosmos/mint/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputicjs/cosmos/mint/v1beta1/genesis.ts @@ -5,7 +5,7 @@ import { DeepPartial } from "../../../helpers"; export interface GenesisState { /** minter is a space for holding current inflation information. */ minter: Minter; - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; } export interface GenesisStateProtoMsg { @@ -16,7 +16,7 @@ export interface GenesisStateProtoMsg { export interface GenesisStateAmino { /** minter is a space for holding current inflation information. */ minter: MinterAmino; - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: ParamsAmino; } export interface GenesisStateAminoMsg { diff --git a/__fixtures__/v-next/outputicjs/cosmos/slashing/v1beta1/genesis.ts b/__fixtures__/v-next/outputicjs/cosmos/slashing/v1beta1/genesis.ts index c4dfe3ee5a..6615ce0adb 100644 --- a/__fixtures__/v-next/outputicjs/cosmos/slashing/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputicjs/cosmos/slashing/v1beta1/genesis.ts @@ -3,7 +3,7 @@ import { BinaryReader, BinaryWriter } from "../../../binary"; import { DeepPartial } from "../../../helpers"; /** GenesisState defines the slashing module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params: Params; /** * signing_infos represents a map between validator addresses and their @@ -22,7 +22,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the slashing module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params: ParamsAmino; /** * signing_infos represents a map between validator addresses and their diff --git a/__fixtures__/v-next/outputicjs/cosmos/staking/v1beta1/genesis.ts b/__fixtures__/v-next/outputicjs/cosmos/staking/v1beta1/genesis.ts index dbc2e29d2e..1e28d524e4 100644 --- a/__fixtures__/v-next/outputicjs/cosmos/staking/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputicjs/cosmos/staking/v1beta1/genesis.ts @@ -3,7 +3,7 @@ import { BinaryReader, BinaryWriter } from "../../../binary"; import { DeepPartial, bytesFromBase64, base64FromBytes } from "../../../helpers"; /** GenesisState defines the staking module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params: Params; /** * last_total_power tracks the total amounts of bonded tokens recorded during @@ -31,7 +31,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the staking module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params: ParamsAmino; /** * last_total_power tracks the total amounts of bonded tokens recorded during diff --git a/__fixtures__/v-next/outputicjs/evmos/inflation/v1/genesis.ts b/__fixtures__/v-next/outputicjs/evmos/inflation/v1/genesis.ts index 24ac4b4aa1..5bf475ca08 100644 --- a/__fixtures__/v-next/outputicjs/evmos/inflation/v1/genesis.ts +++ b/__fixtures__/v-next/outputicjs/evmos/inflation/v1/genesis.ts @@ -3,7 +3,7 @@ import { BinaryReader, BinaryWriter } from "../../../binary"; import { DeepPartial } from "../../../helpers"; /** GenesisState defines the inflation module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** amount of past periods, based on the epochs per period param */ period: bigint; @@ -20,7 +20,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the inflation module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: ParamsAmino; /** amount of past periods, based on the epochs per period param */ period: string; diff --git a/__fixtures__/v-next/outputicjs/evmos/recovery/v1/genesis.ts b/__fixtures__/v-next/outputicjs/evmos/recovery/v1/genesis.ts index 2c54a12b30..bc9ec890b7 100644 --- a/__fixtures__/v-next/outputicjs/evmos/recovery/v1/genesis.ts +++ b/__fixtures__/v-next/outputicjs/evmos/recovery/v1/genesis.ts @@ -3,7 +3,7 @@ import { BinaryReader, BinaryWriter } from "../../../binary"; import { DeepPartial } from "../../../helpers"; /** GenesisState defines the recovery module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; } export interface GenesisStateProtoMsg { @@ -12,7 +12,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the recovery module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: ParamsAmino; } export interface GenesisStateAminoMsg { diff --git a/__fixtures__/v-next/outputicjs/google/api/expr/v1alpha1/eval.ts b/__fixtures__/v-next/outputicjs/google/api/expr/v1alpha1/eval.ts index 20347b2544..1005dc90d5 100644 --- a/__fixtures__/v-next/outputicjs/google/api/expr/v1alpha1/eval.ts +++ b/__fixtures__/v-next/outputicjs/google/api/expr/v1alpha1/eval.ts @@ -5,7 +5,7 @@ import { DeepPartial } from "../../../../helpers"; /** * The state of an evaluation. * - * Can represent an inital, partial, or completed state of evaluation. + * Can represent an initial, partial, or completed state of evaluation. */ export interface EvalState { /** The unique values referenced in this message. */ @@ -25,7 +25,7 @@ export interface EvalStateProtoMsg { /** * The state of an evaluation. * - * Can represent an inital, partial, or completed state of evaluation. + * Can represent an initial, partial, or completed state of evaluation. */ export interface EvalStateAmino { /** The unique values referenced in this message. */ diff --git a/__fixtures__/v-next/outputicjs/osmosis/incentives/genesis.ts b/__fixtures__/v-next/outputicjs/osmosis/incentives/genesis.ts index a9841d23fe..8b68e9dfa7 100644 --- a/__fixtures__/v-next/outputicjs/osmosis/incentives/genesis.ts +++ b/__fixtures__/v-next/outputicjs/osmosis/incentives/genesis.ts @@ -14,7 +14,7 @@ export interface GenesisState { gauges: Gauge[]; /** * lockable_durations are all lockup durations that gauges can be locked for - * in order to recieve incentives + * in order to receive incentives */ lockableDurations: Duration[]; /** @@ -38,7 +38,7 @@ export interface GenesisStateAmino { gauges: GaugeAmino[]; /** * lockable_durations are all lockup durations that gauges can be locked for - * in order to recieve incentives + * in order to receive incentives */ lockable_durations: DurationAmino[]; /** diff --git a/__fixtures__/v-next/outputicjs/osmosis/incentives/query.ts b/__fixtures__/v-next/outputicjs/osmosis/incentives/query.ts index 3352e7cff5..408d83506d 100644 --- a/__fixtures__/v-next/outputicjs/osmosis/incentives/query.ts +++ b/__fixtures__/v-next/outputicjs/osmosis/incentives/query.ts @@ -282,7 +282,7 @@ export interface RewardsEstRequestAminoMsg { } export interface RewardsEstResponse { /** - * Estimated coin rewards that will be recieved at provided address + * Estimated coin rewards that will be received at provided address * from specified locks between current time and end epoch */ coins: Coin[]; @@ -293,7 +293,7 @@ export interface RewardsEstResponseProtoMsg { } export interface RewardsEstResponseAmino { /** - * Estimated coin rewards that will be recieved at provided address + * Estimated coin rewards that will be received at provided address * from specified locks between current time and end epoch */ coins: CoinAmino[]; @@ -313,7 +313,7 @@ export interface QueryLockableDurationsRequestAminoMsg { value: QueryLockableDurationsRequestAmino; } export interface QueryLockableDurationsResponse { - /** Time durations that users can lock coins for in order to recieve rewards */ + /** Time durations that users can lock coins for in order to receive rewards */ lockableDurations: Duration[]; } export interface QueryLockableDurationsResponseProtoMsg { @@ -321,7 +321,7 @@ export interface QueryLockableDurationsResponseProtoMsg { value: Uint8Array; } export interface QueryLockableDurationsResponseAmino { - /** Time durations that users can lock coins for in order to recieve rewards */ + /** Time durations that users can lock coins for in order to receive rewards */ lockable_durations: DurationAmino[]; } export interface QueryLockableDurationsResponseAminoMsg { diff --git a/__fixtures__/v-next/outputicjs/osmosis/mint/v1beta1/genesis.ts b/__fixtures__/v-next/outputicjs/osmosis/mint/v1beta1/genesis.ts index 31b5bb4fd7..a2157a0c06 100644 --- a/__fixtures__/v-next/outputicjs/osmosis/mint/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputicjs/osmosis/mint/v1beta1/genesis.ts @@ -5,7 +5,7 @@ import { DeepPartial } from "../../../helpers"; export interface GenesisState { /** minter is an abstraction for holding current rewards information. */ minter: Minter; - /** params defines all the paramaters of the mint module. */ + /** params defines all the parameters of the mint module. */ params: Params; /** * reduction_started_epoch is the first epoch in which the reduction of mint @@ -21,7 +21,7 @@ export interface GenesisStateProtoMsg { export interface GenesisStateAmino { /** minter is an abstraction for holding current rewards information. */ minter: MinterAmino; - /** params defines all the paramaters of the mint module. */ + /** params defines all the parameters of the mint module. */ params: ParamsAmino; /** * reduction_started_epoch is the first epoch in which the reduction of mint diff --git a/__fixtures__/v-next/outputicjs/osmosis/pool-incentives/v1beta1/genesis.ts b/__fixtures__/v-next/outputicjs/osmosis/pool-incentives/v1beta1/genesis.ts index 447ecc2b17..d636005405 100644 --- a/__fixtures__/v-next/outputicjs/osmosis/pool-incentives/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputicjs/osmosis/pool-incentives/v1beta1/genesis.ts @@ -4,7 +4,7 @@ import { BinaryReader, BinaryWriter } from "../../../binary"; import { DeepPartial } from "../../../helpers"; /** GenesisState defines the pool incentives module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; lockableDurations: Duration[]; distrInfo?: DistrInfo; @@ -16,7 +16,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the pool incentives module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: ParamsAmino; lockable_durations: DurationAmino[]; distr_info?: DistrInfoAmino; diff --git a/__fixtures__/v-next/outputicjs/osmosis/tokenfactory/v1beta1/genesis.ts b/__fixtures__/v-next/outputicjs/osmosis/tokenfactory/v1beta1/genesis.ts index a5fa096fdd..a80a221ef3 100644 --- a/__fixtures__/v-next/outputicjs/osmosis/tokenfactory/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputicjs/osmosis/tokenfactory/v1beta1/genesis.ts @@ -4,7 +4,7 @@ import { BinaryReader, BinaryWriter } from "../../../binary"; import { DeepPartial } from "../../../helpers"; /** GenesisState defines the tokenfactory module's genesis state. */ export interface GenesisState { - /** params defines the paramaters of the module. */ + /** params defines the parameters of the module. */ params: Params; factoryDenoms: GenesisDenom[]; } @@ -14,7 +14,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the tokenfactory module's genesis state. */ export interface GenesisStateAmino { - /** params defines the paramaters of the module. */ + /** params defines the parameters of the module. */ params: ParamsAmino; factory_denoms: GenesisDenomAmino[]; } diff --git a/__fixtures__/v-next/outputicjs/osmosis/twap/v1beta1/twap_record.ts b/__fixtures__/v-next/outputicjs/osmosis/twap/v1beta1/twap_record.ts index 7a57922ed9..739c55d540 100644 --- a/__fixtures__/v-next/outputicjs/osmosis/twap/v1beta1/twap_record.ts +++ b/__fixtures__/v-next/outputicjs/osmosis/twap/v1beta1/twap_record.ts @@ -33,7 +33,7 @@ export interface TwapRecord { p0ArithmeticTwapAccumulator: string; p1ArithmeticTwapAccumulator: string; /** - * This field contains the time in which the last spot price error occured. + * This field contains the time in which the last spot price error occurred. * It is used to alert the caller if they are getting a potentially erroneous * TWAP, due to an unforeseen underlying error. */ @@ -74,7 +74,7 @@ export interface TwapRecordAmino { p0_arithmetic_twap_accumulator: string; p1_arithmetic_twap_accumulator: string; /** - * This field contains the time in which the last spot price error occured. + * This field contains the time in which the last spot price error occurred. * It is used to alert the caller if they are getting a potentially erroneous * TWAP, due to an unforeseen underlying error. */ diff --git a/__fixtures__/v-next/outputinstantrpc/cosmos/auth/v1beta1/genesis.ts b/__fixtures__/v-next/outputinstantrpc/cosmos/auth/v1beta1/genesis.ts index 971c83f942..f3576ed5ad 100644 --- a/__fixtures__/v-next/outputinstantrpc/cosmos/auth/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputinstantrpc/cosmos/auth/v1beta1/genesis.ts @@ -6,7 +6,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "cosmos.auth.v1beta1"; /** GenesisState defines the auth module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** accounts are the accounts present at genesis. */ accounts: Any[]; diff --git a/__fixtures__/v-next/outputinstantrpc/cosmos/bank/v1beta1/genesis.ts b/__fixtures__/v-next/outputinstantrpc/cosmos/bank/v1beta1/genesis.ts index c36918c286..3d41ae1dfd 100644 --- a/__fixtures__/v-next/outputinstantrpc/cosmos/bank/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputinstantrpc/cosmos/bank/v1beta1/genesis.ts @@ -6,7 +6,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "cosmos.bank.v1beta1"; /** GenesisState defines the bank module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** balances is an array containing the balances of all the accounts. */ balances: Balance[]; diff --git a/__fixtures__/v-next/outputinstantrpc/cosmos/distribution/v1beta1/genesis.ts b/__fixtures__/v-next/outputinstantrpc/cosmos/distribution/v1beta1/genesis.ts index c39818ffa6..32f64f29a9 100644 --- a/__fixtures__/v-next/outputinstantrpc/cosmos/distribution/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputinstantrpc/cosmos/distribution/v1beta1/genesis.ts @@ -130,7 +130,7 @@ export interface DelegatorStartingInfoRecordSDKType { export interface ValidatorSlashEventRecord { /** validator_address is the address of the validator. */ validatorAddress: string; - /** height defines the block height at which the slash event occured. */ + /** height defines the block height at which the slash event occurred. */ height: bigint; /** period is the period of the slash event. */ period: bigint; @@ -150,7 +150,7 @@ export interface ValidatorSlashEventRecordSDKType { } /** GenesisState defines the distribution module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** fee_pool defines the fee pool at genesis. */ feePool: FeePool; diff --git a/__fixtures__/v-next/outputinstantrpc/cosmos/gov/v1/genesis.ts b/__fixtures__/v-next/outputinstantrpc/cosmos/gov/v1/genesis.ts index a19ac3a06a..051f252482 100644 --- a/__fixtures__/v-next/outputinstantrpc/cosmos/gov/v1/genesis.ts +++ b/__fixtures__/v-next/outputinstantrpc/cosmos/gov/v1/genesis.ts @@ -13,11 +13,11 @@ export interface GenesisState { votes: Vote[]; /** proposals defines all the proposals present at genesis. */ proposals: Proposal[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ depositParams?: DepositParams; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ votingParams?: VotingParams; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tallyParams?: TallyParams; } export interface GenesisStateProtoMsg { diff --git a/__fixtures__/v-next/outputinstantrpc/cosmos/gov/v1beta1/genesis.ts b/__fixtures__/v-next/outputinstantrpc/cosmos/gov/v1beta1/genesis.ts index 38c8baf855..790e36b5eb 100644 --- a/__fixtures__/v-next/outputinstantrpc/cosmos/gov/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputinstantrpc/cosmos/gov/v1beta1/genesis.ts @@ -13,11 +13,11 @@ export interface GenesisState { votes: Vote[]; /** proposals defines all the proposals present at genesis. */ proposals: Proposal[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ depositParams: DepositParams; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ votingParams: VotingParams; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tallyParams: TallyParams; } export interface GenesisStateProtoMsg { diff --git a/__fixtures__/v-next/outputinstantrpc/cosmos/mint/v1beta1/genesis.ts b/__fixtures__/v-next/outputinstantrpc/cosmos/mint/v1beta1/genesis.ts index 1825cfac5a..9d83845bfb 100644 --- a/__fixtures__/v-next/outputinstantrpc/cosmos/mint/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputinstantrpc/cosmos/mint/v1beta1/genesis.ts @@ -7,7 +7,7 @@ export const protobufPackage = "cosmos.mint.v1beta1"; export interface GenesisState { /** minter is a space for holding current inflation information. */ minter: Minter; - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; } export interface GenesisStateProtoMsg { diff --git a/__fixtures__/v-next/outputinstantrpc/cosmos/slashing/v1beta1/genesis.ts b/__fixtures__/v-next/outputinstantrpc/cosmos/slashing/v1beta1/genesis.ts index 93f1b4675b..48a6f4c063 100644 --- a/__fixtures__/v-next/outputinstantrpc/cosmos/slashing/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputinstantrpc/cosmos/slashing/v1beta1/genesis.ts @@ -5,7 +5,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "cosmos.slashing.v1beta1"; /** GenesisState defines the slashing module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params: Params; /** * signing_infos represents a map between validator addresses and their diff --git a/__fixtures__/v-next/outputinstantrpc/cosmos/staking/v1beta1/genesis.ts b/__fixtures__/v-next/outputinstantrpc/cosmos/staking/v1beta1/genesis.ts index 917eeb4200..3b6ad6dc89 100644 --- a/__fixtures__/v-next/outputinstantrpc/cosmos/staking/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputinstantrpc/cosmos/staking/v1beta1/genesis.ts @@ -5,7 +5,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "cosmos.staking.v1beta1"; /** GenesisState defines the staking module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params: Params; /** * last_total_power tracks the total amounts of bonded tokens recorded during diff --git a/__fixtures__/v-next/outputinstantrpc/evmos/inflation/v1/genesis.ts b/__fixtures__/v-next/outputinstantrpc/evmos/inflation/v1/genesis.ts index 6468b35272..e7b8d840a7 100644 --- a/__fixtures__/v-next/outputinstantrpc/evmos/inflation/v1/genesis.ts +++ b/__fixtures__/v-next/outputinstantrpc/evmos/inflation/v1/genesis.ts @@ -5,7 +5,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "evmos.inflation.v1"; /** GenesisState defines the inflation module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** amount of past periods, based on the epochs per period param */ period: bigint; diff --git a/__fixtures__/v-next/outputinstantrpc/evmos/recovery/v1/genesis.ts b/__fixtures__/v-next/outputinstantrpc/evmos/recovery/v1/genesis.ts index 42c67aa871..e385ee04c1 100644 --- a/__fixtures__/v-next/outputinstantrpc/evmos/recovery/v1/genesis.ts +++ b/__fixtures__/v-next/outputinstantrpc/evmos/recovery/v1/genesis.ts @@ -5,7 +5,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "evmos.recovery.v1"; /** GenesisState defines the recovery module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; } export interface GenesisStateProtoMsg { diff --git a/__fixtures__/v-next/outputinstantrpc/google/api/expr/v1alpha1/eval.ts b/__fixtures__/v-next/outputinstantrpc/google/api/expr/v1alpha1/eval.ts index 078d4607ab..6ec8606ccd 100644 --- a/__fixtures__/v-next/outputinstantrpc/google/api/expr/v1alpha1/eval.ts +++ b/__fixtures__/v-next/outputinstantrpc/google/api/expr/v1alpha1/eval.ts @@ -7,7 +7,7 @@ export const protobufPackage = "google.api.expr.v1alpha1"; /** * The state of an evaluation. * - * Can represent an inital, partial, or completed state of evaluation. + * Can represent an initial, partial, or completed state of evaluation. */ export interface EvalState { /** The unique values referenced in this message. */ @@ -27,7 +27,7 @@ export interface EvalStateProtoMsg { /** * The state of an evaluation. * - * Can represent an inital, partial, or completed state of evaluation. + * Can represent an initial, partial, or completed state of evaluation. */ export interface EvalStateSDKType { values: ExprValueSDKType[]; diff --git a/__fixtures__/v-next/outputinstantrpc/osmosis/incentives/genesis.ts b/__fixtures__/v-next/outputinstantrpc/osmosis/incentives/genesis.ts index 2efbdb9eb3..c3e309e69c 100644 --- a/__fixtures__/v-next/outputinstantrpc/osmosis/incentives/genesis.ts +++ b/__fixtures__/v-next/outputinstantrpc/osmosis/incentives/genesis.ts @@ -16,7 +16,7 @@ export interface GenesisState { gauges: Gauge[]; /** * lockable_durations are all lockup durations that gauges can be locked for - * in order to recieve incentives + * in order to receive incentives */ lockableDurations: Duration[]; /** diff --git a/__fixtures__/v-next/outputinstantrpc/osmosis/incentives/query.lcd.ts b/__fixtures__/v-next/outputinstantrpc/osmosis/incentives/query.lcd.ts index aeed5a1458..82b227b2a4 100644 --- a/__fixtures__/v-next/outputinstantrpc/osmosis/incentives/query.lcd.ts +++ b/__fixtures__/v-next/outputinstantrpc/osmosis/incentives/query.lcd.ts @@ -64,7 +64,7 @@ export class LCDQueryClient { const endpoint = `osmosis/incentives/v1beta1/active_gauges_per_denom`; return ActiveGaugesPerDenomResponse.fromSDKJSON(await this.req.get(endpoint, options)); }; - /* Returns scheduled gauges that have not yet occured */ + /* Returns scheduled gauges that have not yet occurred */ upcomingGauges = async (params: UpcomingGaugesRequest = { pagination: PageRequest.fromPartial({}) }): Promise => { @@ -77,7 +77,7 @@ export class LCDQueryClient { const endpoint = `osmosis/incentives/v1beta1/upcoming_gauges`; return UpcomingGaugesResponse.fromSDKJSON(await this.req.get(endpoint, options)); }; - /* UpcomingGaugesPerDenom returns scheduled gauges that have not yet occured + /* UpcomingGaugesPerDenom returns scheduled gauges that have not yet occurred by denom */ upcomingGaugesPerDenom = async (params: UpcomingGaugesPerDenomRequest): Promise => { const options: any = { diff --git a/__fixtures__/v-next/outputinstantrpc/osmosis/incentives/query.rpc.Query.ts b/__fixtures__/v-next/outputinstantrpc/osmosis/incentives/query.rpc.Query.ts index f508fbb9a1..af2ff258b2 100644 --- a/__fixtures__/v-next/outputinstantrpc/osmosis/incentives/query.rpc.Query.ts +++ b/__fixtures__/v-next/outputinstantrpc/osmosis/incentives/query.rpc.Query.ts @@ -17,10 +17,10 @@ export interface Query { activeGauges(request?: ActiveGaugesRequest): Promise; /** ActiveGaugesPerDenom returns active gauges by denom */ activeGaugesPerDenom(request: ActiveGaugesPerDenomRequest): Promise; - /** Returns scheduled gauges that have not yet occured */ + /** Returns scheduled gauges that have not yet occurred */ upcomingGauges(request?: UpcomingGaugesRequest): Promise; /** - * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occured + * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occurred * by denom */ upcomingGaugesPerDenom(request: UpcomingGaugesPerDenomRequest): Promise; @@ -75,7 +75,7 @@ export class QueryClientImpl implements Query { const promise = this.rpc.request("osmosis.incentives.Query", "ActiveGaugesPerDenom", data); return promise.then(data => ActiveGaugesPerDenomResponse.decode(new BinaryReader(data))); }; - /* Returns scheduled gauges that have not yet occured */ + /* Returns scheduled gauges that have not yet occurred */ upcomingGauges = async (request: UpcomingGaugesRequest = { pagination: PageRequest.fromPartial({}) }): Promise => { @@ -83,7 +83,7 @@ export class QueryClientImpl implements Query { const promise = this.rpc.request("osmosis.incentives.Query", "UpcomingGauges", data); return promise.then(data => UpcomingGaugesResponse.decode(new BinaryReader(data))); }; - /* UpcomingGaugesPerDenom returns scheduled gauges that have not yet occured + /* UpcomingGaugesPerDenom returns scheduled gauges that have not yet occurred by denom */ upcomingGaugesPerDenom = async (request: UpcomingGaugesPerDenomRequest): Promise => { const data = UpcomingGaugesPerDenomRequest.encode(request).finish(); diff --git a/__fixtures__/v-next/outputinstantrpc/osmosis/incentives/query.ts b/__fixtures__/v-next/outputinstantrpc/osmosis/incentives/query.ts index a504ffb4d5..9be7541436 100644 --- a/__fixtures__/v-next/outputinstantrpc/osmosis/incentives/query.ts +++ b/__fixtures__/v-next/outputinstantrpc/osmosis/incentives/query.ts @@ -198,7 +198,7 @@ export interface RewardsEstRequestSDKType { } export interface RewardsEstResponse { /** - * Estimated coin rewards that will be recieved at provided address + * Estimated coin rewards that will be received at provided address * from specified locks between current time and end epoch */ coins: Coin[]; @@ -217,7 +217,7 @@ export interface QueryLockableDurationsRequestProtoMsg { } export interface QueryLockableDurationsRequestSDKType {} export interface QueryLockableDurationsResponse { - /** Time durations that users can lock coins for in order to recieve rewards */ + /** Time durations that users can lock coins for in order to receive rewards */ lockableDurations: Duration[]; } export interface QueryLockableDurationsResponseProtoMsg { diff --git a/__fixtures__/v-next/outputinstantrpc/osmosis/mint/v1beta1/genesis.ts b/__fixtures__/v-next/outputinstantrpc/osmosis/mint/v1beta1/genesis.ts index 49aaa2c896..ebd6e4ec57 100644 --- a/__fixtures__/v-next/outputinstantrpc/osmosis/mint/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputinstantrpc/osmosis/mint/v1beta1/genesis.ts @@ -7,7 +7,7 @@ export const protobufPackage = "osmosis.mint.v1beta1"; export interface GenesisState { /** minter is an abstraction for holding current rewards information. */ minter: Minter; - /** params defines all the paramaters of the mint module. */ + /** params defines all the parameters of the mint module. */ params: Params; /** * reduction_started_epoch is the first epoch in which the reduction of mint diff --git a/__fixtures__/v-next/outputinstantrpc/osmosis/pool-incentives/v1beta1/genesis.ts b/__fixtures__/v-next/outputinstantrpc/osmosis/pool-incentives/v1beta1/genesis.ts index 71302c0d0c..e0cf6f457f 100644 --- a/__fixtures__/v-next/outputinstantrpc/osmosis/pool-incentives/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputinstantrpc/osmosis/pool-incentives/v1beta1/genesis.ts @@ -6,7 +6,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "osmosis.poolincentives.v1beta1"; /** GenesisState defines the pool incentives module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; lockableDurations: Duration[]; distrInfo?: DistrInfo; diff --git a/__fixtures__/v-next/outputinstantrpc/osmosis/tokenfactory/v1beta1/genesis.ts b/__fixtures__/v-next/outputinstantrpc/osmosis/tokenfactory/v1beta1/genesis.ts index baa999c8a7..505ba1cefc 100644 --- a/__fixtures__/v-next/outputinstantrpc/osmosis/tokenfactory/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputinstantrpc/osmosis/tokenfactory/v1beta1/genesis.ts @@ -6,7 +6,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "osmosis.tokenfactory.v1beta1"; /** GenesisState defines the tokenfactory module's genesis state. */ export interface GenesisState { - /** params defines the paramaters of the module. */ + /** params defines the parameters of the module. */ params: Params; factoryDenoms: GenesisDenom[]; } diff --git a/__fixtures__/v-next/outputinstantrpc/osmosis/twap/v1beta1/twap_record.ts b/__fixtures__/v-next/outputinstantrpc/osmosis/twap/v1beta1/twap_record.ts index e1cc512ba5..95fc13946e 100644 --- a/__fixtures__/v-next/outputinstantrpc/osmosis/twap/v1beta1/twap_record.ts +++ b/__fixtures__/v-next/outputinstantrpc/osmosis/twap/v1beta1/twap_record.ts @@ -35,7 +35,7 @@ export interface TwapRecord { p0ArithmeticTwapAccumulator: string; p1ArithmeticTwapAccumulator: string; /** - * This field contains the time in which the last spot price error occured. + * This field contains the time in which the last spot price error occurred. * It is used to alert the caller if they are getting a potentially erroneous * TWAP, due to an unforeseen underlying error. */ diff --git a/__fixtures__/v-next/outputosmojs/cosmos/auth/v1beta1/genesis.ts b/__fixtures__/v-next/outputosmojs/cosmos/auth/v1beta1/genesis.ts index 2bad51ad03..ac87a19944 100644 --- a/__fixtures__/v-next/outputosmojs/cosmos/auth/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputosmojs/cosmos/auth/v1beta1/genesis.ts @@ -6,7 +6,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "cosmos.auth.v1beta1"; /** GenesisState defines the auth module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** accounts are the accounts present at genesis. */ accounts: Any[]; diff --git a/__fixtures__/v-next/outputosmojs/cosmos/bank/v1beta1/genesis.ts b/__fixtures__/v-next/outputosmojs/cosmos/bank/v1beta1/genesis.ts index 9d30768c40..eb312471cf 100644 --- a/__fixtures__/v-next/outputosmojs/cosmos/bank/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputosmojs/cosmos/bank/v1beta1/genesis.ts @@ -6,7 +6,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "cosmos.bank.v1beta1"; /** GenesisState defines the bank module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** balances is an array containing the balances of all the accounts. */ balances: Balance[]; diff --git a/__fixtures__/v-next/outputosmojs/cosmos/distribution/v1beta1/genesis.ts b/__fixtures__/v-next/outputosmojs/cosmos/distribution/v1beta1/genesis.ts index 0cf7860b75..300f0fde72 100644 --- a/__fixtures__/v-next/outputosmojs/cosmos/distribution/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputosmojs/cosmos/distribution/v1beta1/genesis.ts @@ -130,7 +130,7 @@ export interface DelegatorStartingInfoRecordSDKType { export interface ValidatorSlashEventRecord { /** validator_address is the address of the validator. */ validatorAddress: string; - /** height defines the block height at which the slash event occured. */ + /** height defines the block height at which the slash event occurred. */ height: bigint; /** period is the period of the slash event. */ period: bigint; @@ -150,7 +150,7 @@ export interface ValidatorSlashEventRecordSDKType { } /** GenesisState defines the distribution module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** fee_pool defines the fee pool at genesis. */ feePool: FeePool; diff --git a/__fixtures__/v-next/outputosmojs/cosmos/gov/v1/genesis.ts b/__fixtures__/v-next/outputosmojs/cosmos/gov/v1/genesis.ts index cace296204..76f41125e9 100644 --- a/__fixtures__/v-next/outputosmojs/cosmos/gov/v1/genesis.ts +++ b/__fixtures__/v-next/outputosmojs/cosmos/gov/v1/genesis.ts @@ -13,11 +13,11 @@ export interface GenesisState { votes: Vote[]; /** proposals defines all the proposals present at genesis. */ proposals: Proposal[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ depositParams?: DepositParams; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ votingParams?: VotingParams; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tallyParams?: TallyParams; } export interface GenesisStateProtoMsg { diff --git a/__fixtures__/v-next/outputosmojs/cosmos/gov/v1beta1/genesis.ts b/__fixtures__/v-next/outputosmojs/cosmos/gov/v1beta1/genesis.ts index 1a55744f31..4b65be0853 100644 --- a/__fixtures__/v-next/outputosmojs/cosmos/gov/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputosmojs/cosmos/gov/v1beta1/genesis.ts @@ -13,11 +13,11 @@ export interface GenesisState { votes: Vote[]; /** proposals defines all the proposals present at genesis. */ proposals: Proposal[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ depositParams: DepositParams; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ votingParams: VotingParams; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tallyParams: TallyParams; } export interface GenesisStateProtoMsg { diff --git a/__fixtures__/v-next/outputosmojs/cosmos/mint/v1beta1/genesis.ts b/__fixtures__/v-next/outputosmojs/cosmos/mint/v1beta1/genesis.ts index 6e51c09fd1..4849d9ab79 100644 --- a/__fixtures__/v-next/outputosmojs/cosmos/mint/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputosmojs/cosmos/mint/v1beta1/genesis.ts @@ -7,7 +7,7 @@ export const protobufPackage = "cosmos.mint.v1beta1"; export interface GenesisState { /** minter is a space for holding current inflation information. */ minter: Minter; - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; } export interface GenesisStateProtoMsg { diff --git a/__fixtures__/v-next/outputosmojs/cosmos/slashing/v1beta1/genesis.ts b/__fixtures__/v-next/outputosmojs/cosmos/slashing/v1beta1/genesis.ts index 5f55861350..7051e9e35a 100644 --- a/__fixtures__/v-next/outputosmojs/cosmos/slashing/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputosmojs/cosmos/slashing/v1beta1/genesis.ts @@ -5,7 +5,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "cosmos.slashing.v1beta1"; /** GenesisState defines the slashing module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params: Params; /** * signing_infos represents a map between validator addresses and their diff --git a/__fixtures__/v-next/outputosmojs/cosmos/staking/v1beta1/genesis.ts b/__fixtures__/v-next/outputosmojs/cosmos/staking/v1beta1/genesis.ts index 6b2e8e749c..09f635b900 100644 --- a/__fixtures__/v-next/outputosmojs/cosmos/staking/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputosmojs/cosmos/staking/v1beta1/genesis.ts @@ -5,7 +5,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "cosmos.staking.v1beta1"; /** GenesisState defines the staking module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params: Params; /** * last_total_power tracks the total amounts of bonded tokens recorded during diff --git a/__fixtures__/v-next/outputosmojs/evmos/inflation/v1/genesis.ts b/__fixtures__/v-next/outputosmojs/evmos/inflation/v1/genesis.ts index 61cfd3ab55..328838c7c2 100644 --- a/__fixtures__/v-next/outputosmojs/evmos/inflation/v1/genesis.ts +++ b/__fixtures__/v-next/outputosmojs/evmos/inflation/v1/genesis.ts @@ -5,7 +5,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "evmos.inflation.v1"; /** GenesisState defines the inflation module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** amount of past periods, based on the epochs per period param */ period: bigint; diff --git a/__fixtures__/v-next/outputosmojs/evmos/recovery/v1/genesis.ts b/__fixtures__/v-next/outputosmojs/evmos/recovery/v1/genesis.ts index f1a9beb7f9..9907d8beb4 100644 --- a/__fixtures__/v-next/outputosmojs/evmos/recovery/v1/genesis.ts +++ b/__fixtures__/v-next/outputosmojs/evmos/recovery/v1/genesis.ts @@ -5,7 +5,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "evmos.recovery.v1"; /** GenesisState defines the recovery module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; } export interface GenesisStateProtoMsg { diff --git a/__fixtures__/v-next/outputosmojs/google/api/expr/v1alpha1/eval.ts b/__fixtures__/v-next/outputosmojs/google/api/expr/v1alpha1/eval.ts index 4b64d7c8b6..4e117d9b4c 100644 --- a/__fixtures__/v-next/outputosmojs/google/api/expr/v1alpha1/eval.ts +++ b/__fixtures__/v-next/outputosmojs/google/api/expr/v1alpha1/eval.ts @@ -7,7 +7,7 @@ export const protobufPackage = "google.api.expr.v1alpha1"; /** * The state of an evaluation. * - * Can represent an inital, partial, or completed state of evaluation. + * Can represent an initial, partial, or completed state of evaluation. */ export interface EvalState { /** The unique values referenced in this message. */ @@ -27,7 +27,7 @@ export interface EvalStateProtoMsg { /** * The state of an evaluation. * - * Can represent an inital, partial, or completed state of evaluation. + * Can represent an initial, partial, or completed state of evaluation. */ export interface EvalStateSDKType { values: ExprValueSDKType[]; diff --git a/__fixtures__/v-next/outputosmojs/osmosis/incentives/genesis.ts b/__fixtures__/v-next/outputosmojs/osmosis/incentives/genesis.ts index 51e039948a..5279236e91 100644 --- a/__fixtures__/v-next/outputosmojs/osmosis/incentives/genesis.ts +++ b/__fixtures__/v-next/outputosmojs/osmosis/incentives/genesis.ts @@ -16,7 +16,7 @@ export interface GenesisState { gauges: Gauge[]; /** * lockable_durations are all lockup durations that gauges can be locked for - * in order to recieve incentives + * in order to receive incentives */ lockableDurations: Duration[]; /** diff --git a/__fixtures__/v-next/outputosmojs/osmosis/incentives/query.lcd.ts b/__fixtures__/v-next/outputosmojs/osmosis/incentives/query.lcd.ts index e6b02d8377..47b6ac5cb7 100644 --- a/__fixtures__/v-next/outputosmojs/osmosis/incentives/query.lcd.ts +++ b/__fixtures__/v-next/outputosmojs/osmosis/incentives/query.lcd.ts @@ -73,7 +73,7 @@ export class LCDQueryClient { const endpoint = `osmosis/incentives/v1beta1/active_gauges_per_denom`; return ActiveGaugesPerDenomResponse.fromSDKJSON(await this.req.get(endpoint, options)); } - /* Returns scheduled gauges that have not yet occured */ + /* Returns scheduled gauges that have not yet occurred */ async upcomingGauges(params: UpcomingGaugesRequest = { pagination: undefined }): Promise { @@ -86,7 +86,7 @@ export class LCDQueryClient { const endpoint = `osmosis/incentives/v1beta1/upcoming_gauges`; return UpcomingGaugesResponse.fromSDKJSON(await this.req.get(endpoint, options)); } - /* UpcomingGaugesPerDenom returns scheduled gauges that have not yet occured + /* UpcomingGaugesPerDenom returns scheduled gauges that have not yet occurred by denom */ async upcomingGaugesPerDenom(params: UpcomingGaugesPerDenomRequest): Promise { const options: any = { diff --git a/__fixtures__/v-next/outputosmojs/osmosis/incentives/query.rpc.Query.ts b/__fixtures__/v-next/outputosmojs/osmosis/incentives/query.rpc.Query.ts index e90c59a953..aefef5f212 100644 --- a/__fixtures__/v-next/outputosmojs/osmosis/incentives/query.rpc.Query.ts +++ b/__fixtures__/v-next/outputosmojs/osmosis/incentives/query.rpc.Query.ts @@ -18,10 +18,10 @@ export interface Query { activeGauges(request?: ActiveGaugesRequest): Promise; /** ActiveGaugesPerDenom returns active gauges by denom */ activeGaugesPerDenom(request: ActiveGaugesPerDenomRequest): Promise; - /** Returns scheduled gauges that have not yet occured */ + /** Returns scheduled gauges that have not yet occurred */ upcomingGauges(request?: UpcomingGaugesRequest): Promise; /** - * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occured + * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occurred * by denom */ upcomingGaugesPerDenom(request: UpcomingGaugesPerDenomRequest): Promise; diff --git a/__fixtures__/v-next/outputosmojs/osmosis/incentives/query.ts b/__fixtures__/v-next/outputosmojs/osmosis/incentives/query.ts index 8475dc05e6..69ebf5c89f 100644 --- a/__fixtures__/v-next/outputosmojs/osmosis/incentives/query.ts +++ b/__fixtures__/v-next/outputosmojs/osmosis/incentives/query.ts @@ -198,7 +198,7 @@ export interface RewardsEstRequestSDKType { } export interface RewardsEstResponse { /** - * Estimated coin rewards that will be recieved at provided address + * Estimated coin rewards that will be received at provided address * from specified locks between current time and end epoch */ coins: Coin[]; @@ -217,7 +217,7 @@ export interface QueryLockableDurationsRequestProtoMsg { } export interface QueryLockableDurationsRequestSDKType {} export interface QueryLockableDurationsResponse { - /** Time durations that users can lock coins for in order to recieve rewards */ + /** Time durations that users can lock coins for in order to receive rewards */ lockableDurations: Duration[]; } export interface QueryLockableDurationsResponseProtoMsg { diff --git a/__fixtures__/v-next/outputosmojs/osmosis/mint/v1beta1/genesis.ts b/__fixtures__/v-next/outputosmojs/osmosis/mint/v1beta1/genesis.ts index 8215580a1f..f3f6f82e6e 100644 --- a/__fixtures__/v-next/outputosmojs/osmosis/mint/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputosmojs/osmosis/mint/v1beta1/genesis.ts @@ -7,7 +7,7 @@ export const protobufPackage = "osmosis.mint.v1beta1"; export interface GenesisState { /** minter is an abstraction for holding current rewards information. */ minter: Minter; - /** params defines all the paramaters of the mint module. */ + /** params defines all the parameters of the mint module. */ params: Params; /** * reduction_started_epoch is the first epoch in which the reduction of mint diff --git a/__fixtures__/v-next/outputosmojs/osmosis/pool-incentives/v1beta1/genesis.ts b/__fixtures__/v-next/outputosmojs/osmosis/pool-incentives/v1beta1/genesis.ts index 0eff730908..1b62897793 100644 --- a/__fixtures__/v-next/outputosmojs/osmosis/pool-incentives/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputosmojs/osmosis/pool-incentives/v1beta1/genesis.ts @@ -6,7 +6,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "osmosis.poolincentives.v1beta1"; /** GenesisState defines the pool incentives module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; lockableDurations: Duration[]; distrInfo?: DistrInfo; diff --git a/__fixtures__/v-next/outputosmojs/osmosis/tokenfactory/v1beta1/genesis.ts b/__fixtures__/v-next/outputosmojs/osmosis/tokenfactory/v1beta1/genesis.ts index 4bcda26cd9..4028aae209 100644 --- a/__fixtures__/v-next/outputosmojs/osmosis/tokenfactory/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputosmojs/osmosis/tokenfactory/v1beta1/genesis.ts @@ -6,7 +6,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "osmosis.tokenfactory.v1beta1"; /** GenesisState defines the tokenfactory module's genesis state. */ export interface GenesisState { - /** params defines the paramaters of the module. */ + /** params defines the parameters of the module. */ params: Params; factoryDenoms: GenesisDenom[]; } diff --git a/__fixtures__/v-next/outputosmojs/osmosis/twap/v1beta1/twap_record.ts b/__fixtures__/v-next/outputosmojs/osmosis/twap/v1beta1/twap_record.ts index 201c4c81dc..178c2da5a1 100644 --- a/__fixtures__/v-next/outputosmojs/osmosis/twap/v1beta1/twap_record.ts +++ b/__fixtures__/v-next/outputosmojs/osmosis/twap/v1beta1/twap_record.ts @@ -35,7 +35,7 @@ export interface TwapRecord { p0ArithmeticTwapAccumulator: string; p1ArithmeticTwapAccumulator: string; /** - * This field contains the time in which the last spot price error occured. + * This field contains the time in which the last spot price error occurred. * It is used to alert the caller if they are getting a potentially erroneous * TWAP, due to an unforeseen underlying error. */ diff --git a/__fixtures__/v-next/outputsign/cosmos/auth/v1beta1/genesis.ts b/__fixtures__/v-next/outputsign/cosmos/auth/v1beta1/genesis.ts index 214c9f175b..c6b1e8b9fc 100644 --- a/__fixtures__/v-next/outputsign/cosmos/auth/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputsign/cosmos/auth/v1beta1/genesis.ts @@ -5,7 +5,7 @@ import { DeepPartial } from "../../../helpers"; export const protobufPackage = "cosmos.auth.v1beta1"; /** GenesisState defines the auth module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** accounts are the accounts present at genesis. */ accounts: Any[]; @@ -16,7 +16,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the auth module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; /** accounts are the accounts present at genesis. */ accounts?: AnyAmino[]; diff --git a/__fixtures__/v-next/outputsign/cosmos/bank/v1beta1/genesis.ts b/__fixtures__/v-next/outputsign/cosmos/bank/v1beta1/genesis.ts index 7ebd30f797..52f34566e7 100644 --- a/__fixtures__/v-next/outputsign/cosmos/bank/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputsign/cosmos/bank/v1beta1/genesis.ts @@ -5,7 +5,7 @@ import { DeepPartial } from "../../../helpers"; export const protobufPackage = "cosmos.bank.v1beta1"; /** GenesisState defines the bank module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** balances is an array containing the balances of all the accounts. */ balances: Balance[]; @@ -23,7 +23,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the bank module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; /** balances is an array containing the balances of all the accounts. */ balances?: BalanceAmino[]; diff --git a/__fixtures__/v-next/outputsign/cosmos/distribution/v1beta1/genesis.ts b/__fixtures__/v-next/outputsign/cosmos/distribution/v1beta1/genesis.ts index 51f989fd8f..7fc28017bf 100644 --- a/__fixtures__/v-next/outputsign/cosmos/distribution/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputsign/cosmos/distribution/v1beta1/genesis.ts @@ -209,7 +209,7 @@ export interface DelegatorStartingInfoRecordSDKType { export interface ValidatorSlashEventRecord { /** validator_address is the address of the validator. */ validatorAddress: string; - /** height defines the block height at which the slash event occured. */ + /** height defines the block height at which the slash event occurred. */ height: bigint; /** period is the period of the slash event. */ period: bigint; @@ -224,7 +224,7 @@ export interface ValidatorSlashEventRecordProtoMsg { export interface ValidatorSlashEventRecordAmino { /** validator_address is the address of the validator. */ validator_address?: string; - /** height defines the block height at which the slash event occured. */ + /** height defines the block height at which the slash event occurred. */ height?: string; /** period is the period of the slash event. */ period?: string; @@ -244,7 +244,7 @@ export interface ValidatorSlashEventRecordSDKType { } /** GenesisState defines the distribution module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** fee_pool defines the fee pool at genesis. */ feePool: FeePool; @@ -271,7 +271,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the distribution module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; /** fee_pool defines the fee pool at genesis. */ fee_pool?: FeePoolAmino; diff --git a/__fixtures__/v-next/outputsign/cosmos/gov/v1/genesis.ts b/__fixtures__/v-next/outputsign/cosmos/gov/v1/genesis.ts index 6b445507f0..1e3bdba244 100644 --- a/__fixtures__/v-next/outputsign/cosmos/gov/v1/genesis.ts +++ b/__fixtures__/v-next/outputsign/cosmos/gov/v1/genesis.ts @@ -12,11 +12,11 @@ export interface GenesisState { votes: Vote[]; /** proposals defines all the proposals present at genesis. */ proposals: Proposal[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ depositParams?: DepositParams; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ votingParams?: VotingParams; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tallyParams?: TallyParams; } export interface GenesisStateProtoMsg { @@ -33,11 +33,11 @@ export interface GenesisStateAmino { votes?: VoteAmino[]; /** proposals defines all the proposals present at genesis. */ proposals?: ProposalAmino[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ deposit_params?: DepositParamsAmino; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ voting_params?: VotingParamsAmino; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tally_params?: TallyParamsAmino; } export interface GenesisStateAminoMsg { diff --git a/__fixtures__/v-next/outputsign/cosmos/gov/v1beta1/genesis.ts b/__fixtures__/v-next/outputsign/cosmos/gov/v1beta1/genesis.ts index 4d2bed17d7..801089d58f 100644 --- a/__fixtures__/v-next/outputsign/cosmos/gov/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputsign/cosmos/gov/v1beta1/genesis.ts @@ -12,11 +12,11 @@ export interface GenesisState { votes: Vote[]; /** proposals defines all the proposals present at genesis. */ proposals: Proposal[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ depositParams: DepositParams; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ votingParams: VotingParams; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tallyParams: TallyParams; } export interface GenesisStateProtoMsg { @@ -33,11 +33,11 @@ export interface GenesisStateAmino { votes?: VoteAmino[]; /** proposals defines all the proposals present at genesis. */ proposals?: ProposalAmino[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ deposit_params?: DepositParamsAmino; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ voting_params?: VotingParamsAmino; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tally_params?: TallyParamsAmino; } export interface GenesisStateAminoMsg { diff --git a/__fixtures__/v-next/outputsign/cosmos/mint/v1beta1/genesis.ts b/__fixtures__/v-next/outputsign/cosmos/mint/v1beta1/genesis.ts index 753454160e..6784c965fb 100644 --- a/__fixtures__/v-next/outputsign/cosmos/mint/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputsign/cosmos/mint/v1beta1/genesis.ts @@ -6,7 +6,7 @@ export const protobufPackage = "cosmos.mint.v1beta1"; export interface GenesisState { /** minter is a space for holding current inflation information. */ minter: Minter; - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; } export interface GenesisStateProtoMsg { @@ -17,7 +17,7 @@ export interface GenesisStateProtoMsg { export interface GenesisStateAmino { /** minter is a space for holding current inflation information. */ minter?: MinterAmino; - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; } export interface GenesisStateAminoMsg { diff --git a/__fixtures__/v-next/outputsign/cosmos/slashing/v1beta1/genesis.ts b/__fixtures__/v-next/outputsign/cosmos/slashing/v1beta1/genesis.ts index 2639115554..a76b8276b4 100644 --- a/__fixtures__/v-next/outputsign/cosmos/slashing/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputsign/cosmos/slashing/v1beta1/genesis.ts @@ -4,7 +4,7 @@ import { DeepPartial } from "../../../helpers"; export const protobufPackage = "cosmos.slashing.v1beta1"; /** GenesisState defines the slashing module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params: Params; /** * signing_infos represents a map between validator addresses and their @@ -23,7 +23,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the slashing module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params?: ParamsAmino; /** * signing_infos represents a map between validator addresses and their diff --git a/__fixtures__/v-next/outputsign/cosmos/staking/v1beta1/genesis.ts b/__fixtures__/v-next/outputsign/cosmos/staking/v1beta1/genesis.ts index f9ba014a4b..a106626e17 100644 --- a/__fixtures__/v-next/outputsign/cosmos/staking/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputsign/cosmos/staking/v1beta1/genesis.ts @@ -4,7 +4,7 @@ import { DeepPartial, bytesFromBase64, base64FromBytes } from "../../../helpers" export const protobufPackage = "cosmos.staking.v1beta1"; /** GenesisState defines the staking module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params: Params; /** * last_total_power tracks the total amounts of bonded tokens recorded during @@ -32,7 +32,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the staking module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params?: ParamsAmino; /** * last_total_power tracks the total amounts of bonded tokens recorded during diff --git a/__fixtures__/v-next/outputsign/evmos/inflation/v1/genesis.ts b/__fixtures__/v-next/outputsign/evmos/inflation/v1/genesis.ts index f89a4bb2c6..f00f75a763 100644 --- a/__fixtures__/v-next/outputsign/evmos/inflation/v1/genesis.ts +++ b/__fixtures__/v-next/outputsign/evmos/inflation/v1/genesis.ts @@ -4,7 +4,7 @@ import { DeepPartial } from "../../../helpers"; export const protobufPackage = "evmos.inflation.v1"; /** GenesisState defines the inflation module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** amount of past periods, based on the epochs per period param */ period: bigint; @@ -21,7 +21,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the inflation module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; /** amount of past periods, based on the epochs per period param */ period?: string; diff --git a/__fixtures__/v-next/outputsign/evmos/recovery/v1/genesis.ts b/__fixtures__/v-next/outputsign/evmos/recovery/v1/genesis.ts index f2c63d4d02..e6d48357ab 100644 --- a/__fixtures__/v-next/outputsign/evmos/recovery/v1/genesis.ts +++ b/__fixtures__/v-next/outputsign/evmos/recovery/v1/genesis.ts @@ -4,7 +4,7 @@ import { DeepPartial } from "../../../helpers"; export const protobufPackage = "evmos.recovery.v1"; /** GenesisState defines the recovery module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; } export interface GenesisStateProtoMsg { @@ -13,7 +13,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the recovery module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; } export interface GenesisStateAminoMsg { diff --git a/__fixtures__/v-next/outputsign/google/api/expr/v1alpha1/eval.ts b/__fixtures__/v-next/outputsign/google/api/expr/v1alpha1/eval.ts index b04b879f03..43384b5dc6 100644 --- a/__fixtures__/v-next/outputsign/google/api/expr/v1alpha1/eval.ts +++ b/__fixtures__/v-next/outputsign/google/api/expr/v1alpha1/eval.ts @@ -6,7 +6,7 @@ export const protobufPackage = "google.api.expr.v1alpha1"; /** * The state of an evaluation. * - * Can represent an inital, partial, or completed state of evaluation. + * Can represent an initial, partial, or completed state of evaluation. */ export interface EvalState { /** The unique values referenced in this message. */ @@ -26,7 +26,7 @@ export interface EvalStateProtoMsg { /** * The state of an evaluation. * - * Can represent an inital, partial, or completed state of evaluation. + * Can represent an initial, partial, or completed state of evaluation. */ export interface EvalStateAmino { /** The unique values referenced in this message. */ @@ -46,7 +46,7 @@ export interface EvalStateAminoMsg { /** * The state of an evaluation. * - * Can represent an inital, partial, or completed state of evaluation. + * Can represent an initial, partial, or completed state of evaluation. */ export interface EvalStateSDKType { values: ExprValueSDKType[]; diff --git a/__fixtures__/v-next/outputsign/osmosis/incentives/genesis.ts b/__fixtures__/v-next/outputsign/osmosis/incentives/genesis.ts index 5090db544f..27f3c9d983 100644 --- a/__fixtures__/v-next/outputsign/osmosis/incentives/genesis.ts +++ b/__fixtures__/v-next/outputsign/osmosis/incentives/genesis.ts @@ -15,7 +15,7 @@ export interface GenesisState { gauges: Gauge[]; /** * lockable_durations are all lockup durations that gauges can be locked for - * in order to recieve incentives + * in order to receive incentives */ lockableDurations: Duration[]; /** @@ -39,7 +39,7 @@ export interface GenesisStateAmino { gauges?: GaugeAmino[]; /** * lockable_durations are all lockup durations that gauges can be locked for - * in order to recieve incentives + * in order to receive incentives */ lockable_durations?: DurationAmino[]; /** diff --git a/__fixtures__/v-next/outputsign/osmosis/incentives/query.lcd.ts b/__fixtures__/v-next/outputsign/osmosis/incentives/query.lcd.ts index dc52fe6d30..1271a76797 100644 --- a/__fixtures__/v-next/outputsign/osmosis/incentives/query.lcd.ts +++ b/__fixtures__/v-next/outputsign/osmosis/incentives/query.lcd.ts @@ -73,7 +73,7 @@ export class LCDQueryClient { const endpoint = `osmosis/incentives/v1beta1/active_gauges_per_denom`; return await this.req.get(endpoint, options); } - /* Returns scheduled gauges that have not yet occured */ + /* Returns scheduled gauges that have not yet occurred */ async upcomingGauges(params: UpcomingGaugesRequest = { pagination: PageRequest.fromPartial({}) }): Promise { @@ -86,7 +86,7 @@ export class LCDQueryClient { const endpoint = `osmosis/incentives/v1beta1/upcoming_gauges`; return await this.req.get(endpoint, options); } - /* UpcomingGaugesPerDenom returns scheduled gauges that have not yet occured + /* UpcomingGaugesPerDenom returns scheduled gauges that have not yet occurred by denom */ async upcomingGaugesPerDenom(params: UpcomingGaugesPerDenomRequest): Promise { const options: any = { diff --git a/__fixtures__/v-next/outputsign/osmosis/incentives/query.rpc.Query.ts b/__fixtures__/v-next/outputsign/osmosis/incentives/query.rpc.Query.ts index 01be631bc8..6808388040 100644 --- a/__fixtures__/v-next/outputsign/osmosis/incentives/query.rpc.Query.ts +++ b/__fixtures__/v-next/outputsign/osmosis/incentives/query.rpc.Query.ts @@ -18,10 +18,10 @@ export interface Query { activeGauges(request?: ActiveGaugesRequest): Promise; /** ActiveGaugesPerDenom returns active gauges by denom */ activeGaugesPerDenom(request: ActiveGaugesPerDenomRequest): Promise; - /** Returns scheduled gauges that have not yet occured */ + /** Returns scheduled gauges that have not yet occurred */ upcomingGauges(request?: UpcomingGaugesRequest): Promise; /** - * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occured + * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occurred * by denom */ upcomingGaugesPerDenom(request: UpcomingGaugesPerDenomRequest): Promise; diff --git a/__fixtures__/v-next/outputsign/osmosis/incentives/query.ts b/__fixtures__/v-next/outputsign/osmosis/incentives/query.ts index 3ca5bb033f..eaf2e56f06 100644 --- a/__fixtures__/v-next/outputsign/osmosis/incentives/query.ts +++ b/__fixtures__/v-next/outputsign/osmosis/incentives/query.ts @@ -335,7 +335,7 @@ export interface RewardsEstRequestSDKType { } export interface RewardsEstResponse { /** - * Estimated coin rewards that will be recieved at provided address + * Estimated coin rewards that will be received at provided address * from specified locks between current time and end epoch */ coins: Coin[]; @@ -346,7 +346,7 @@ export interface RewardsEstResponseProtoMsg { } export interface RewardsEstResponseAmino { /** - * Estimated coin rewards that will be recieved at provided address + * Estimated coin rewards that will be received at provided address * from specified locks between current time and end epoch */ coins?: CoinAmino[]; @@ -370,7 +370,7 @@ export interface QueryLockableDurationsRequestAminoMsg { } export interface QueryLockableDurationsRequestSDKType {} export interface QueryLockableDurationsResponse { - /** Time durations that users can lock coins for in order to recieve rewards */ + /** Time durations that users can lock coins for in order to receive rewards */ lockableDurations: Duration[]; } export interface QueryLockableDurationsResponseProtoMsg { @@ -378,7 +378,7 @@ export interface QueryLockableDurationsResponseProtoMsg { value: Uint8Array; } export interface QueryLockableDurationsResponseAmino { - /** Time durations that users can lock coins for in order to recieve rewards */ + /** Time durations that users can lock coins for in order to receive rewards */ lockable_durations?: DurationAmino[]; } export interface QueryLockableDurationsResponseAminoMsg { diff --git a/__fixtures__/v-next/outputsign/osmosis/mint/v1beta1/genesis.ts b/__fixtures__/v-next/outputsign/osmosis/mint/v1beta1/genesis.ts index ac3f6c68fe..0e291a08a1 100644 --- a/__fixtures__/v-next/outputsign/osmosis/mint/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputsign/osmosis/mint/v1beta1/genesis.ts @@ -6,7 +6,7 @@ export const protobufPackage = "osmosis.mint.v1beta1"; export interface GenesisState { /** minter is an abstraction for holding current rewards information. */ minter: Minter; - /** params defines all the paramaters of the mint module. */ + /** params defines all the parameters of the mint module. */ params: Params; /** * reduction_started_epoch is the first epoch in which the reduction of mint @@ -22,7 +22,7 @@ export interface GenesisStateProtoMsg { export interface GenesisStateAmino { /** minter is an abstraction for holding current rewards information. */ minter?: MinterAmino; - /** params defines all the paramaters of the mint module. */ + /** params defines all the parameters of the mint module. */ params?: ParamsAmino; /** * reduction_started_epoch is the first epoch in which the reduction of mint diff --git a/__fixtures__/v-next/outputsign/osmosis/pool-incentives/v1beta1/genesis.ts b/__fixtures__/v-next/outputsign/osmosis/pool-incentives/v1beta1/genesis.ts index 3e7a43ca93..4c51c002ac 100644 --- a/__fixtures__/v-next/outputsign/osmosis/pool-incentives/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputsign/osmosis/pool-incentives/v1beta1/genesis.ts @@ -5,7 +5,7 @@ import { DeepPartial } from "../../../helpers"; export const protobufPackage = "osmosis.poolincentives.v1beta1"; /** GenesisState defines the pool incentives module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; lockableDurations: Duration[]; distrInfo?: DistrInfo; @@ -17,7 +17,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the pool incentives module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; lockable_durations?: DurationAmino[]; distr_info?: DistrInfoAmino; diff --git a/__fixtures__/v-next/outputsign/osmosis/tokenfactory/v1beta1/genesis.ts b/__fixtures__/v-next/outputsign/osmosis/tokenfactory/v1beta1/genesis.ts index dba5ba56f9..0602f92df6 100644 --- a/__fixtures__/v-next/outputsign/osmosis/tokenfactory/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputsign/osmosis/tokenfactory/v1beta1/genesis.ts @@ -5,7 +5,7 @@ import { DeepPartial } from "../../../helpers"; export const protobufPackage = "osmosis.tokenfactory.v1beta1"; /** GenesisState defines the tokenfactory module's genesis state. */ export interface GenesisState { - /** params defines the paramaters of the module. */ + /** params defines the parameters of the module. */ params: Params; factoryDenoms: GenesisDenom[]; } @@ -15,7 +15,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the tokenfactory module's genesis state. */ export interface GenesisStateAmino { - /** params defines the paramaters of the module. */ + /** params defines the parameters of the module. */ params?: ParamsAmino; factory_denoms?: GenesisDenomAmino[]; } diff --git a/__fixtures__/v-next/outputsign/osmosis/twap/v1beta1/twap_record.ts b/__fixtures__/v-next/outputsign/osmosis/twap/v1beta1/twap_record.ts index 9fac131dc1..74df20cb0c 100644 --- a/__fixtures__/v-next/outputsign/osmosis/twap/v1beta1/twap_record.ts +++ b/__fixtures__/v-next/outputsign/osmosis/twap/v1beta1/twap_record.ts @@ -34,7 +34,7 @@ export interface TwapRecord { p0ArithmeticTwapAccumulator: string; p1ArithmeticTwapAccumulator: string; /** - * This field contains the time in which the last spot price error occured. + * This field contains the time in which the last spot price error occurred. * It is used to alert the caller if they are getting a potentially erroneous * TWAP, due to an unforeseen underlying error. */ @@ -75,7 +75,7 @@ export interface TwapRecordAmino { p0_arithmetic_twap_accumulator?: string; p1_arithmetic_twap_accumulator?: string; /** - * This field contains the time in which the last spot price error occured. + * This field contains the time in which the last spot price error occurred. * It is used to alert the caller if they are getting a potentially erroneous * TWAP, due to an unforeseen underlying error. */ diff --git a/__fixtures__/v-next/outputv2/cosmos/auth/v1beta1/genesis.ts b/__fixtures__/v-next/outputv2/cosmos/auth/v1beta1/genesis.ts index 4cbf4c4228..50e18cea8f 100644 --- a/__fixtures__/v-next/outputv2/cosmos/auth/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv2/cosmos/auth/v1beta1/genesis.ts @@ -6,7 +6,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "cosmos.auth.v1beta1"; /** GenesisState defines the auth module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** accounts are the accounts present at genesis. */ accounts: Any[]; @@ -17,7 +17,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the auth module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; /** accounts are the accounts present at genesis. */ accounts?: AnyAmino[]; diff --git a/__fixtures__/v-next/outputv2/cosmos/bank/v1beta1/genesis.ts b/__fixtures__/v-next/outputv2/cosmos/bank/v1beta1/genesis.ts index f70ad4ce84..eb66d880f8 100644 --- a/__fixtures__/v-next/outputv2/cosmos/bank/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv2/cosmos/bank/v1beta1/genesis.ts @@ -6,7 +6,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "cosmos.bank.v1beta1"; /** GenesisState defines the bank module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** balances is an array containing the balances of all the accounts. */ balances: Balance[]; @@ -24,7 +24,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the bank module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; /** balances is an array containing the balances of all the accounts. */ balances?: BalanceAmino[]; diff --git a/__fixtures__/v-next/outputv2/cosmos/distribution/v1beta1/genesis.ts b/__fixtures__/v-next/outputv2/cosmos/distribution/v1beta1/genesis.ts index f44820b7af..db75ce8cb8 100644 --- a/__fixtures__/v-next/outputv2/cosmos/distribution/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv2/cosmos/distribution/v1beta1/genesis.ts @@ -210,7 +210,7 @@ export interface DelegatorStartingInfoRecordSDKType { export interface ValidatorSlashEventRecord { /** validator_address is the address of the validator. */ validatorAddress: string; - /** height defines the block height at which the slash event occured. */ + /** height defines the block height at which the slash event occurred. */ height: bigint; /** period is the period of the slash event. */ period: bigint; @@ -225,7 +225,7 @@ export interface ValidatorSlashEventRecordProtoMsg { export interface ValidatorSlashEventRecordAmino { /** validator_address is the address of the validator. */ validator_address?: string; - /** height defines the block height at which the slash event occured. */ + /** height defines the block height at which the slash event occurred. */ height?: string; /** period is the period of the slash event. */ period?: string; @@ -245,7 +245,7 @@ export interface ValidatorSlashEventRecordSDKType { } /** GenesisState defines the distribution module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** fee_pool defines the fee pool at genesis. */ feePool: FeePool; @@ -272,7 +272,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the distribution module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; /** fee_pool defines the fee pool at genesis. */ fee_pool?: FeePoolAmino; diff --git a/__fixtures__/v-next/outputv2/cosmos/gov/v1/genesis.ts b/__fixtures__/v-next/outputv2/cosmos/gov/v1/genesis.ts index 859878682f..74794e74fe 100644 --- a/__fixtures__/v-next/outputv2/cosmos/gov/v1/genesis.ts +++ b/__fixtures__/v-next/outputv2/cosmos/gov/v1/genesis.ts @@ -13,11 +13,11 @@ export interface GenesisState { votes: Vote[]; /** proposals defines all the proposals present at genesis. */ proposals: Proposal[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ depositParams?: DepositParams; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ votingParams?: VotingParams; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tallyParams?: TallyParams; } export interface GenesisStateProtoMsg { @@ -34,11 +34,11 @@ export interface GenesisStateAmino { votes?: VoteAmino[]; /** proposals defines all the proposals present at genesis. */ proposals?: ProposalAmino[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ deposit_params?: DepositParamsAmino; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ voting_params?: VotingParamsAmino; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tally_params?: TallyParamsAmino; } export interface GenesisStateAminoMsg { diff --git a/__fixtures__/v-next/outputv2/cosmos/gov/v1beta1/genesis.ts b/__fixtures__/v-next/outputv2/cosmos/gov/v1beta1/genesis.ts index 2218bad6f9..9c6469a4ad 100644 --- a/__fixtures__/v-next/outputv2/cosmos/gov/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv2/cosmos/gov/v1beta1/genesis.ts @@ -13,11 +13,11 @@ export interface GenesisState { votes: Vote[]; /** proposals defines all the proposals present at genesis. */ proposals: Proposal[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ depositParams: DepositParams; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ votingParams: VotingParams; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tallyParams: TallyParams; } export interface GenesisStateProtoMsg { @@ -34,11 +34,11 @@ export interface GenesisStateAmino { votes?: VoteAmino[]; /** proposals defines all the proposals present at genesis. */ proposals?: ProposalAmino[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ deposit_params?: DepositParamsAmino; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ voting_params?: VotingParamsAmino; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tally_params?: TallyParamsAmino; } export interface GenesisStateAminoMsg { diff --git a/__fixtures__/v-next/outputv2/cosmos/mint/v1beta1/genesis.ts b/__fixtures__/v-next/outputv2/cosmos/mint/v1beta1/genesis.ts index c66dd82f9b..df56a0c326 100644 --- a/__fixtures__/v-next/outputv2/cosmos/mint/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv2/cosmos/mint/v1beta1/genesis.ts @@ -7,7 +7,7 @@ export const protobufPackage = "cosmos.mint.v1beta1"; export interface GenesisState { /** minter is a space for holding current inflation information. */ minter: Minter; - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; } export interface GenesisStateProtoMsg { @@ -18,7 +18,7 @@ export interface GenesisStateProtoMsg { export interface GenesisStateAmino { /** minter is a space for holding current inflation information. */ minter?: MinterAmino; - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; } export interface GenesisStateAminoMsg { diff --git a/__fixtures__/v-next/outputv2/cosmos/slashing/v1beta1/genesis.ts b/__fixtures__/v-next/outputv2/cosmos/slashing/v1beta1/genesis.ts index 10000e34cf..0935cc84f8 100644 --- a/__fixtures__/v-next/outputv2/cosmos/slashing/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv2/cosmos/slashing/v1beta1/genesis.ts @@ -5,7 +5,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "cosmos.slashing.v1beta1"; /** GenesisState defines the slashing module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params: Params; /** * signing_infos represents a map between validator addresses and their @@ -24,7 +24,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the slashing module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params?: ParamsAmino; /** * signing_infos represents a map between validator addresses and their diff --git a/__fixtures__/v-next/outputv2/cosmos/staking/v1beta1/genesis.ts b/__fixtures__/v-next/outputv2/cosmos/staking/v1beta1/genesis.ts index d6333ac9be..0c540cb28f 100644 --- a/__fixtures__/v-next/outputv2/cosmos/staking/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv2/cosmos/staking/v1beta1/genesis.ts @@ -5,7 +5,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "cosmos.staking.v1beta1"; /** GenesisState defines the staking module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params: Params; /** * last_total_power tracks the total amounts of bonded tokens recorded during @@ -33,7 +33,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the staking module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params?: ParamsAmino; /** * last_total_power tracks the total amounts of bonded tokens recorded during diff --git a/__fixtures__/v-next/outputv2/evmos/inflation/v1/genesis.ts b/__fixtures__/v-next/outputv2/evmos/inflation/v1/genesis.ts index da10a83e9e..a7edc0f7b6 100644 --- a/__fixtures__/v-next/outputv2/evmos/inflation/v1/genesis.ts +++ b/__fixtures__/v-next/outputv2/evmos/inflation/v1/genesis.ts @@ -5,7 +5,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "evmos.inflation.v1"; /** GenesisState defines the inflation module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** amount of past periods, based on the epochs per period param */ period: bigint; @@ -22,7 +22,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the inflation module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; /** amount of past periods, based on the epochs per period param */ period?: string; diff --git a/__fixtures__/v-next/outputv2/evmos/recovery/v1/genesis.ts b/__fixtures__/v-next/outputv2/evmos/recovery/v1/genesis.ts index 6a771affbd..c643a8788d 100644 --- a/__fixtures__/v-next/outputv2/evmos/recovery/v1/genesis.ts +++ b/__fixtures__/v-next/outputv2/evmos/recovery/v1/genesis.ts @@ -5,7 +5,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "evmos.recovery.v1"; /** GenesisState defines the recovery module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; } export interface GenesisStateProtoMsg { @@ -14,7 +14,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the recovery module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; } export interface GenesisStateAminoMsg { diff --git a/__fixtures__/v-next/outputv2/google/api/expr/v1alpha1/eval.ts b/__fixtures__/v-next/outputv2/google/api/expr/v1alpha1/eval.ts index 69f88057de..2f404da97d 100644 --- a/__fixtures__/v-next/outputv2/google/api/expr/v1alpha1/eval.ts +++ b/__fixtures__/v-next/outputv2/google/api/expr/v1alpha1/eval.ts @@ -7,7 +7,7 @@ export const protobufPackage = "google.api.expr.v1alpha1"; /** * The state of an evaluation. * - * Can represent an inital, partial, or completed state of evaluation. + * Can represent an initial, partial, or completed state of evaluation. */ export interface EvalState { /** The unique values referenced in this message. */ @@ -27,7 +27,7 @@ export interface EvalStateProtoMsg { /** * The state of an evaluation. * - * Can represent an inital, partial, or completed state of evaluation. + * Can represent an initial, partial, or completed state of evaluation. */ export interface EvalStateAmino { /** The unique values referenced in this message. */ @@ -47,7 +47,7 @@ export interface EvalStateAminoMsg { /** * The state of an evaluation. * - * Can represent an inital, partial, or completed state of evaluation. + * Can represent an initial, partial, or completed state of evaluation. */ export interface EvalStateSDKType { values: ExprValueSDKType[]; diff --git a/__fixtures__/v-next/outputv2/osmosis/incentives/genesis.ts b/__fixtures__/v-next/outputv2/osmosis/incentives/genesis.ts index 436e80e377..d68eaafac5 100644 --- a/__fixtures__/v-next/outputv2/osmosis/incentives/genesis.ts +++ b/__fixtures__/v-next/outputv2/osmosis/incentives/genesis.ts @@ -16,7 +16,7 @@ export interface GenesisState { gauges: Gauge[]; /** * lockable_durations are all lockup durations that gauges can be locked for - * in order to recieve incentives + * in order to receive incentives */ lockableDurations: Duration[]; /** @@ -40,7 +40,7 @@ export interface GenesisStateAmino { gauges?: GaugeAmino[]; /** * lockable_durations are all lockup durations that gauges can be locked for - * in order to recieve incentives + * in order to receive incentives */ lockable_durations?: DurationAmino[]; /** diff --git a/__fixtures__/v-next/outputv2/osmosis/incentives/query.lcd.ts b/__fixtures__/v-next/outputv2/osmosis/incentives/query.lcd.ts index f8a1003455..7b024ee39c 100644 --- a/__fixtures__/v-next/outputv2/osmosis/incentives/query.lcd.ts +++ b/__fixtures__/v-next/outputv2/osmosis/incentives/query.lcd.ts @@ -70,7 +70,7 @@ export class LCDQueryClient { const endpoint = `osmosis/incentives/v1beta1/active_gauges_per_denom`; return await this.req.get(endpoint, options); } - /* Returns scheduled gauges that have not yet occured */ + /* Returns scheduled gauges that have not yet occurred */ async upcomingGauges(params: UpcomingGaugesRequest = { pagination: PageRequest.fromPartial({}) }): Promise { @@ -83,7 +83,7 @@ export class LCDQueryClient { const endpoint = `osmosis/incentives/v1beta1/upcoming_gauges`; return await this.req.get(endpoint, options); } - /* UpcomingGaugesPerDenom returns scheduled gauges that have not yet occured + /* UpcomingGaugesPerDenom returns scheduled gauges that have not yet occurred by denom */ async upcomingGaugesPerDenom(params: UpcomingGaugesPerDenomRequest): Promise { const options: any = { diff --git a/__fixtures__/v-next/outputv2/osmosis/incentives/query.rpc.Query.ts b/__fixtures__/v-next/outputv2/osmosis/incentives/query.rpc.Query.ts index aec56cd569..e0458554be 100644 --- a/__fixtures__/v-next/outputv2/osmosis/incentives/query.rpc.Query.ts +++ b/__fixtures__/v-next/outputv2/osmosis/incentives/query.rpc.Query.ts @@ -16,10 +16,10 @@ export interface Query { activeGauges(request?: DeepPartial, metadata?: grpc.Metadata): Promise; /** ActiveGaugesPerDenom returns active gauges by denom */ activeGaugesPerDenom(request: DeepPartial, metadata?: grpc.Metadata): Promise; - /** Returns scheduled gauges that have not yet occured */ + /** Returns scheduled gauges that have not yet occurred */ upcomingGauges(request?: DeepPartial, metadata?: grpc.Metadata): Promise; /** - * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occured + * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occurred * by denom */ upcomingGaugesPerDenom(request: DeepPartial, metadata?: grpc.Metadata): Promise; diff --git a/__fixtures__/v-next/outputv2/osmosis/incentives/query.ts b/__fixtures__/v-next/outputv2/osmosis/incentives/query.ts index 3e3d78a64c..19cc34ff5b 100644 --- a/__fixtures__/v-next/outputv2/osmosis/incentives/query.ts +++ b/__fixtures__/v-next/outputv2/osmosis/incentives/query.ts @@ -336,7 +336,7 @@ export interface RewardsEstRequestSDKType { } export interface RewardsEstResponse { /** - * Estimated coin rewards that will be recieved at provided address + * Estimated coin rewards that will be received at provided address * from specified locks between current time and end epoch */ coins: Coin[]; @@ -347,7 +347,7 @@ export interface RewardsEstResponseProtoMsg { } export interface RewardsEstResponseAmino { /** - * Estimated coin rewards that will be recieved at provided address + * Estimated coin rewards that will be received at provided address * from specified locks between current time and end epoch */ coins?: CoinAmino[]; @@ -371,7 +371,7 @@ export interface QueryLockableDurationsRequestAminoMsg { } export interface QueryLockableDurationsRequestSDKType {} export interface QueryLockableDurationsResponse { - /** Time durations that users can lock coins for in order to recieve rewards */ + /** Time durations that users can lock coins for in order to receive rewards */ lockableDurations: Duration[]; } export interface QueryLockableDurationsResponseProtoMsg { @@ -379,7 +379,7 @@ export interface QueryLockableDurationsResponseProtoMsg { value: Uint8Array; } export interface QueryLockableDurationsResponseAmino { - /** Time durations that users can lock coins for in order to recieve rewards */ + /** Time durations that users can lock coins for in order to receive rewards */ lockable_durations?: DurationAmino[]; } export interface QueryLockableDurationsResponseAminoMsg { diff --git a/__fixtures__/v-next/outputv2/osmosis/mint/v1beta1/genesis.ts b/__fixtures__/v-next/outputv2/osmosis/mint/v1beta1/genesis.ts index 39f3c52c36..6d40964ead 100644 --- a/__fixtures__/v-next/outputv2/osmosis/mint/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv2/osmosis/mint/v1beta1/genesis.ts @@ -7,7 +7,7 @@ export const protobufPackage = "osmosis.mint.v1beta1"; export interface GenesisState { /** minter is an abstraction for holding current rewards information. */ minter: Minter; - /** params defines all the paramaters of the mint module. */ + /** params defines all the parameters of the mint module. */ params: Params; /** * reduction_started_epoch is the first epoch in which the reduction of mint @@ -23,7 +23,7 @@ export interface GenesisStateProtoMsg { export interface GenesisStateAmino { /** minter is an abstraction for holding current rewards information. */ minter?: MinterAmino; - /** params defines all the paramaters of the mint module. */ + /** params defines all the parameters of the mint module. */ params?: ParamsAmino; /** * reduction_started_epoch is the first epoch in which the reduction of mint diff --git a/__fixtures__/v-next/outputv2/osmosis/pool-incentives/v1beta1/genesis.ts b/__fixtures__/v-next/outputv2/osmosis/pool-incentives/v1beta1/genesis.ts index 3fcd01f973..c1876cd52e 100644 --- a/__fixtures__/v-next/outputv2/osmosis/pool-incentives/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv2/osmosis/pool-incentives/v1beta1/genesis.ts @@ -6,7 +6,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "osmosis.poolincentives.v1beta1"; /** GenesisState defines the pool incentives module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; lockableDurations: Duration[]; distrInfo?: DistrInfo; @@ -18,7 +18,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the pool incentives module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; lockable_durations?: DurationAmino[]; distr_info?: DistrInfoAmino; diff --git a/__fixtures__/v-next/outputv2/osmosis/tokenfactory/v1beta1/genesis.ts b/__fixtures__/v-next/outputv2/osmosis/tokenfactory/v1beta1/genesis.ts index 69dddab794..18acc09cda 100644 --- a/__fixtures__/v-next/outputv2/osmosis/tokenfactory/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv2/osmosis/tokenfactory/v1beta1/genesis.ts @@ -6,7 +6,7 @@ import { JsonSafe } from "../../../json-safe"; export const protobufPackage = "osmosis.tokenfactory.v1beta1"; /** GenesisState defines the tokenfactory module's genesis state. */ export interface GenesisState { - /** params defines the paramaters of the module. */ + /** params defines the parameters of the module. */ params: Params; factoryDenoms: GenesisDenom[]; } @@ -16,7 +16,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the tokenfactory module's genesis state. */ export interface GenesisStateAmino { - /** params defines the paramaters of the module. */ + /** params defines the parameters of the module. */ params?: ParamsAmino; factory_denoms?: GenesisDenomAmino[]; } diff --git a/__fixtures__/v-next/outputv2/osmosis/twap/v1beta1/twap_record.ts b/__fixtures__/v-next/outputv2/osmosis/twap/v1beta1/twap_record.ts index 73af3f589e..6e5c80d729 100644 --- a/__fixtures__/v-next/outputv2/osmosis/twap/v1beta1/twap_record.ts +++ b/__fixtures__/v-next/outputv2/osmosis/twap/v1beta1/twap_record.ts @@ -35,7 +35,7 @@ export interface TwapRecord { p0ArithmeticTwapAccumulator: string; p1ArithmeticTwapAccumulator: string; /** - * This field contains the time in which the last spot price error occured. + * This field contains the time in which the last spot price error occurred. * It is used to alert the caller if they are getting a potentially erroneous * TWAP, due to an unforeseen underlying error. */ @@ -76,7 +76,7 @@ export interface TwapRecordAmino { p0_arithmetic_twap_accumulator?: string; p1_arithmetic_twap_accumulator?: string; /** - * This field contains the time in which the last spot price error occured. + * This field contains the time in which the last spot price error occurred. * It is used to alert the caller if they are getting a potentially erroneous * TWAP, due to an unforeseen underlying error. */ diff --git a/__fixtures__/v-next/outputv3/cosmos/auth/v1beta1/genesis.ts b/__fixtures__/v-next/outputv3/cosmos/auth/v1beta1/genesis.ts index c51c57d8a8..045797b58b 100644 --- a/__fixtures__/v-next/outputv3/cosmos/auth/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv3/cosmos/auth/v1beta1/genesis.ts @@ -5,7 +5,7 @@ import { isSet, DeepPartial } from "../../../helpers"; export const protobufPackage = "cosmos.auth.v1beta1"; /** GenesisState defines the auth module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** accounts are the accounts present at genesis. */ accounts: Any[]; @@ -16,7 +16,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the auth module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; /** accounts are the accounts present at genesis. */ accounts?: AnyAmino[]; diff --git a/__fixtures__/v-next/outputv3/cosmos/bank/v1beta1/genesis.ts b/__fixtures__/v-next/outputv3/cosmos/bank/v1beta1/genesis.ts index adc0a000b5..31157b7d10 100644 --- a/__fixtures__/v-next/outputv3/cosmos/bank/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv3/cosmos/bank/v1beta1/genesis.ts @@ -5,7 +5,7 @@ import { isSet, DeepPartial } from "../../../helpers"; export const protobufPackage = "cosmos.bank.v1beta1"; /** GenesisState defines the bank module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** balances is an array containing the balances of all the accounts. */ balances: Balance[]; @@ -23,7 +23,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the bank module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; /** balances is an array containing the balances of all the accounts. */ balances?: BalanceAmino[]; diff --git a/__fixtures__/v-next/outputv3/cosmos/distribution/v1beta1/genesis.ts b/__fixtures__/v-next/outputv3/cosmos/distribution/v1beta1/genesis.ts index 1ed8243afe..f0b3e3c7bf 100644 --- a/__fixtures__/v-next/outputv3/cosmos/distribution/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv3/cosmos/distribution/v1beta1/genesis.ts @@ -185,7 +185,7 @@ export interface DelegatorStartingInfoRecordSDKType { export interface ValidatorSlashEventRecord { /** validator_address is the address of the validator. */ validatorAddress: string; - /** height defines the block height at which the slash event occured. */ + /** height defines the block height at which the slash event occurred. */ height: bigint; /** period is the period of the slash event. */ period: bigint; @@ -200,7 +200,7 @@ export interface ValidatorSlashEventRecordProtoMsg { export interface ValidatorSlashEventRecordAmino { /** validator_address is the address of the validator. */ validator_address?: string; - /** height defines the block height at which the slash event occured. */ + /** height defines the block height at which the slash event occurred. */ height?: string; /** period is the period of the slash event. */ period?: string; @@ -216,7 +216,7 @@ export interface ValidatorSlashEventRecordSDKType { } /** GenesisState defines the distribution module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** fee_pool defines the fee pool at genesis. */ feePool: FeePool; @@ -243,7 +243,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the distribution module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; /** fee_pool defines the fee pool at genesis. */ fee_pool?: FeePoolAmino; diff --git a/__fixtures__/v-next/outputv3/cosmos/gov/v1/genesis.ts b/__fixtures__/v-next/outputv3/cosmos/gov/v1/genesis.ts index 92eb3a20dc..ab68ff0238 100644 --- a/__fixtures__/v-next/outputv3/cosmos/gov/v1/genesis.ts +++ b/__fixtures__/v-next/outputv3/cosmos/gov/v1/genesis.ts @@ -12,11 +12,11 @@ export interface GenesisState { votes: Vote[]; /** proposals defines all the proposals present at genesis. */ proposals: Proposal[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ depositParams?: DepositParams; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ votingParams?: VotingParams; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tallyParams?: TallyParams; } export interface GenesisStateProtoMsg { @@ -33,11 +33,11 @@ export interface GenesisStateAmino { votes?: VoteAmino[]; /** proposals defines all the proposals present at genesis. */ proposals?: ProposalAmino[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ deposit_params?: DepositParamsAmino; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ voting_params?: VotingParamsAmino; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tally_params?: TallyParamsAmino; } /** GenesisState defines the gov module's genesis state. */ diff --git a/__fixtures__/v-next/outputv3/cosmos/gov/v1beta1/genesis.ts b/__fixtures__/v-next/outputv3/cosmos/gov/v1beta1/genesis.ts index cfb9fa8587..52341d8dea 100644 --- a/__fixtures__/v-next/outputv3/cosmos/gov/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv3/cosmos/gov/v1beta1/genesis.ts @@ -12,11 +12,11 @@ export interface GenesisState { votes: Vote[]; /** proposals defines all the proposals present at genesis. */ proposals: Proposal[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ depositParams: DepositParams; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ votingParams: VotingParams; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tallyParams: TallyParams; } export interface GenesisStateProtoMsg { @@ -33,11 +33,11 @@ export interface GenesisStateAmino { votes?: VoteAmino[]; /** proposals defines all the proposals present at genesis. */ proposals?: ProposalAmino[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ deposit_params?: DepositParamsAmino; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ voting_params?: VotingParamsAmino; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tally_params?: TallyParamsAmino; } /** GenesisState defines the gov module's genesis state. */ diff --git a/__fixtures__/v-next/outputv3/cosmos/mint/v1beta1/genesis.ts b/__fixtures__/v-next/outputv3/cosmos/mint/v1beta1/genesis.ts index 47cad3a3ba..9ed20bcbe7 100644 --- a/__fixtures__/v-next/outputv3/cosmos/mint/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv3/cosmos/mint/v1beta1/genesis.ts @@ -6,7 +6,7 @@ export const protobufPackage = "cosmos.mint.v1beta1"; export interface GenesisState { /** minter is a space for holding current inflation information. */ minter: Minter; - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; } export interface GenesisStateProtoMsg { @@ -17,7 +17,7 @@ export interface GenesisStateProtoMsg { export interface GenesisStateAmino { /** minter is a space for holding current inflation information. */ minter?: MinterAmino; - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; } /** GenesisState defines the mint module's genesis state. */ diff --git a/__fixtures__/v-next/outputv3/cosmos/slashing/v1beta1/genesis.ts b/__fixtures__/v-next/outputv3/cosmos/slashing/v1beta1/genesis.ts index 9b8d1a2dad..78e1307ed6 100644 --- a/__fixtures__/v-next/outputv3/cosmos/slashing/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv3/cosmos/slashing/v1beta1/genesis.ts @@ -4,7 +4,7 @@ import { isSet, DeepPartial } from "../../../helpers"; export const protobufPackage = "cosmos.slashing.v1beta1"; /** GenesisState defines the slashing module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params: Params; /** * signing_infos represents a map between validator addresses and their @@ -23,7 +23,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the slashing module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params?: ParamsAmino; /** * signing_infos represents a map between validator addresses and their diff --git a/__fixtures__/v-next/outputv3/cosmos/staking/v1beta1/genesis.ts b/__fixtures__/v-next/outputv3/cosmos/staking/v1beta1/genesis.ts index f1620add88..ce2379ff3f 100644 --- a/__fixtures__/v-next/outputv3/cosmos/staking/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv3/cosmos/staking/v1beta1/genesis.ts @@ -4,7 +4,7 @@ import { isSet, bytesFromBase64, DeepPartial, base64FromBytes } from "../../../h export const protobufPackage = "cosmos.staking.v1beta1"; /** GenesisState defines the staking module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params: Params; /** * last_total_power tracks the total amounts of bonded tokens recorded during @@ -32,7 +32,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the staking module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params?: ParamsAmino; /** * last_total_power tracks the total amounts of bonded tokens recorded during diff --git a/__fixtures__/v-next/outputv3/evmos/inflation/v1/genesis.ts b/__fixtures__/v-next/outputv3/evmos/inflation/v1/genesis.ts index f019690561..fca0735759 100644 --- a/__fixtures__/v-next/outputv3/evmos/inflation/v1/genesis.ts +++ b/__fixtures__/v-next/outputv3/evmos/inflation/v1/genesis.ts @@ -4,7 +4,7 @@ import { isSet, DeepPartial } from "../../../helpers"; export const protobufPackage = "evmos.inflation.v1"; /** GenesisState defines the inflation module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** amount of past periods, based on the epochs per period param */ period: bigint; @@ -21,7 +21,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the inflation module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; /** amount of past periods, based on the epochs per period param */ period?: string; diff --git a/__fixtures__/v-next/outputv3/evmos/recovery/v1/genesis.ts b/__fixtures__/v-next/outputv3/evmos/recovery/v1/genesis.ts index c2f856a8b1..437ab1bad9 100644 --- a/__fixtures__/v-next/outputv3/evmos/recovery/v1/genesis.ts +++ b/__fixtures__/v-next/outputv3/evmos/recovery/v1/genesis.ts @@ -4,7 +4,7 @@ import { isSet, DeepPartial } from "../../../helpers"; export const protobufPackage = "evmos.recovery.v1"; /** GenesisState defines the recovery module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; } export interface GenesisStateProtoMsg { @@ -13,7 +13,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the recovery module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; } /** GenesisState defines the recovery module's genesis state. */ diff --git a/__fixtures__/v-next/outputv3/google/api/expr/v1alpha1/eval.ts b/__fixtures__/v-next/outputv3/google/api/expr/v1alpha1/eval.ts index 39a168ec41..3c80d16e4b 100644 --- a/__fixtures__/v-next/outputv3/google/api/expr/v1alpha1/eval.ts +++ b/__fixtures__/v-next/outputv3/google/api/expr/v1alpha1/eval.ts @@ -6,7 +6,7 @@ export const protobufPackage = "google.api.expr.v1alpha1"; /** * The state of an evaluation. * - * Can represent an inital, partial, or completed state of evaluation. + * Can represent an initial, partial, or completed state of evaluation. */ export interface EvalState { /** The unique values referenced in this message. */ @@ -26,7 +26,7 @@ export interface EvalStateProtoMsg { /** * The state of an evaluation. * - * Can represent an inital, partial, or completed state of evaluation. + * Can represent an initial, partial, or completed state of evaluation. */ export interface EvalStateAmino { /** The unique values referenced in this message. */ @@ -42,7 +42,7 @@ export interface EvalStateAmino { /** * The state of an evaluation. * - * Can represent an inital, partial, or completed state of evaluation. + * Can represent an initial, partial, or completed state of evaluation. */ export interface EvalStateSDKType { values: ExprValueSDKType[]; diff --git a/__fixtures__/v-next/outputv3/osmosis/incentives/genesis.ts b/__fixtures__/v-next/outputv3/osmosis/incentives/genesis.ts index 40d744f190..369e8f0836 100644 --- a/__fixtures__/v-next/outputv3/osmosis/incentives/genesis.ts +++ b/__fixtures__/v-next/outputv3/osmosis/incentives/genesis.ts @@ -15,7 +15,7 @@ export interface GenesisState { gauges: Gauge[]; /** * lockable_durations are all lockup durations that gauges can be locked for - * in order to recieve incentives + * in order to receive incentives */ lockableDurations: Duration[]; /** @@ -39,7 +39,7 @@ export interface GenesisStateAmino { gauges?: GaugeAmino[]; /** * lockable_durations are all lockup durations that gauges can be locked for - * in order to recieve incentives + * in order to receive incentives */ lockable_durations?: DurationAmino[]; /** diff --git a/__fixtures__/v-next/outputv3/osmosis/incentives/query.lcd.ts b/__fixtures__/v-next/outputv3/osmosis/incentives/query.lcd.ts index dc52fe6d30..1271a76797 100644 --- a/__fixtures__/v-next/outputv3/osmosis/incentives/query.lcd.ts +++ b/__fixtures__/v-next/outputv3/osmosis/incentives/query.lcd.ts @@ -73,7 +73,7 @@ export class LCDQueryClient { const endpoint = `osmosis/incentives/v1beta1/active_gauges_per_denom`; return await this.req.get(endpoint, options); } - /* Returns scheduled gauges that have not yet occured */ + /* Returns scheduled gauges that have not yet occurred */ async upcomingGauges(params: UpcomingGaugesRequest = { pagination: PageRequest.fromPartial({}) }): Promise { @@ -86,7 +86,7 @@ export class LCDQueryClient { const endpoint = `osmosis/incentives/v1beta1/upcoming_gauges`; return await this.req.get(endpoint, options); } - /* UpcomingGaugesPerDenom returns scheduled gauges that have not yet occured + /* UpcomingGaugesPerDenom returns scheduled gauges that have not yet occurred by denom */ async upcomingGaugesPerDenom(params: UpcomingGaugesPerDenomRequest): Promise { const options: any = { diff --git a/__fixtures__/v-next/outputv3/osmosis/incentives/query.rpc.Query.ts b/__fixtures__/v-next/outputv3/osmosis/incentives/query.rpc.Query.ts index d5ae6b3928..21de31afea 100644 --- a/__fixtures__/v-next/outputv3/osmosis/incentives/query.rpc.Query.ts +++ b/__fixtures__/v-next/outputv3/osmosis/incentives/query.rpc.Query.ts @@ -50,7 +50,7 @@ export class Query { method: "GET" }); } - /** Returns scheduled gauges that have not yet occured */ + /** Returns scheduled gauges that have not yet occurred */ static upcomingGauges(request: UpcomingGaugesRequest, initRequest?: fm.InitReq): Promise { return fm.fetchReq(`/osmosis/incentives/v1beta1/upcoming_gauges?${fm.renderURLSearchParams({ ...request @@ -60,7 +60,7 @@ export class Query { }); } /** - * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occured + * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occurred * by denom */ static upcomingGaugesPerDenom(request: UpcomingGaugesPerDenomRequest, initRequest?: fm.InitReq): Promise { @@ -137,7 +137,7 @@ export class QueryClientImpl { pathPrefix: this.url }); } - /** Returns scheduled gauges that have not yet occured */ + /** Returns scheduled gauges that have not yet occurred */ async upcomingGauges(req: UpcomingGaugesRequest, headers?: HeadersInit): Promise { return Query.upcomingGauges(req, { headers, @@ -145,7 +145,7 @@ export class QueryClientImpl { }); } /** - * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occured + * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occurred * by denom */ async upcomingGaugesPerDenom(req: UpcomingGaugesPerDenomRequest, headers?: HeadersInit): Promise { diff --git a/__fixtures__/v-next/outputv3/osmosis/incentives/query.ts b/__fixtures__/v-next/outputv3/osmosis/incentives/query.ts index f2f42ec037..3e9439078f 100644 --- a/__fixtures__/v-next/outputv3/osmosis/incentives/query.ts +++ b/__fixtures__/v-next/outputv3/osmosis/incentives/query.ts @@ -275,7 +275,7 @@ export interface RewardsEstRequestSDKType { } export interface RewardsEstResponse { /** - * Estimated coin rewards that will be recieved at provided address + * Estimated coin rewards that will be received at provided address * from specified locks between current time and end epoch */ coins: Coin[]; @@ -286,7 +286,7 @@ export interface RewardsEstResponseProtoMsg { } export interface RewardsEstResponseAmino { /** - * Estimated coin rewards that will be recieved at provided address + * Estimated coin rewards that will be received at provided address * from specified locks between current time and end epoch */ coins?: CoinAmino[]; @@ -302,7 +302,7 @@ export interface QueryLockableDurationsRequestProtoMsg { export interface QueryLockableDurationsRequestAmino {} export interface QueryLockableDurationsRequestSDKType {} export interface QueryLockableDurationsResponse { - /** Time durations that users can lock coins for in order to recieve rewards */ + /** Time durations that users can lock coins for in order to receive rewards */ lockableDurations: Duration[]; } export interface QueryLockableDurationsResponseProtoMsg { @@ -310,7 +310,7 @@ export interface QueryLockableDurationsResponseProtoMsg { value: Uint8Array; } export interface QueryLockableDurationsResponseAmino { - /** Time durations that users can lock coins for in order to recieve rewards */ + /** Time durations that users can lock coins for in order to receive rewards */ lockable_durations?: DurationAmino[]; } export interface QueryLockableDurationsResponseSDKType { diff --git a/__fixtures__/v-next/outputv3/osmosis/mint/v1beta1/genesis.ts b/__fixtures__/v-next/outputv3/osmosis/mint/v1beta1/genesis.ts index d5a6afeac3..ec47f56944 100644 --- a/__fixtures__/v-next/outputv3/osmosis/mint/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv3/osmosis/mint/v1beta1/genesis.ts @@ -6,7 +6,7 @@ export const protobufPackage = "osmosis.mint.v1beta1"; export interface GenesisState { /** minter is an abstraction for holding current rewards information. */ minter: Minter; - /** params defines all the paramaters of the mint module. */ + /** params defines all the parameters of the mint module. */ params: Params; /** * reduction_started_epoch is the first epoch in which the reduction of mint @@ -22,7 +22,7 @@ export interface GenesisStateProtoMsg { export interface GenesisStateAmino { /** minter is an abstraction for holding current rewards information. */ minter?: MinterAmino; - /** params defines all the paramaters of the mint module. */ + /** params defines all the parameters of the mint module. */ params?: ParamsAmino; /** * reduction_started_epoch is the first epoch in which the reduction of mint diff --git a/__fixtures__/v-next/outputv3/osmosis/pool-incentives/v1beta1/genesis.ts b/__fixtures__/v-next/outputv3/osmosis/pool-incentives/v1beta1/genesis.ts index 851dca4119..084997af82 100644 --- a/__fixtures__/v-next/outputv3/osmosis/pool-incentives/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv3/osmosis/pool-incentives/v1beta1/genesis.ts @@ -5,7 +5,7 @@ import { isSet, DeepPartial } from "../../../helpers"; export const protobufPackage = "osmosis.poolincentives.v1beta1"; /** GenesisState defines the pool incentives module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; lockableDurations: Duration[]; distrInfo?: DistrInfo; @@ -17,7 +17,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the pool incentives module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; lockable_durations?: DurationAmino[]; distr_info?: DistrInfoAmino; diff --git a/__fixtures__/v-next/outputv3/osmosis/tokenfactory/v1beta1/genesis.ts b/__fixtures__/v-next/outputv3/osmosis/tokenfactory/v1beta1/genesis.ts index 3aec7c8603..1a74a06841 100644 --- a/__fixtures__/v-next/outputv3/osmosis/tokenfactory/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv3/osmosis/tokenfactory/v1beta1/genesis.ts @@ -5,7 +5,7 @@ import { isSet, DeepPartial } from "../../../helpers"; export const protobufPackage = "osmosis.tokenfactory.v1beta1"; /** GenesisState defines the tokenfactory module's genesis state. */ export interface GenesisState { - /** params defines the paramaters of the module. */ + /** params defines the parameters of the module. */ params: Params; factoryDenoms: GenesisDenom[]; } @@ -15,7 +15,7 @@ export interface GenesisStateProtoMsg { } /** GenesisState defines the tokenfactory module's genesis state. */ export interface GenesisStateAmino { - /** params defines the paramaters of the module. */ + /** params defines the parameters of the module. */ params?: ParamsAmino; factory_denoms?: GenesisDenomAmino[]; } diff --git a/__fixtures__/v-next/outputv3/osmosis/twap/v1beta1/twap_record.ts b/__fixtures__/v-next/outputv3/osmosis/twap/v1beta1/twap_record.ts index e469537542..4803a6e338 100644 --- a/__fixtures__/v-next/outputv3/osmosis/twap/v1beta1/twap_record.ts +++ b/__fixtures__/v-next/outputv3/osmosis/twap/v1beta1/twap_record.ts @@ -34,7 +34,7 @@ export interface TwapRecord { p0ArithmeticTwapAccumulator: string; p1ArithmeticTwapAccumulator: string; /** - * This field contains the time in which the last spot price error occured. + * This field contains the time in which the last spot price error occurred. * It is used to alert the caller if they are getting a potentially erroneous * TWAP, due to an unforeseen underlying error. */ @@ -75,7 +75,7 @@ export interface TwapRecordAmino { p0_arithmetic_twap_accumulator?: string; p1_arithmetic_twap_accumulator?: string; /** - * This field contains the time in which the last spot price error occured. + * This field contains the time in which the last spot price error occurred. * It is used to alert the caller if they are getting a potentially erroneous * TWAP, due to an unforeseen underlying error. */ diff --git a/__fixtures__/v-next/outputv4/cosmos/auth/v1beta1/genesis.ts b/__fixtures__/v-next/outputv4/cosmos/auth/v1beta1/genesis.ts index dde14ad56e..98f9ad8b07 100644 --- a/__fixtures__/v-next/outputv4/cosmos/auth/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv4/cosmos/auth/v1beta1/genesis.ts @@ -6,7 +6,7 @@ import { JsonSafe } from "../../../json-safe.js"; export const protobufPackage = "cosmos.auth.v1beta1"; /** GenesisState defines the auth module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** accounts are the accounts present at genesis. */ accounts: Any[]; diff --git a/__fixtures__/v-next/outputv4/cosmos/bank/v1beta1/genesis.ts b/__fixtures__/v-next/outputv4/cosmos/bank/v1beta1/genesis.ts index 4aa1c8a320..0586aff322 100644 --- a/__fixtures__/v-next/outputv4/cosmos/bank/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv4/cosmos/bank/v1beta1/genesis.ts @@ -6,7 +6,7 @@ import { JsonSafe } from "../../../json-safe.js"; export const protobufPackage = "cosmos.bank.v1beta1"; /** GenesisState defines the bank module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** balances is an array containing the balances of all the accounts. */ balances: Balance[]; diff --git a/__fixtures__/v-next/outputv4/cosmos/distribution/v1beta1/genesis.ts b/__fixtures__/v-next/outputv4/cosmos/distribution/v1beta1/genesis.ts index 3c27190861..305ed6317e 100644 --- a/__fixtures__/v-next/outputv4/cosmos/distribution/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv4/cosmos/distribution/v1beta1/genesis.ts @@ -130,7 +130,7 @@ export interface DelegatorStartingInfoRecordSDKType { export interface ValidatorSlashEventRecord { /** validator_address is the address of the validator. */ validatorAddress: string; - /** height defines the block height at which the slash event occured. */ + /** height defines the block height at which the slash event occurred. */ height: bigint; /** period is the period of the slash event. */ period: bigint; @@ -150,7 +150,7 @@ export interface ValidatorSlashEventRecordSDKType { } /** GenesisState defines the distribution module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** fee_pool defines the fee pool at genesis. */ feePool: FeePool; diff --git a/__fixtures__/v-next/outputv4/cosmos/gov/v1/genesis.ts b/__fixtures__/v-next/outputv4/cosmos/gov/v1/genesis.ts index 63a6c949db..6052cc627d 100644 --- a/__fixtures__/v-next/outputv4/cosmos/gov/v1/genesis.ts +++ b/__fixtures__/v-next/outputv4/cosmos/gov/v1/genesis.ts @@ -13,11 +13,11 @@ export interface GenesisState { votes: Vote[]; /** proposals defines all the proposals present at genesis. */ proposals: Proposal[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ depositParams?: DepositParams; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ votingParams?: VotingParams; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tallyParams?: TallyParams; } export interface GenesisStateProtoMsg { diff --git a/__fixtures__/v-next/outputv4/cosmos/gov/v1beta1/genesis.ts b/__fixtures__/v-next/outputv4/cosmos/gov/v1beta1/genesis.ts index 75087fe5df..0131f0c53b 100644 --- a/__fixtures__/v-next/outputv4/cosmos/gov/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv4/cosmos/gov/v1beta1/genesis.ts @@ -13,11 +13,11 @@ export interface GenesisState { votes: Vote[]; /** proposals defines all the proposals present at genesis. */ proposals: Proposal[]; - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ depositParams: DepositParams; - /** params defines all the paramaters of related to voting. */ + /** params defines all the parameters of related to voting. */ votingParams: VotingParams; - /** params defines all the paramaters of related to tally. */ + /** params defines all the parameters of related to tally. */ tallyParams: TallyParams; } export interface GenesisStateProtoMsg { diff --git a/__fixtures__/v-next/outputv4/cosmos/mint/v1beta1/genesis.ts b/__fixtures__/v-next/outputv4/cosmos/mint/v1beta1/genesis.ts index 0e2ff61b68..0f01a5c0cc 100644 --- a/__fixtures__/v-next/outputv4/cosmos/mint/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv4/cosmos/mint/v1beta1/genesis.ts @@ -7,7 +7,7 @@ export const protobufPackage = "cosmos.mint.v1beta1"; export interface GenesisState { /** minter is a space for holding current inflation information. */ minter: Minter; - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; } export interface GenesisStateProtoMsg { diff --git a/__fixtures__/v-next/outputv4/cosmos/slashing/v1beta1/genesis.ts b/__fixtures__/v-next/outputv4/cosmos/slashing/v1beta1/genesis.ts index d99b4d75ce..5e1c5bd8fc 100644 --- a/__fixtures__/v-next/outputv4/cosmos/slashing/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv4/cosmos/slashing/v1beta1/genesis.ts @@ -5,7 +5,7 @@ import { JsonSafe } from "../../../json-safe.js"; export const protobufPackage = "cosmos.slashing.v1beta1"; /** GenesisState defines the slashing module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params: Params; /** * signing_infos represents a map between validator addresses and their diff --git a/__fixtures__/v-next/outputv4/cosmos/staking/v1beta1/genesis.ts b/__fixtures__/v-next/outputv4/cosmos/staking/v1beta1/genesis.ts index 17b0b3094d..1eb1a55780 100644 --- a/__fixtures__/v-next/outputv4/cosmos/staking/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv4/cosmos/staking/v1beta1/genesis.ts @@ -5,7 +5,7 @@ import { JsonSafe } from "../../../json-safe.js"; export const protobufPackage = "cosmos.staking.v1beta1"; /** GenesisState defines the staking module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of related to deposit. */ + /** params defines all the parameters of related to deposit. */ params: Params; /** * last_total_power tracks the total amounts of bonded tokens recorded during diff --git a/__fixtures__/v-next/outputv4/evmos/inflation/v1/genesis.ts b/__fixtures__/v-next/outputv4/evmos/inflation/v1/genesis.ts index afd1e2695b..24407896fc 100644 --- a/__fixtures__/v-next/outputv4/evmos/inflation/v1/genesis.ts +++ b/__fixtures__/v-next/outputv4/evmos/inflation/v1/genesis.ts @@ -5,7 +5,7 @@ import { JsonSafe } from "../../../json-safe.js"; export const protobufPackage = "evmos.inflation.v1"; /** GenesisState defines the inflation module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** amount of past periods, based on the epochs per period param */ period: bigint; diff --git a/__fixtures__/v-next/outputv4/evmos/recovery/v1/genesis.ts b/__fixtures__/v-next/outputv4/evmos/recovery/v1/genesis.ts index 846a95ccb1..e7cded6137 100644 --- a/__fixtures__/v-next/outputv4/evmos/recovery/v1/genesis.ts +++ b/__fixtures__/v-next/outputv4/evmos/recovery/v1/genesis.ts @@ -5,7 +5,7 @@ import { JsonSafe } from "../../../json-safe.js"; export const protobufPackage = "evmos.recovery.v1"; /** GenesisState defines the recovery module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; } export interface GenesisStateProtoMsg { diff --git a/__fixtures__/v-next/outputv4/google/api/expr/v1alpha1/eval.ts b/__fixtures__/v-next/outputv4/google/api/expr/v1alpha1/eval.ts index 3d622489c7..2ea5de6b56 100644 --- a/__fixtures__/v-next/outputv4/google/api/expr/v1alpha1/eval.ts +++ b/__fixtures__/v-next/outputv4/google/api/expr/v1alpha1/eval.ts @@ -7,7 +7,7 @@ export const protobufPackage = "google.api.expr.v1alpha1"; /** * The state of an evaluation. * - * Can represent an inital, partial, or completed state of evaluation. + * Can represent an initial, partial, or completed state of evaluation. */ export interface EvalState { /** The unique values referenced in this message. */ @@ -27,7 +27,7 @@ export interface EvalStateProtoMsg { /** * The state of an evaluation. * - * Can represent an inital, partial, or completed state of evaluation. + * Can represent an initial, partial, or completed state of evaluation. */ export interface EvalStateSDKType { values: ExprValueSDKType[]; diff --git a/__fixtures__/v-next/outputv4/osmosis/incentives/genesis.ts b/__fixtures__/v-next/outputv4/osmosis/incentives/genesis.ts index 4bb70dcfb0..214737142b 100644 --- a/__fixtures__/v-next/outputv4/osmosis/incentives/genesis.ts +++ b/__fixtures__/v-next/outputv4/osmosis/incentives/genesis.ts @@ -16,7 +16,7 @@ export interface GenesisState { gauges: Gauge[]; /** * lockable_durations are all lockup durations that gauges can be locked for - * in order to recieve incentives + * in order to receive incentives */ lockableDurations: Duration[]; /** diff --git a/__fixtures__/v-next/outputv4/osmosis/incentives/query.lcd.ts b/__fixtures__/v-next/outputv4/osmosis/incentives/query.lcd.ts index e69429ec7b..ba1302d851 100644 --- a/__fixtures__/v-next/outputv4/osmosis/incentives/query.lcd.ts +++ b/__fixtures__/v-next/outputv4/osmosis/incentives/query.lcd.ts @@ -73,7 +73,7 @@ export class LCDQueryClient { const endpoint = `osmosis/incentives/v1beta1/active_gauges_per_denom`; return ActiveGaugesPerDenomResponse.fromSDKJSON(await this.req.get(endpoint, options)); } - /* Returns scheduled gauges that have not yet occured */ + /* Returns scheduled gauges that have not yet occurred */ async upcomingGauges(params: UpcomingGaugesRequest = { pagination: PageRequest.fromPartial({}) }): Promise { @@ -86,7 +86,7 @@ export class LCDQueryClient { const endpoint = `osmosis/incentives/v1beta1/upcoming_gauges`; return UpcomingGaugesResponse.fromSDKJSON(await this.req.get(endpoint, options)); } - /* UpcomingGaugesPerDenom returns scheduled gauges that have not yet occured + /* UpcomingGaugesPerDenom returns scheduled gauges that have not yet occurred by denom */ async upcomingGaugesPerDenom(params: UpcomingGaugesPerDenomRequest): Promise { const options: any = { diff --git a/__fixtures__/v-next/outputv4/osmosis/incentives/query.rpc.Query.ts b/__fixtures__/v-next/outputv4/osmosis/incentives/query.rpc.Query.ts index a022665455..2acbadb139 100644 --- a/__fixtures__/v-next/outputv4/osmosis/incentives/query.rpc.Query.ts +++ b/__fixtures__/v-next/outputv4/osmosis/incentives/query.rpc.Query.ts @@ -18,10 +18,10 @@ export interface Query { activeGauges(request?: ActiveGaugesRequest): Promise; /** ActiveGaugesPerDenom returns active gauges by denom */ activeGaugesPerDenom(request: ActiveGaugesPerDenomRequest): Promise; - /** Returns scheduled gauges that have not yet occured */ + /** Returns scheduled gauges that have not yet occurred */ upcomingGauges(request?: UpcomingGaugesRequest): Promise; /** - * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occured + * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occurred * by denom */ upcomingGaugesPerDenom(request: UpcomingGaugesPerDenomRequest): Promise; diff --git a/__fixtures__/v-next/outputv4/osmosis/incentives/query.ts b/__fixtures__/v-next/outputv4/osmosis/incentives/query.ts index a6e7d42e8f..727462e2d4 100644 --- a/__fixtures__/v-next/outputv4/osmosis/incentives/query.ts +++ b/__fixtures__/v-next/outputv4/osmosis/incentives/query.ts @@ -198,7 +198,7 @@ export interface RewardsEstRequestSDKType { } export interface RewardsEstResponse { /** - * Estimated coin rewards that will be recieved at provided address + * Estimated coin rewards that will be received at provided address * from specified locks between current time and end epoch */ coins: Coin[]; @@ -217,7 +217,7 @@ export interface QueryLockableDurationsRequestProtoMsg { } export interface QueryLockableDurationsRequestSDKType {} export interface QueryLockableDurationsResponse { - /** Time durations that users can lock coins for in order to recieve rewards */ + /** Time durations that users can lock coins for in order to receive rewards */ lockableDurations: Duration[]; } export interface QueryLockableDurationsResponseProtoMsg { diff --git a/__fixtures__/v-next/outputv4/osmosis/mint/v1beta1/genesis.ts b/__fixtures__/v-next/outputv4/osmosis/mint/v1beta1/genesis.ts index 028ac8fd14..b50c5083f5 100644 --- a/__fixtures__/v-next/outputv4/osmosis/mint/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv4/osmosis/mint/v1beta1/genesis.ts @@ -7,7 +7,7 @@ export const protobufPackage = "osmosis.mint.v1beta1"; export interface GenesisState { /** minter is an abstraction for holding current rewards information. */ minter: Minter; - /** params defines all the paramaters of the mint module. */ + /** params defines all the parameters of the mint module. */ params: Params; /** * reduction_started_epoch is the first epoch in which the reduction of mint diff --git a/__fixtures__/v-next/outputv4/osmosis/pool-incentives/v1beta1/genesis.ts b/__fixtures__/v-next/outputv4/osmosis/pool-incentives/v1beta1/genesis.ts index 07313482f3..7251c45fa9 100644 --- a/__fixtures__/v-next/outputv4/osmosis/pool-incentives/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv4/osmosis/pool-incentives/v1beta1/genesis.ts @@ -6,7 +6,7 @@ import { JsonSafe } from "../../../json-safe.js"; export const protobufPackage = "osmosis.poolincentives.v1beta1"; /** GenesisState defines the pool incentives module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; lockableDurations: Duration[]; distrInfo?: DistrInfo; diff --git a/__fixtures__/v-next/outputv4/osmosis/tokenfactory/v1beta1/genesis.ts b/__fixtures__/v-next/outputv4/osmosis/tokenfactory/v1beta1/genesis.ts index 0136c35140..8bbd9cabee 100644 --- a/__fixtures__/v-next/outputv4/osmosis/tokenfactory/v1beta1/genesis.ts +++ b/__fixtures__/v-next/outputv4/osmosis/tokenfactory/v1beta1/genesis.ts @@ -6,7 +6,7 @@ import { JsonSafe } from "../../../json-safe.js"; export const protobufPackage = "osmosis.tokenfactory.v1beta1"; /** GenesisState defines the tokenfactory module's genesis state. */ export interface GenesisState { - /** params defines the paramaters of the module. */ + /** params defines the parameters of the module. */ params: Params; factoryDenoms: GenesisDenom[]; } diff --git a/__fixtures__/v-next/outputv4/osmosis/twap/v1beta1/twap_record.ts b/__fixtures__/v-next/outputv4/osmosis/twap/v1beta1/twap_record.ts index bc693f691a..c2e0794550 100644 --- a/__fixtures__/v-next/outputv4/osmosis/twap/v1beta1/twap_record.ts +++ b/__fixtures__/v-next/outputv4/osmosis/twap/v1beta1/twap_record.ts @@ -35,7 +35,7 @@ export interface TwapRecord { p0ArithmeticTwapAccumulator: string; p1ArithmeticTwapAccumulator: string; /** - * This field contains the time in which the last spot price error occured. + * This field contains the time in which the last spot price error occurred. * It is used to alert the caller if they are getting a potentially erroneous * TWAP, due to an unforeseen underlying error. */ diff --git a/packages/ast/src/docs/__snapshots__/docs.test.ts.snap b/packages/ast/src/docs/__snapshots__/docs.test.ts.snap index 16f3fdffa9..f30db1dd41 100644 --- a/packages/ast/src/docs/__snapshots__/docs.test.ts.snap +++ b/packages/ast/src/docs/__snapshots__/docs.test.ts.snap @@ -445,11 +445,11 @@ const result = await osmosis.incentives.activeGauges(request); /** ActiveGaugesPerDenom returns active gauges by denom */ const request: ActiveGaugesPerDenomRequest; const result = await osmosis.incentives.activeGaugesPerDenom(request); -/** Returns scheduled gauges that have not yet occured */ +/** Returns scheduled gauges that have not yet occurred */ const request: UpcomingGaugesRequest; const result = await osmosis.incentives.upcomingGauges(request); /** - * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occured + * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occurred * by denom */ const request: UpcomingGaugesPerDenomRequest; @@ -1058,7 +1058,7 @@ const result = await osmosis.incentives.activeGaugesPerDenom(request); UpcomingGauges \`\`\`js -/** Returns scheduled gauges that have not yet occured */ +/** Returns scheduled gauges that have not yet occurred */ const request: UpcomingGaugesRequest; const result = await osmosis.incentives.upcomingGauges(request); \`\`\` @@ -1069,7 +1069,7 @@ UpcomingGaugesPerDenom \`\`\`js /** - * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occured + * UpcomingGaugesPerDenom returns scheduled gauges that have not yet occurred * by denom */ const request: UpcomingGaugesPerDenomRequest; diff --git a/packages/ast/src/encoding/proto/interface/__tests__/__snapshots__/amino.interface.test.ts.snap b/packages/ast/src/encoding/proto/interface/__tests__/__snapshots__/amino.interface.test.ts.snap index 78317a05c4..eb973649f2 100644 --- a/packages/ast/src/encoding/proto/interface/__tests__/__snapshots__/amino.interface.test.ts.snap +++ b/packages/ast/src/encoding/proto/interface/__tests__/__snapshots__/amino.interface.test.ts.snap @@ -3,7 +3,7 @@ exports[`GenesisState interface 1`] = ` "/** GenesisState defines the auth module's genesis state. */ export interface GenesisStateAmino { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params?: ParamsAmino; /** accounts are the accounts present at genesis. */ accounts?: AnyAmino[]; diff --git a/packages/ast/src/encoding/proto/interface/__tests__/__snapshots__/interface.test.ts.snap b/packages/ast/src/encoding/proto/interface/__tests__/__snapshots__/interface.test.ts.snap index 81f57de54e..d2d7b7c821 100644 --- a/packages/ast/src/encoding/proto/interface/__tests__/__snapshots__/interface.test.ts.snap +++ b/packages/ast/src/encoding/proto/interface/__tests__/__snapshots__/interface.test.ts.snap @@ -3,7 +3,7 @@ exports[`GenesisState interface 1`] = ` "/** GenesisState defines the auth module's genesis state. */ export interface GenesisState { - /** params defines all the paramaters of the module. */ + /** params defines all the parameters of the module. */ params: Params; /** accounts are the accounts present at genesis. */ accounts: Any[];