Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(multisig-protobufs): mark sender field as deprecated and add new field with proper type #2232

Merged
merged 1 commit into from
Jan 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions client/docs/static/openapi/index.html

Large diffs are not rendered by default.

128 changes: 104 additions & 24 deletions client/docs/static/openapi/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4845,7 +4845,19 @@ paths:
"value": "1.212s"
}
requestBody:
$ref: "#/components/requestBodies/CreateTransferOperatorshipBody"
content:
application/json:
schema:
type: object
properties:
sender:
type: string
format: byte
chain:
type: string
key_id:
type: string
required: true
tags:
- MsgService
/axelar/evm/link:
Expand Down Expand Up @@ -8914,7 +8926,27 @@ paths:
"value": "1.212s"
}
requestBody:
$ref: "#/components/requestBodies/CreateTransferOperatorshipBody"
content:
application/json:
schema:
type: object
properties:
sender_str:
type: string
description: >-
Deprecated: This is the original "sender" field, but was
originally declared as a string,

rather than a byte array.
chain:
type: string
key_id:
type: string
sender:
type: string
format: byte
title: New "sender" field, using the appropriate type
required: true
tags:
- MsgService
/axelar/multisig/start_keygen:
Expand Down Expand Up @@ -9103,10 +9135,19 @@ paths:
schema:
type: object
properties:
sender:
sender_str:
type: string
description: >-
Deprecated: This is the original "sender" field, but was
originally declared as a string,

rather than a byte array.
key_id:
type: string
sender:
type: string
format: byte
title: New "sender" field, using the appropriate type
required: true
tags:
- MsgService
Expand Down Expand Up @@ -9296,8 +9337,13 @@ paths:
schema:
type: object
properties:
sender:
sender_str:
type: string
description: >-
Deprecated: This is the original "sender" field, but was
originally declared as a string,

rather than a byte array.
key_id:
type: string
pub_key:
Expand All @@ -9306,6 +9352,10 @@ paths:
signature:
type: string
format: byte
sender:
type: string
format: byte
title: New "sender" field, using the appropriate type
required: true
tags:
- MsgService
Expand Down Expand Up @@ -9495,14 +9545,23 @@ paths:
schema:
type: object
properties:
sender:
sender_str:
type: string
description: >-
Deprecated: This is the original "sender" field, but was
originally declared as a string,

rather than a byte array.
sig_id:
type: string
format: uint64
signature:
type: string
format: byte
sender:
type: string
format: byte
title: New "sender" field, using the appropriate type
required: true
tags:
- MsgService
Expand Down Expand Up @@ -49372,20 +49431,6 @@ components:
type: string
format: byte
required: true
CreateTransferOperatorshipBody:
content:
application/json:
schema:
type: object
properties:
sender:
type: string
format: byte
chain:
type: string
key_id:
type: string
required: true
schemas:
google.protobuf.Any:
type: object
Expand Down Expand Up @@ -51423,29 +51468,51 @@ components:
axelar.multisig.v1beta1.RotateKeyRequest:
type: object
properties:
sender:
sender_str:
type: string
format: byte
description: >-
Deprecated: This is the original "sender" field, but was originally
declared as a string,

rather than a byte array.
chain:
type: string
key_id:
type: string
sender:
type: string
format: byte
title: New "sender" field, using the appropriate type
axelar.multisig.v1beta1.RotateKeyResponse:
type: object
axelar.multisig.v1beta1.StartKeygenRequest:
type: object
properties:
sender:
sender_str:
type: string
description: >-
Deprecated: This is the original "sender" field, but was originally
declared as a string,

rather than a byte array.
key_id:
type: string
sender:
type: string
format: byte
title: New "sender" field, using the appropriate type
axelar.multisig.v1beta1.StartKeygenResponse:
type: object
axelar.multisig.v1beta1.SubmitPubKeyRequest:
type: object
properties:
sender:
sender_str:
type: string
description: >-
Deprecated: This is the original "sender" field, but was originally
declared as a string,

rather than a byte array.
key_id:
type: string
pub_key:
Expand All @@ -51454,19 +51521,32 @@ components:
signature:
type: string
format: byte
sender:
type: string
format: byte
title: New "sender" field, using the appropriate type
axelar.multisig.v1beta1.SubmitPubKeyResponse:
type: object
axelar.multisig.v1beta1.SubmitSignatureRequest:
type: object
properties:
sender:
sender_str:
type: string
description: >-
Deprecated: This is the original "sender" field, but was originally
declared as a string,

rather than a byte array.
sig_id:
type: string
format: uint64
signature:
type: string
format: byte
sender:
type: string
format: byte
title: New "sender" field, using the appropriate type
axelar.multisig.v1beta1.SubmitSignatureResponse:
type: object
axelar.nexus.exported.v1beta1.CrossChainAddress:
Expand Down
Loading
Loading