Skip to content

Commit

Permalink
update proto
Browse files Browse the repository at this point in the history
  • Loading branch information
akhilkumarpilli committed Aug 26, 2024
1 parent 22637d0 commit 1cbfb44
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
2 changes: 0 additions & 2 deletions api/cosmos/base/abci/v1beta1/abci.pulsar.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 8 additions & 5 deletions proto/cosmos/tx/signing/v1beta1/signing.proto
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package cosmos.tx.signing.v1beta1;

import "cosmos/crypto/multisig/v1beta1/multisig.proto";
import "google/protobuf/any.proto";
import "cosmos_proto/cosmos.proto";

option go_package = "github.com/cosmos/cosmos-sdk/types/tx/signing";

Expand All @@ -27,13 +26,16 @@ enum SignMode {
// SIGN_MODE_TEXTUAL is a future signing mode that will verify some
// human-readable textual representation on top of the binary representation
// from SIGN_MODE_DIRECT.
SIGN_MODE_TEXTUAL = 2 [(cosmos_proto.field_added_in) = "cosmos-sdk 0.50"];
//
// Since: cosmos-sdk 0.50
SIGN_MODE_TEXTUAL = 2;

// SIGN_MODE_DIRECT_AUX specifies a signing mode which uses
// SignDocDirectAux. As opposed to SIGN_MODE_DIRECT, this sign mode does not
// require signers signing over other signers' `signer_info`.
SIGN_MODE_DIRECT_AUX = 3 [(cosmos_proto.field_added_in) = "cosmos-sdk 0.46"];
;
//
// Since: cosmos-sdk 0.46
SIGN_MODE_DIRECT_AUX = 3;

// SIGN_MODE_LEGACY_AMINO_JSON is a backwards compatibility mode which uses
// Amino JSON and will be removed in the future.
Expand All @@ -48,12 +50,13 @@ enum SignMode {
// `SignModeHandler` for EIP-191. The SDK may decide to fully support
// EIP-191 in the future.
//
// Since: cosmos-sdk 0.45.2
// Deprecated: post 0.47.x Sign mode refers to a method of encoding string data for
// signing, but in the SDK, it also refers to how to encode a transaction into a string.
// This opens the possibility for additional EIP191 sign modes, like SIGN_MODE_EIP_191_TEXTUAL,
// SIGN_MODE_EIP_191_LEGACY_JSON, and more.
// Each new EIP191 sign mode should be accompanied by an associated ADR.
SIGN_MODE_EIP_191 = 191 [deprecated = true, (cosmos_proto.field_added_in) = "cosmos-sdk 0.45.2"];
SIGN_MODE_EIP_191 = 191 [deprecated = true];
}

// SignatureDescriptors wraps multiple SignatureDescriptor's.
Expand Down
2 changes: 0 additions & 2 deletions types/abci.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1cbfb44

Please sign in to comment.