diff --git a/client/docs/static/swagger/swagger.yaml b/client/docs/static/swagger/swagger.yaml index abd01abe4..2fcef1a80 100644 --- a/client/docs/static/swagger/swagger.yaml +++ b/client/docs/static/swagger/swagger.yaml @@ -7300,9 +7300,9 @@ paths: type: string description: >- Deprecated: This is the original "sender" field, but was - originally declared as a string, + originally - rather than a byte array. + declared as a string, rather than a byte array. chain: type: string key_id: @@ -7354,9 +7354,9 @@ paths: type: string description: >- Deprecated: This is the original "sender" field, but was - originally declared as a string, + originally - rather than a byte array. + declared as a string, rather than a byte array. key_id: type: string sender: @@ -7406,9 +7406,9 @@ paths: type: string description: >- Deprecated: This is the original "sender" field, but was - originally declared as a string, + originally - rather than a byte array. + declared as a string, rather than a byte array. key_id: type: string pub_key: @@ -7464,9 +7464,9 @@ paths: type: string description: >- Deprecated: This is the original "sender" field, but was - originally declared as a string, + originally - rather than a byte array. + declared as a string, rather than a byte array. sig_id: type: string format: uint64 @@ -53870,11 +53870,9 @@ definitions: properties: sender_str: type: string - description: >- + description: |- Deprecated: This is the original "sender" field, but was originally - declared as a string, - - rather than a byte array. + declared as a string, rather than a byte array. chain: type: string key_id: @@ -53890,11 +53888,9 @@ definitions: properties: sender_str: type: string - description: >- + description: |- Deprecated: This is the original "sender" field, but was originally - declared as a string, - - rather than a byte array. + declared as a string, rather than a byte array. key_id: type: string sender: @@ -53908,11 +53904,9 @@ definitions: properties: sender_str: type: string - description: >- + description: |- Deprecated: This is the original "sender" field, but was originally - declared as a string, - - rather than a byte array. + declared as a string, rather than a byte array. key_id: type: string pub_key: @@ -53932,11 +53926,9 @@ definitions: properties: sender_str: type: string - description: >- + description: |- Deprecated: This is the original "sender" field, but was originally - declared as a string, - - rather than a byte array. + declared as a string, rather than a byte array. sig_id: type: string format: uint64 diff --git a/proto/axelar/distribution/v1beta1/events.proto b/proto/axelar/distribution/v1beta1/events.proto index d784136a6..e1c5f0e74 100644 --- a/proto/axelar/distribution/v1beta1/events.proto +++ b/proto/axelar/distribution/v1beta1/events.proto @@ -7,6 +7,8 @@ import "gogoproto/gogo.proto"; option go_package = "github.com/axelarnetwork/axelar-core/x/distribution/types"; message FeesBurned { - repeated cosmos.base.v1beta1.Coin coins = 2 - [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; + repeated cosmos.base.v1beta1.Coin coins = 2 [ + (gogoproto.nullable) = false, + (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins" + ]; } diff --git a/proto/axelar/multisig/v1beta1/tx.proto b/proto/axelar/multisig/v1beta1/tx.proto index 0e403f1ca..ac0940688 100644 --- a/proto/axelar/multisig/v1beta1/tx.proto +++ b/proto/axelar/multisig/v1beta1/tx.proto @@ -10,10 +10,12 @@ import "axelar/permission/exported/v1beta1/types.proto"; message StartKeygenRequest { option (permission.exported.v1beta1.permission_role) = ROLE_CHAIN_MANAGEMENT; - // Deprecated: This is the original "sender" field, but was originally declared as a string, - // rather than a byte array. - string sender_str = 1 [ (gogoproto.casttype) = - "github.com/cosmos/cosmos-sdk/types.AccAddress", deprecated = true]; + // Deprecated: This is the original "sender" field, but was originally + // declared as a string, rather than a byte array. + string sender_str = 1 [ + (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress", + deprecated = true + ]; string key_id = 2 [ (gogoproto.customname) = "KeyID", (gogoproto.casttype) = @@ -22,7 +24,7 @@ message StartKeygenRequest { // New "sender" field, using the appropriate type bytes sender = 3 [ (gogoproto.casttype) = - "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + "github.com/cosmos/cosmos-sdk/types.AccAddress" ]; } message StartKeygenResponse {} @@ -30,10 +32,12 @@ message StartKeygenResponse {} message SubmitPubKeyRequest { option (permission.exported.v1beta1.permission_role) = ROLE_UNRESTRICTED; - // Deprecated: This is the original "sender" field, but was originally declared as a string, - // rather than a byte array. - string sender_str = 1 [ (gogoproto.casttype) = - "github.com/cosmos/cosmos-sdk/types.AccAddress", deprecated = true]; + // Deprecated: This is the original "sender" field, but was originally + // declared as a string, rather than a byte array. + string sender_str = 1 [ + (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress", + deprecated = true + ]; string key_id = 2 [ (gogoproto.customname) = "KeyID", (gogoproto.casttype) = @@ -47,7 +51,7 @@ message SubmitPubKeyRequest { // New "sender" field, using the appropriate type bytes sender = 5 [ (gogoproto.casttype) = - "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + "github.com/cosmos/cosmos-sdk/types.AccAddress" ]; } message SubmitPubKeyResponse {} @@ -55,26 +59,30 @@ message SubmitPubKeyResponse {} message SubmitSignatureRequest { option (permission.exported.v1beta1.permission_role) = ROLE_UNRESTRICTED; - // Deprecated: This is the original "sender" field, but was originally declared as a string, - // rather than a byte array. - string sender_str = 1 [ (gogoproto.casttype) = - "github.com/cosmos/cosmos-sdk/types.AccAddress", deprecated = true]; + // Deprecated: This is the original "sender" field, but was originally + // declared as a string, rather than a byte array. + string sender_str = 1 [ + (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress", + deprecated = true + ]; uint64 sig_id = 2 [ (gogoproto.customname) = "SigID" ]; bytes signature = 3 [ (gogoproto.casttype) = "Signature" ]; // New "sender" field, using the appropriate type bytes sender = 4 [ (gogoproto.casttype) = - "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + "github.com/cosmos/cosmos-sdk/types.AccAddress" ]; } message SubmitSignatureResponse {} message RotateKeyRequest { option (permission.exported.v1beta1.permission_role) = ROLE_CHAIN_MANAGEMENT; - // Deprecated: This is the original "sender" field, but was originally declared as a string, - // rather than a byte array. - string sender_str = 1 [ (gogoproto.casttype) = - "github.com/cosmos/cosmos-sdk/types.AccAddress", deprecated = true]; + // Deprecated: This is the original "sender" field, but was originally + // declared as a string, rather than a byte array. + string sender_str = 1 [ + (gogoproto.casttype) = "github.com/cosmos/cosmos-sdk/types.AccAddress", + deprecated = true + ]; string chain = 2 [ (gogoproto.casttype) = "github.com/axelarnetwork/axelar-core/x/nexus/exported.ChainName" ]; @@ -86,7 +94,7 @@ message RotateKeyRequest { // New "sender" field, using the appropriate type bytes sender = 4 [ (gogoproto.casttype) = - "github.com/cosmos/cosmos-sdk/types.AccAddress"]; + "github.com/cosmos/cosmos-sdk/types.AccAddress" ]; } message RotateKeyResponse {} diff --git a/x/distribution/types/events.pb.go b/x/distribution/types/events.pb.go index cd2c62ab2..74f5728ca 100644 --- a/x/distribution/types/events.pb.go +++ b/x/distribution/types/events.pb.go @@ -7,8 +7,8 @@ import ( fmt "fmt" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" diff --git a/x/multisig/types/tx.pb.go b/x/multisig/types/tx.pb.go index 56a9d9f71..cc5b904d3 100644 --- a/x/multisig/types/tx.pb.go +++ b/x/multisig/types/tx.pb.go @@ -28,8 +28,8 @@ var _ = math.Inf const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package type StartKeygenRequest struct { - // Deprecated: This is the original "sender" field, but was originally declared as a string, - // rather than a byte array. + // Deprecated: This is the original "sender" field, but was originally + // declared as a string, rather than a byte array. SenderStr github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,1,opt,name=sender_str,json=senderStr,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"sender_str,omitempty"` // Deprecated: Do not use. KeyID github_com_axelarnetwork_axelar_core_x_multisig_exported.KeyID `protobuf:"bytes,2,opt,name=key_id,json=keyId,proto3,casttype=github.com/axelarnetwork/axelar-core/x/multisig/exported.KeyID" json:"key_id,omitempty"` // New "sender" field, using the appropriate type @@ -106,8 +106,8 @@ func (m *StartKeygenResponse) XXX_DiscardUnknown() { var xxx_messageInfo_StartKeygenResponse proto.InternalMessageInfo type SubmitPubKeyRequest struct { - // Deprecated: This is the original "sender" field, but was originally declared as a string, - // rather than a byte array. + // Deprecated: This is the original "sender" field, but was originally + // declared as a string, rather than a byte array. SenderStr github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,1,opt,name=sender_str,json=senderStr,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"sender_str,omitempty"` // Deprecated: Do not use. KeyID github_com_axelarnetwork_axelar_core_x_multisig_exported.KeyID `protobuf:"bytes,2,opt,name=key_id,json=keyId,proto3,casttype=github.com/axelarnetwork/axelar-core/x/multisig/exported.KeyID" json:"key_id,omitempty"` PubKey github_com_axelarnetwork_axelar_core_x_multisig_exported.PublicKey `protobuf:"bytes,3,opt,name=pub_key,json=pubKey,proto3,casttype=github.com/axelarnetwork/axelar-core/x/multisig/exported.PublicKey" json:"pub_key,omitempty"` @@ -186,8 +186,8 @@ func (m *SubmitPubKeyResponse) XXX_DiscardUnknown() { var xxx_messageInfo_SubmitPubKeyResponse proto.InternalMessageInfo type SubmitSignatureRequest struct { - // Deprecated: This is the original "sender" field, but was originally declared as a string, - // rather than a byte array. + // Deprecated: This is the original "sender" field, but was originally + // declared as a string, rather than a byte array. SenderStr github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,1,opt,name=sender_str,json=senderStr,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"sender_str,omitempty"` // Deprecated: Do not use. SigID uint64 `protobuf:"varint,2,opt,name=sig_id,json=sigId,proto3" json:"sig_id,omitempty"` Signature Signature `protobuf:"bytes,3,opt,name=signature,proto3,casttype=Signature" json:"signature,omitempty"` @@ -265,8 +265,8 @@ func (m *SubmitSignatureResponse) XXX_DiscardUnknown() { var xxx_messageInfo_SubmitSignatureResponse proto.InternalMessageInfo type RotateKeyRequest struct { - // Deprecated: This is the original "sender" field, but was originally declared as a string, - // rather than a byte array. + // Deprecated: This is the original "sender" field, but was originally + // declared as a string, rather than a byte array. SenderStr github_com_cosmos_cosmos_sdk_types.AccAddress `protobuf:"bytes,1,opt,name=sender_str,json=senderStr,proto3,casttype=github.com/cosmos/cosmos-sdk/types.AccAddress" json:"sender_str,omitempty"` // Deprecated: Do not use. Chain github_com_axelarnetwork_axelar_core_x_nexus_exported.ChainName `protobuf:"bytes,2,opt,name=chain,proto3,casttype=github.com/axelarnetwork/axelar-core/x/nexus/exported.ChainName" json:"chain,omitempty"` KeyID github_com_axelarnetwork_axelar_core_x_multisig_exported.KeyID `protobuf:"bytes,3,opt,name=key_id,json=keyId,proto3,casttype=github.com/axelarnetwork/axelar-core/x/multisig/exported.KeyID" json:"key_id,omitempty"`