diff --git a/client/docs/swagger-ui/swagger.yaml b/client/docs/swagger-ui/swagger.yaml index fd0103c893..7fee2443f9 100644 --- a/client/docs/swagger-ui/swagger.yaml +++ b/client/docs/swagger-ui/swagger.yaml @@ -896,7 +896,6 @@ paths: properties: key: type: string - format: byte description: KeyResponse is the response type for the Query/Key RPC method. default: description: An unexpected error response. @@ -927,6 +926,57 @@ paths: type: string tags: - Query + /e2ee/v1/keys: + post: + summary: Keys queries the encryption keys for a batch of addresses + operationId: Keys + responses: + '200': + description: A successful response. + schema: + type: object + properties: + keys: + type: array + items: + type: string + description: KeysResponse is the response type for the Query/Key RPC method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: body + in: body + required: true + schema: + type: object + properties: + addresses: + type: array + items: + type: string + description: KeysRequest is the request type for the Query/Key RPC method. + tags: + - Query /ethermint/evm/v1/account/{address}: get: summary: Account queries an Ethereum account. @@ -45554,8 +45604,23 @@ definitions: properties: key: type: string - format: byte description: KeyResponse is the response type for the Query/Key RPC method. + e2ee.KeysRequest: + type: object + properties: + addresses: + type: array + items: + type: string + description: KeysRequest is the request type for the Query/Key RPC method. + e2ee.KeysResponse: + type: object + properties: + keys: + type: array + items: + type: string + description: KeysResponse is the response type for the Query/Key RPC method. ethermint.evm.v1.ChainConfig: type: object properties: