From 008c2e6ca7a15476eeaf2ef162cf313ce38141ce Mon Sep 17 00:00:00 2001 From: Maxim Evtush <154841002+maximevtush@users.noreply.github.com> Date: Thu, 13 Feb 2025 22:59:42 +0100 Subject: [PATCH 1/4] Update types.ts --- src/proto-types-gen/src/tendermint/types/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto-types-gen/src/tendermint/types/types.ts b/src/proto-types-gen/src/tendermint/types/types.ts index 269a67d..74f818f 100644 --- a/src/proto-types-gen/src/tendermint/types/types.ts +++ b/src/proto-types-gen/src/tendermint/types/types.ts @@ -8,7 +8,7 @@ import { ValidatorSet } from "./validator"; export const protobufPackage = "tendermint.types"; -/** BlockIdFlag indicates which BlcokID the signature is for */ +/** BlockIdFlag indicates which BlockID the signature is for */ export enum BlockIDFlag { BLOCK_ID_FLAG_UNKNOWN = 0, BLOCK_ID_FLAG_ABSENT = 1, From 78d24b610313771c661966ea9c40143bef0edca0 Mon Sep 17 00:00:00 2001 From: Maxim Evtush <154841002+maximevtush@users.noreply.github.com> Date: Thu, 13 Feb 2025 23:00:21 +0100 Subject: [PATCH 2/4] Update types.proto --- .../third_party/proto/tendermint/types/types.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto-types-gen/third_party/proto/tendermint/types/types.proto b/src/proto-types-gen/third_party/proto/tendermint/types/types.proto index 7f7ea74..7fa2611 100644 --- a/src/proto-types-gen/third_party/proto/tendermint/types/types.proto +++ b/src/proto-types-gen/third_party/proto/tendermint/types/types.proto @@ -9,7 +9,7 @@ import "tendermint/crypto/proof.proto"; import "tendermint/version/types.proto"; import "tendermint/types/validator.proto"; -// BlockIdFlag indicates which BlcokID the signature is for +// BlockIdFlag indicates which BlockID the signature is for enum BlockIDFlag { option (gogoproto.goproto_enum_stringer) = true; option (gogoproto.goproto_enum_prefix) = false; From 1dece1eb4290f1e68a9ed2dd984260bad0fb4f95 Mon Sep 17 00:00:00 2001 From: Maxim Evtush <154841002+maximevtush@users.noreply.github.com> Date: Thu, 13 Feb 2025 23:00:50 +0100 Subject: [PATCH 3/4] Update proofs.proto --- src/proto-types-gen/third_party/proto/confio/proofs.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto-types-gen/third_party/proto/confio/proofs.proto b/src/proto-types-gen/third_party/proto/confio/proofs.proto index da43503..4620c51 100644 --- a/src/proto-types-gen/third_party/proto/confio/proofs.proto +++ b/src/proto-types-gen/third_party/proto/confio/proofs.proto @@ -42,7 +42,7 @@ enum LengthOp { /** ExistenceProof takes a key and a value and a set of steps to perform on it. -The result of peforming all these steps will provide a "root hash", which can +The result of performing all these steps will provide a "root hash", which can be compared to the value in a header. Since it is computationally infeasible to produce a hash collission for any of the used From c1cdd5bd402b8fe77c6e4748a29e12e3816d69a1 Mon Sep 17 00:00:00 2001 From: Maxim Evtush <154841002+maximevtush@users.noreply.github.com> Date: Thu, 13 Feb 2025 23:02:30 +0100 Subject: [PATCH 4/4] Update pool_query_msg.proto --- .../osmosis/cosmwasmpool/v1beta1/model/pool_query_msg.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto-types-gen/proto/osmosis/cosmwasmpool/v1beta1/model/pool_query_msg.proto b/src/proto-types-gen/proto/osmosis/cosmwasmpool/v1beta1/model/pool_query_msg.proto index 2a8097d..d5603aa 100644 --- a/src/proto-types-gen/proto/osmosis/cosmwasmpool/v1beta1/model/pool_query_msg.proto +++ b/src/proto-types-gen/proto/osmosis/cosmwasmpool/v1beta1/model/pool_query_msg.proto @@ -8,7 +8,7 @@ option go_package = "github.com/osmosis-labs/osmosis/v19/x/cosmwasmpool/cosmwasm // ===================== GetSwapFeeQueryMsg message GetSwapFeeQueryMsg { - // get_swap_fee is the query strcuture to get swap fee. + // get_swap_fee is the query structure to get swap fee. EmptyStruct get_swap_fee = 1 [ (gogoproto.nullable) = false ]; }