@cobo/cobo-waas2 1.14.0 → 1.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (216) hide show
  1. package/README.md +70 -5
  2. package/dist/ApiClient.js +2 -3
  3. package/dist/PreRequestScript.js +1 -1
  4. package/dist/api/AddressBooksApi.js +4 -4
  5. package/dist/api/AppWorkflowsApi.js +275 -0
  6. package/dist/api/DevelopersApi.js +4 -4
  7. package/dist/api/DevelopersWebhooksApi.js +12 -12
  8. package/dist/api/FeeStationApi.js +26 -26
  9. package/dist/api/PaymentApi.js +16 -16
  10. package/dist/api/StakingsApi.js +28 -28
  11. package/dist/api/TransactionsApi.js +16 -8
  12. package/dist/api/WalletsApi.js +121 -70
  13. package/dist/api/WalletsExchangeWalletApi.js +8 -8
  14. package/dist/api/WalletsMPCWalletsApi.js +20 -20
  15. package/dist/crypto/ApiSigner.js +1 -2
  16. package/dist/index.js +420 -0
  17. package/dist/model/AddressBook.js +18 -0
  18. package/dist/model/AppWorkflow.js +173 -0
  19. package/dist/model/AppWorkflowField.js +137 -0
  20. package/dist/model/AppWorkflowPolicy.js +144 -0
  21. package/dist/model/ApprovalEntry.js +148 -0
  22. package/dist/model/ApprovalRequest.js +178 -0
  23. package/dist/model/ApprovalRequestDetail.js +176 -0
  24. package/dist/model/ApprovalStatus.js +71 -0
  25. package/dist/model/ApprovalUser.js +146 -0
  26. package/dist/model/BabylonStakeExtra.js +16 -0
  27. package/dist/model/BankAccount.js +18 -0
  28. package/dist/model/BatchCheckUtxo201Response.js +107 -0
  29. package/dist/model/BatchCheckUtxoRequest.js +142 -0
  30. package/dist/model/BatchUTXOParam.js +123 -0
  31. package/dist/model/ChainInfo.js +9 -0
  32. package/dist/model/CreateApprovalRequest201Response.js +109 -0
  33. package/dist/model/CreateSettlement.js +4 -29
  34. package/dist/model/CreateStakeActivityExtra.js +6 -0
  35. package/dist/model/CreateTokenListingRequest201Response.js +2 -2
  36. package/dist/model/CreateTokenListingRequestRequest.js +4 -4
  37. package/dist/model/CustodialWeb3TransferSource.js +1 -1
  38. package/dist/model/EstimateContractCallFeeParams.js +13 -0
  39. package/dist/model/EstimateFeeParams.js +6 -0
  40. package/dist/model/EstimateTransferFeeParams.js +13 -0
  41. package/dist/model/FeeStationTransfer.js +1 -1
  42. package/dist/model/ListApprovalRequests200Response.js +123 -0
  43. package/dist/model/Merchant.js +18 -0
  44. package/dist/model/MpcTransferSource.js +1 -1
  45. package/dist/model/Order.js +49 -0
  46. package/dist/model/PaymentOrderEventData.js +64 -0
  47. package/dist/model/PaymentRefundEventData.js +77 -0
  48. package/dist/model/PaymentSettlementEvent.js +46 -0
  49. package/dist/model/PaymentTransaction.js +13 -0
  50. package/dist/model/PolicyAction.js +123 -0
  51. package/dist/model/PolicyActionContent.js +167 -0
  52. package/dist/model/PolicyActionType.js +66 -0
  53. package/dist/model/PolicyCondition.js +148 -0
  54. package/dist/model/PolicyFieldOperator.js +76 -0
  55. package/dist/model/PolicyFieldValueType.js +61 -0
  56. package/dist/model/Refund.js +53 -0
  57. package/dist/model/RequestApproval.js +188 -0
  58. package/dist/model/RevokeApprovalRequest201Response.js +118 -0
  59. package/dist/model/RevokeApprovalRequestRequest.js +110 -0
  60. package/dist/model/Settlement.js +31 -0
  61. package/dist/model/SettlementDetail.js +57 -0
  62. package/dist/model/SettlementInfo.js +31 -0
  63. package/dist/model/SwapActivity.js +3 -3
  64. package/dist/model/SwapActivityApprovers.js +122 -0
  65. package/dist/model/SwapActivityDetail.js +36 -6
  66. package/dist/model/SwapApproversStatus.js +66 -0
  67. package/dist/model/SwapQuote.js +49 -4
  68. package/dist/model/SwapToken.js +2 -2
  69. package/dist/model/TSSBaseRequestEventData.js +163 -0
  70. package/dist/model/TSSCallbackActionType.js +61 -0
  71. package/dist/model/TSSCallbackRequest.js +122 -0
  72. package/dist/model/TSSCallbackRequestType.js +76 -0
  73. package/dist/model/TSSCallbackResponse.js +118 -0
  74. package/dist/model/TSSCurve.js +61 -0
  75. package/dist/model/TSSCurveType.js +61 -0
  76. package/dist/model/TSSEvent.js +158 -0
  77. package/dist/model/TSSEventData.js +278 -0
  78. package/dist/model/TSSEventDataType.js +71 -0
  79. package/dist/model/TSSEventType.js +136 -0
  80. package/dist/model/TSSGroup.js +221 -0
  81. package/dist/model/TSSGroupType.js +61 -0
  82. package/dist/model/TSSGroups.js +1 -1
  83. package/dist/model/TSSKeyGenEventData.js +228 -0
  84. package/dist/model/TSSKeyGenExtra.js +154 -0
  85. package/dist/model/TSSKeyGenRequest.js +130 -0
  86. package/dist/model/TSSKeyReshareEventData.js +228 -0
  87. package/dist/model/TSSKeyReshareExtra.js +169 -0
  88. package/dist/model/TSSKeyReshareRequest.js +177 -0
  89. package/dist/model/TSSKeyShareSignDetail.js +100 -0
  90. package/dist/model/TSSKeyShareSignEventData.js +228 -0
  91. package/dist/model/TSSKeyShareSignExtra.js +171 -0
  92. package/dist/model/TSSKeyShareSignRequest.js +146 -0
  93. package/dist/model/TSSKeyShareSignSignature.js +126 -0
  94. package/dist/model/TSSKeyShareSignSignatures.js +107 -0
  95. package/dist/model/TSSKeySignEventData.js +228 -0
  96. package/dist/model/TSSKeySignExtra.js +203 -0
  97. package/dist/model/TSSKeySignRequest.js +192 -0
  98. package/dist/model/TSSParticipant.js +113 -0
  99. package/dist/model/TSSProtocol.js +66 -0
  100. package/dist/model/TSSRequestTypeEenum.js +71 -0
  101. package/dist/model/TSSSignature.js +139 -0
  102. package/dist/model/TSSSignatureType.js +66 -0
  103. package/dist/model/TSSSignatures.js +125 -0
  104. package/dist/model/TSSStatus.js +96 -0
  105. package/dist/model/TokenListing.js +10 -10
  106. package/dist/model/TokenListingEventData.js +15 -15
  107. package/dist/model/TransactionCoboCategory.js +102 -7
  108. package/dist/model/TransactionRbfSource.js +1 -1
  109. package/dist/model/TransactionSubStatus.js +35 -0
  110. package/dist/model/UTXO.js +9 -0
  111. package/dist/model/WebhookEventData.js +15 -9
  112. package/docs/AddressBook.md +2 -0
  113. package/docs/AddressBooksApi.md +2 -2
  114. package/docs/AppWorkflow.md +12 -0
  115. package/docs/AppWorkflowField.md +11 -0
  116. package/docs/AppWorkflowPolicy.md +10 -0
  117. package/docs/AppWorkflowsApi.md +273 -0
  118. package/docs/ApprovalEntry.md +11 -0
  119. package/docs/ApprovalRequest.md +13 -0
  120. package/docs/ApprovalRequestDetail.md +13 -0
  121. package/docs/ApprovalStatus.md +16 -0
  122. package/docs/ApprovalUser.md +12 -0
  123. package/docs/BabylonStakeExtra.md +1 -0
  124. package/docs/BankAccount.md +2 -0
  125. package/docs/BatchCheckUtxo201Response.md +9 -0
  126. package/docs/BatchCheckUtxoRequest.md +10 -0
  127. package/docs/BatchUTXOParam.md +10 -0
  128. package/docs/ChainInfo.md +1 -0
  129. package/docs/CreateApprovalRequest201Response.md +9 -0
  130. package/docs/CreateSettlement.md +2 -2
  131. package/docs/CreateStakeActivityExtra.md +1 -0
  132. package/docs/CreateTokenListingRequest201Response.md +1 -1
  133. package/docs/CreateTokenListingRequestRequest.md +2 -2
  134. package/docs/CustodialWeb3TransferSource.md +1 -1
  135. package/docs/DevelopersApi.md +2 -2
  136. package/docs/DevelopersWebhooksApi.md +6 -6
  137. package/docs/EstimateContractCallFeeParams.md +1 -0
  138. package/docs/EstimateFeeParams.md +1 -0
  139. package/docs/EstimateTransferFeeParams.md +1 -0
  140. package/docs/FeeStationApi.md +14 -14
  141. package/docs/ListApprovalRequests200Response.md +10 -0
  142. package/docs/Merchant.md +2 -0
  143. package/docs/MpcTransferSource.md +1 -1
  144. package/docs/Order.md +3 -0
  145. package/docs/PaymentApi.md +8 -8
  146. package/docs/PaymentOrderEventData.md +3 -0
  147. package/docs/PaymentRefundEventData.md +5 -0
  148. package/docs/PaymentSettlementEvent.md +3 -0
  149. package/docs/PaymentTransaction.md +1 -0
  150. package/docs/PolicyAction.md +10 -0
  151. package/docs/PolicyActionContent.md +25 -0
  152. package/docs/PolicyActionType.md +14 -0
  153. package/docs/PolicyCondition.md +12 -0
  154. package/docs/PolicyFieldOperator.md +18 -0
  155. package/docs/PolicyFieldValueType.md +12 -0
  156. package/docs/Refund.md +5 -0
  157. package/docs/RequestApproval.md +13 -0
  158. package/docs/RevokeApprovalRequest201Response.md +10 -0
  159. package/docs/RevokeApprovalRequestRequest.md +9 -0
  160. package/docs/Settlement.md +3 -0
  161. package/docs/SettlementDetail.md +5 -0
  162. package/docs/SettlementInfo.md +3 -0
  163. package/docs/StakingsApi.md +14 -14
  164. package/docs/SwapActivity.md +3 -3
  165. package/docs/SwapActivityApprovers.md +10 -0
  166. package/docs/SwapActivityDetail.md +4 -3
  167. package/docs/SwapApproversStatus.md +14 -0
  168. package/docs/SwapQuote.md +3 -0
  169. package/docs/SwapToken.md +2 -2
  170. package/docs/TSSBaseRequestEventData.md +14 -0
  171. package/docs/TSSCallbackActionType.md +12 -0
  172. package/docs/TSSCallbackRequest.md +12 -0
  173. package/docs/TSSCallbackRequestType.md +18 -0
  174. package/docs/TSSCallbackResponse.md +12 -0
  175. package/docs/TSSCurve.md +12 -0
  176. package/docs/TSSCurveType.md +12 -0
  177. package/docs/TSSEvent.md +13 -0
  178. package/docs/TSSEventData.md +16 -0
  179. package/docs/TSSEventDataType.md +16 -0
  180. package/docs/TSSEventType.md +42 -0
  181. package/docs/TSSGroup.md +19 -0
  182. package/docs/TSSGroupType.md +12 -0
  183. package/docs/TSSKeyGenEventData.md +16 -0
  184. package/docs/TSSKeyGenExtra.md +13 -0
  185. package/docs/TSSKeyGenRequest.md +13 -0
  186. package/docs/TSSKeyReshareEventData.md +16 -0
  187. package/docs/TSSKeyReshareExtra.md +14 -0
  188. package/docs/TSSKeyReshareRequest.md +17 -0
  189. package/docs/TSSKeyShareSignDetail.md +10 -0
  190. package/docs/TSSKeyShareSignEventData.md +16 -0
  191. package/docs/TSSKeyShareSignExtra.md +13 -0
  192. package/docs/TSSKeyShareSignRequest.md +12 -0
  193. package/docs/TSSKeyShareSignSignature.md +12 -0
  194. package/docs/TSSKeyShareSignSignatures.md +9 -0
  195. package/docs/TSSKeySignEventData.md +16 -0
  196. package/docs/TSSKeySignExtra.md +15 -0
  197. package/docs/TSSKeySignRequest.md +18 -0
  198. package/docs/TSSParticipant.md +11 -0
  199. package/docs/TSSProtocol.md +14 -0
  200. package/docs/TSSRequestTypeEenum.md +16 -0
  201. package/docs/TSSSignature.md +13 -0
  202. package/docs/TSSSignatureType.md +14 -0
  203. package/docs/TSSSignatures.md +11 -0
  204. package/docs/TSSStatus.md +26 -0
  205. package/docs/TokenListing.md +6 -6
  206. package/docs/TokenListingEventData.md +6 -6
  207. package/docs/TransactionCoboCategory.md +41 -3
  208. package/docs/TransactionRbfSource.md +1 -1
  209. package/docs/TransactionSubStatus.md +14 -0
  210. package/docs/TransactionsApi.md +8 -4
  211. package/docs/UTXO.md +1 -0
  212. package/docs/WalletsApi.md +91 -36
  213. package/docs/WalletsExchangeWalletApi.md +4 -4
  214. package/docs/WalletsMPCWalletsApi.md +10 -10
  215. package/docs/WebhookEventData.md +8 -7
  216. package/package.json +1 -1
@@ -736,8 +736,8 @@ Name | Type | Description | Notes
736
736
  **status** | **String**| The registration request status. | [optional]
737
737
  **btc_address** | **String**| The Bitcoin (BTC) address used for staking. | [optional]
738
738
  **limit** | **Number**| The maximum number of objects to return. For most operations, the value range is [1, 50]. | [optional] [default to 10]
739
- **before** | **String**| This parameter specifies an object ID as a starting point for pagination, retrieving data before the specified object relative to the current dataset. Suppose the current data is ordered as Object A, Object B, and Object C. If you set `before` to the ID of Object C (`RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGSAk`), the response will include Object B and Object A. **Notes**: - If you set both `after` and `before`, an error will occur. - If you leave both `before` and `after` empty, the first page of data is returned. - If you set it to `infinity`, the last page of data is returned. | [optional]
740
- **after** | **String**| This parameter specifies an object ID as a starting point for pagination, retrieving data after the specified object relative to the current dataset. Suppose the current data is ordered as Object A, Object B, and Object C. If you set `after` to the ID of Object A (`RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGSAk`), the response will include Object B and Object C. **Notes**: - If you set both `after` and `before`, an error will occur. - If you leave both `before` and `after` empty, the first page of data is returned. | [optional]
739
+ **before** | **String**| A cursor indicating the position before the current page. This value is generated by Cobo and returned in the response. If you are paginating forward from the beginning, you do not need to provide it on the first request. When paginating backward (to the previous page), you should pass the before value returned from the last response. | [optional]
740
+ **after** | **String**| A cursor indicating the position after the current page. This value is generated by Cobo and returned in the response. You do not need to provide it on the first request. When paginating forward (to the next page), you should pass the after value returned from the last response. | [optional]
741
741
 
742
742
  ### Return type
743
743
 
@@ -794,8 +794,8 @@ Name | Type | Description | Notes
794
794
  ------------- | ------------- | ------------- | -------------
795
795
  **status** | **String**| The status of Babylon airdrop or Phase-2 registration. Possible values are: - `Registered`: Registered for Babylon airdrop or Phase-2. - `Unregistered`: Not registered for any Babylon airdrop or Phase-2. - `Registering`: The Babylon airdrop or Phase-2 registration is in progress but not yet completed. | [optional]
796
796
  **limit** | **Number**| The maximum number of objects to return. For most operations, the value range is [1, 50]. | [optional] [default to 10]
797
- **before** | **String**| This parameter specifies an object ID as a starting point for pagination, retrieving data before the specified object relative to the current dataset. Suppose the current data is ordered as Object A, Object B, and Object C. If you set `before` to the ID of Object C (`RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGSAk`), the response will include Object B and Object A. **Notes**: - If you set both `after` and `before`, an error will occur. - If you leave both `before` and `after` empty, the first page of data is returned. - If you set it to `infinity`, the last page of data is returned. | [optional]
798
- **after** | **String**| This parameter specifies an object ID as a starting point for pagination, retrieving data after the specified object relative to the current dataset. Suppose the current data is ordered as Object A, Object B, and Object C. If you set `after` to the ID of Object A (`RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGSAk`), the response will include Object B and Object C. **Notes**: - If you set both `after` and `before`, an error will occur. - If you leave both `before` and `after` empty, the first page of data is returned. | [optional]
797
+ **before** | **String**| A cursor indicating the position before the current page. This value is generated by Cobo and returned in the response. If you are paginating forward from the beginning, you do not need to provide it on the first request. When paginating backward (to the previous page), you should pass the before value returned from the last response. | [optional]
798
+ **after** | **String**| A cursor indicating the position after the current page. This value is generated by Cobo and returned in the response. You do not need to provide it on the first request. When paginating forward (to the next page), you should pass the after value returned from the last response. | [optional]
799
799
 
800
800
  ### Return type
801
801
 
@@ -852,8 +852,8 @@ Name | Type | Description | Notes
852
852
  ------------- | ------------- | ------------- | -------------
853
853
  **status** | **String**| The status of Babylon airdrop or Phase-2 registration. Possible values are: - `Registered`: Registered for Babylon airdrop or Phase-2. - `Unregistered`: Not registered for any Babylon airdrop or Phase-2. - `Registering`: The Babylon airdrop or Phase-2 registration is in progress but not yet completed. | [optional]
854
854
  **limit** | **Number**| The maximum number of objects to return. For most operations, the value range is [1, 50]. | [optional] [default to 10]
855
- **before** | **String**| This parameter specifies an object ID as a starting point for pagination, retrieving data before the specified object relative to the current dataset. Suppose the current data is ordered as Object A, Object B, and Object C. If you set `before` to the ID of Object C (`RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGSAk`), the response will include Object B and Object A. **Notes**: - If you set both `after` and `before`, an error will occur. - If you leave both `before` and `after` empty, the first page of data is returned. - If you set it to `infinity`, the last page of data is returned. | [optional]
856
- **after** | **String**| This parameter specifies an object ID as a starting point for pagination, retrieving data after the specified object relative to the current dataset. Suppose the current data is ordered as Object A, Object B, and Object C. If you set `after` to the ID of Object A (`RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGSAk`), the response will include Object B and Object C. **Notes**: - If you set both `after` and `before`, an error will occur. - If you leave both `before` and `after` empty, the first page of data is returned. | [optional]
855
+ **before** | **String**| A cursor indicating the position before the current page. This value is generated by Cobo and returned in the response. If you are paginating forward from the beginning, you do not need to provide it on the first request. When paginating backward (to the previous page), you should pass the before value returned from the last response. | [optional]
856
+ **after** | **String**| A cursor indicating the position after the current page. This value is generated by Cobo and returned in the response. You do not need to provide it on the first request. When paginating forward (to the next page), you should pass the after value returned from the last response. | [optional]
857
857
 
858
858
  ### Return type
859
859
 
@@ -912,8 +912,8 @@ Name | Type | Description | Notes
912
912
  **status** | **String**| The registration request status. | [optional]
913
913
  **staking_id** | **String**| The ID of the Phase-1 BTC staking position. | [optional]
914
914
  **limit** | **Number**| The maximum number of objects to return. For most operations, the value range is [1, 50]. | [optional] [default to 10]
915
- **before** | **String**| This parameter specifies an object ID as a starting point for pagination, retrieving data before the specified object relative to the current dataset. Suppose the current data is ordered as Object A, Object B, and Object C. If you set `before` to the ID of Object C (`RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGSAk`), the response will include Object B and Object A. **Notes**: - If you set both `after` and `before`, an error will occur. - If you leave both `before` and `after` empty, the first page of data is returned. - If you set it to `infinity`, the last page of data is returned. | [optional]
916
- **after** | **String**| This parameter specifies an object ID as a starting point for pagination, retrieving data after the specified object relative to the current dataset. Suppose the current data is ordered as Object A, Object B, and Object C. If you set `after` to the ID of Object A (`RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGSAk`), the response will include Object B and Object C. **Notes**: - If you set both `after` and `before`, an error will occur. - If you leave both `before` and `after` empty, the first page of data is returned. | [optional]
915
+ **before** | **String**| A cursor indicating the position before the current page. This value is generated by Cobo and returned in the response. If you are paginating forward from the beginning, you do not need to provide it on the first request. When paginating backward (to the previous page), you should pass the before value returned from the last response. | [optional]
916
+ **after** | **String**| A cursor indicating the position after the current page. This value is generated by Cobo and returned in the response. You do not need to provide it on the first request. When paginating forward (to the next page), you should pass the after value returned from the last response. | [optional]
917
917
 
918
918
  ### Return type
919
919
 
@@ -984,8 +984,8 @@ Name | Type | Description | Notes
984
984
  **initiator** | **String**| The activity initiator, which is your API key by default. You can also specify the initiator when creating the activity. | [optional]
985
985
  **request_id** | **String**| The request ID that is used to track a transaction request. The request ID is provided by you and must be unique within your organization. | [optional]
986
986
  **limit** | **Number**| The maximum number of objects to return. For most operations, the value range is [1, 50]. | [optional] [default to 10]
987
- **before** | **String**| This parameter specifies an object ID as a starting point for pagination, retrieving data before the specified object relative to the current dataset. Suppose the current data is ordered as Object A, Object B, and Object C. If you set `before` to the ID of Object C (`RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGSAk`), the response will include Object B and Object A. **Notes**: - If you set both `after` and `before`, an error will occur. - If you leave both `before` and `after` empty, the first page of data is returned. - If you set it to `infinity`, the last page of data is returned. | [optional]
988
- **after** | **String**| This parameter specifies an object ID as a starting point for pagination, retrieving data after the specified object relative to the current dataset. Suppose the current data is ordered as Object A, Object B, and Object C. If you set `after` to the ID of Object A (`RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGSAk`), the response will include Object B and Object C. **Notes**: - If you set both `after` and `before`, an error will occur. - If you leave both `before` and `after` empty, the first page of data is returned. | [optional]
987
+ **before** | **String**| A cursor indicating the position before the current page. This value is generated by Cobo and returned in the response. If you are paginating forward from the beginning, you do not need to provide it on the first request. When paginating backward (to the previous page), you should pass the before value returned from the last response. | [optional]
988
+ **after** | **String**| A cursor indicating the position after the current page. This value is generated by Cobo and returned in the response. You do not need to provide it on the first request. When paginating forward (to the next page), you should pass the after value returned from the last response. | [optional]
989
989
 
990
990
  ### Return type
991
991
 
@@ -1044,8 +1044,8 @@ Name | Type | Description | Notes
1044
1044
  **chain_id** | **String**| The chain ID, which is the unique identifier of a blockchain. You can retrieve the IDs of all the chains you can use by calling [List enabled chains](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-chains). | [optional]
1045
1045
  **token_id** | **String**| The token ID, which is the unique identifier of a token. You can retrieve the IDs of all the tokens you can use by calling [List enabled tokens](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-tokens). | [optional]
1046
1046
  **limit** | **Number**| The maximum number of objects to return. For most operations, the value range is [1, 50]. | [optional] [default to 10]
1047
- **before** | **String**| This parameter specifies an object ID as a starting point for pagination, retrieving data before the specified object relative to the current dataset. Suppose the current data is ordered as Object A, Object B, and Object C. If you set `before` to the ID of Object C (`RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGSAk`), the response will include Object B and Object A. **Notes**: - If you set both `after` and `before`, an error will occur. - If you leave both `before` and `after` empty, the first page of data is returned. - If you set it to `infinity`, the last page of data is returned. | [optional]
1048
- **after** | **String**| This parameter specifies an object ID as a starting point for pagination, retrieving data after the specified object relative to the current dataset. Suppose the current data is ordered as Object A, Object B, and Object C. If you set `after` to the ID of Object A (`RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGSAk`), the response will include Object B and Object C. **Notes**: - If you set both `after` and `before`, an error will occur. - If you leave both `before` and `after` empty, the first page of data is returned. | [optional]
1047
+ **before** | **String**| A cursor indicating the position before the current page. This value is generated by Cobo and returned in the response. If you are paginating forward from the beginning, you do not need to provide it on the first request. When paginating backward (to the previous page), you should pass the before value returned from the last response. | [optional]
1048
+ **after** | **String**| A cursor indicating the position after the current page. This value is generated by Cobo and returned in the response. You do not need to provide it on the first request. When paginating forward (to the next page), you should pass the after value returned from the last response. | [optional]
1049
1049
 
1050
1050
  ### Return type
1051
1051
 
@@ -1108,8 +1108,8 @@ Name | Type | Description | Notes
1108
1108
  **wallet_id** | **String**| The wallet ID. | [optional]
1109
1109
  **token_id** | **String**| The token ID, which is the unique identifier of a token. You can retrieve the IDs of all the tokens you can use by calling [List enabled tokens](https://www.cobo.com/developers/v2/api-references/wallets/list-enabled-tokens). | [optional]
1110
1110
  **limit** | **Number**| The maximum number of objects to return. For most operations, the value range is [1, 50]. | [optional] [default to 10]
1111
- **before** | **String**| This parameter specifies an object ID as a starting point for pagination, retrieving data before the specified object relative to the current dataset. Suppose the current data is ordered as Object A, Object B, and Object C. If you set `before` to the ID of Object C (`RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGSAk`), the response will include Object B and Object A. **Notes**: - If you set both `after` and `before`, an error will occur. - If you leave both `before` and `after` empty, the first page of data is returned. - If you set it to `infinity`, the last page of data is returned. | [optional]
1112
- **after** | **String**| This parameter specifies an object ID as a starting point for pagination, retrieving data after the specified object relative to the current dataset. Suppose the current data is ordered as Object A, Object B, and Object C. If you set `after` to the ID of Object A (`RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGSAk`), the response will include Object B and Object C. **Notes**: - If you set both `after` and `before`, an error will occur. - If you leave both `before` and `after` empty, the first page of data is returned. | [optional]
1111
+ **before** | **String**| A cursor indicating the position before the current page. This value is generated by Cobo and returned in the response. If you are paginating forward from the beginning, you do not need to provide it on the first request. When paginating backward (to the previous page), you should pass the before value returned from the last response. | [optional]
1112
+ **after** | **String**| A cursor indicating the position after the current page. This value is generated by Cobo and returned in the response. You do not need to provide it on the first request. When paginating forward (to the next page), you should pass the after value returned from the last response. | [optional]
1113
1113
 
1114
1114
  ### Return type
1115
1115
 
@@ -9,11 +9,11 @@ Name | Type | Description | Notes
9
9
  **status** | [**SwapActivityStatus**](SwapActivityStatus.md) | | [optional]
10
10
  **request_id** | **String** | The request id of the swap activity. | [optional]
11
11
  **wallet_id** | **String** | The unique identifier of the wallet. | [optional]
12
- **pay_token_id** | **String** | The token symbol to swap from. | [optional]
13
- **receive_token_id** | **String** | The token symbol to swap to. | [optional]
12
+ **pay_token_id** | **String** | The token ID to pay. | [optional]
13
+ **receive_token_id** | **String** | The token ID to receive. | [optional]
14
14
  **pay_amount** | **String** | The amount of tokens to bridge. | [optional]
15
15
  **receive_amount** | **String** | The amount of tokens to receive. | [optional]
16
- **fee_token_id** | **String** | The fee token symbol. | [optional]
16
+ **fee_token_id** | **String** | The fee token ID. | [optional]
17
17
  **fee_amount** | **String** | The amount of fee. | [optional]
18
18
  **initiator** | **String** | The initiator of the swap activity. | [optional]
19
19
  **initiator_type** | [**TransactionInitiatorType**](TransactionInitiatorType.md) | | [optional]
@@ -0,0 +1,10 @@
1
+ # CoboWaas2.SwapActivityApprovers
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **name** | **String** | The approver name of the swap activity. |
8
+ **status** | [**SwapApproversStatus**](SwapApproversStatus.md) | |
9
+
10
+
@@ -9,11 +9,11 @@ Name | Type | Description | Notes
9
9
  **status** | [**SwapActivityStatus**](SwapActivityStatus.md) | | [optional]
10
10
  **request_id** | **String** | The request id of the swap activity. | [optional]
11
11
  **wallet_id** | **String** | The unique identifier of the wallet. | [optional]
12
- **pay_token_id** | **String** | The token symbol to swap from. | [optional]
13
- **receive_token_id** | **String** | The token symbol to swap to. | [optional]
12
+ **pay_token_id** | **String** | The token ID to pay. | [optional]
13
+ **receive_token_id** | **String** | The token ID to receive. | [optional]
14
14
  **pay_amount** | **String** | The amount of tokens to bridge. | [optional]
15
15
  **receive_amount** | **String** | The amount of tokens to receive. | [optional]
16
- **fee_token_id** | **String** | The fee token symbol. | [optional]
16
+ **fee_token_id** | **String** | The fee token ID. | [optional]
17
17
  **fee_amount** | **String** | The amount of fee. | [optional]
18
18
  **initiator** | **String** | The initiator of the swap activity. | [optional]
19
19
  **initiator_type** | [**TransactionInitiatorType**](TransactionInitiatorType.md) | | [optional]
@@ -21,5 +21,6 @@ Name | Type | Description | Notes
21
21
  **created_timestamp** | **Number** | The time when the swap activity was created, in Unix timestamp format, measured in milliseconds. | [optional]
22
22
  **updated_timestamp** | **Number** | The time when the swap activity was last updated, in Unix timestamp format, measured in milliseconds. | [optional]
23
23
  **timeline** | [**[SwapActivityTimeline]**](SwapActivityTimeline.md) | | [optional]
24
+ **approvers** | [**[SwapActivityApprovers]**](SwapActivityApprovers.md) | | [optional]
24
25
 
25
26
 
@@ -0,0 +1,14 @@
1
+ # CoboWaas2.SwapApproversStatus
2
+
3
+ ## Enum
4
+
5
+
6
+ * `Pending` (value: `"Pending"`)
7
+
8
+ * `Approved` (value: `"Approved"`)
9
+
10
+ * `Rejected` (value: `"Rejected"`)
11
+
12
+ * `unknown_default_open_api` (value: `"unknown_default_open_api"`)
13
+
14
+
package/docs/SwapQuote.md CHANGED
@@ -5,8 +5,11 @@
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **quote_id** | **String** | The unique id of quote. |
8
+ **pay_token_id** | **String** | The token ID to pay. |
8
9
  **pay_amount** | **String** | The amount of tokens to pay. |
10
+ **receive_token_id** | **String** | The token ID to receive. |
9
11
  **receive_amount** | **String** | The amount of tokens to receive. |
12
+ **fee_token_id** | **String** | The fee token ID. |
10
13
  **fee_amount** | **String** | The amount of tokens to pay for fee. |
11
14
  **min_receive_amount** | **String** | The minimum amount of tokens to receive if the pay amount is specified. | [optional]
12
15
  **max_pay_amount** | **String** | The maximum amount of tokens to pay if the receive amount is specified. | [optional]
package/docs/SwapToken.md CHANGED
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
8
8
  **chain_id** | **String** | The chain id. |
9
9
  **asset_id** | **String** | The asset id. |
10
10
  **token_address** | **String** | The token address. | [optional]
11
- **min_amount** | **String** | The minimum amount to swap. | [optional]
12
- **max_amount** | **String** | The maximum amount to swap. | [optional]
11
+ **min_amount** | **String** | The minimum amount. | [optional]
12
+ **max_amount** | **String** | The maximum amount. | [optional]
13
13
 
14
14
 
@@ -0,0 +1,14 @@
1
+ # CoboWaas2.TSSBaseRequestEventData
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **data_type** | [**TSSEventDataType**](TSSEventDataType.md) | |
8
+ **request_id** | **String** | The request ID. | [optional]
9
+ **request_type** | [**TSSRequestTypeEenum**](TSSRequestTypeEenum.md) | | [optional]
10
+ **request_status** | [**TSSStatus**](TSSStatus.md) | | [optional]
11
+ **extra_info** | **String** | The extra info. | [optional]
12
+ **failed_reason** | **String** | The failed reason. | [optional]
13
+
14
+
@@ -0,0 +1,12 @@
1
+ # CoboWaas2.TSSCallbackActionType
2
+
3
+ ## Enum
4
+
5
+
6
+ * `APPROVE` (value: `"APPROVE"`)
7
+
8
+ * `REJECT` (value: `"REJECT"`)
9
+
10
+ * `unknown_default_open_api` (value: `"unknown_default_open_api"`)
11
+
12
+
@@ -0,0 +1,12 @@
1
+ # CoboWaas2.TSSCallbackRequest
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **request_id** | **String** | he unique ID of the callback request. | [optional]
8
+ **request_type** | [**TSSCallbackRequestType**](TSSCallbackRequestType.md) | | [optional]
9
+ **request_detail** | **String** | Details specific to the request type. The structure varies depending on the request type. The content is a JSON-serialized string. | [optional]
10
+ **extra_info** | **String** | Additional contextual information. The structure varies depending on the request type. The content is a JSON-serialized string. | [optional]
11
+
12
+
@@ -0,0 +1,18 @@
1
+ # CoboWaas2.TSSCallbackRequestType
2
+
3
+ ## Enum
4
+
5
+
6
+ * `PING` (value: `0`)
7
+
8
+ * `KEYGEN` (value: `1`)
9
+
10
+ * `KEYSIGN` (value: `2`)
11
+
12
+ * `KEYRESHARE` (value: `3`)
13
+
14
+ * `KEYSHARESIGN` (value: `5`)
15
+
16
+ * `unknown_default_open_api` (value: `11184809`)
17
+
18
+
@@ -0,0 +1,12 @@
1
+ # CoboWaas2.TSSCallbackResponse
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **request_id** | **String** | The unique ID of the callback request. | [optional]
8
+ **status** | **Number** | The response status code. 0 indicates success. Any other value indicates that an error occurred while processing the request in the callback server. | [optional]
9
+ **action** | [**TSSCallbackActionType**](TSSCallbackActionType.md) | | [optional]
10
+ **error** | **String** | The error message. - When status is not 0, Contains internal error messages from the callback server. - When status is 0 and action is REJECT, Contains the specific reason for the rejection. | [optional]
11
+
12
+
@@ -0,0 +1,12 @@
1
+ # CoboWaas2.TSSCurve
2
+
3
+ ## Enum
4
+
5
+
6
+ * `SECP256K1` (value: `0`)
7
+
8
+ * `ED25519` (value: `2`)
9
+
10
+ * `unknown_default_open_api` (value: `11184809`)
11
+
12
+
@@ -0,0 +1,12 @@
1
+ # CoboWaas2.TSSCurveType
2
+
3
+ ## Enum
4
+
5
+
6
+ * `secp256k1` (value: `"secp256k1"`)
7
+
8
+ * `ed25519` (value: `"ed25519"`)
9
+
10
+ * `unknown_default_open_api` (value: `"unknown_default_open_api"`)
11
+
12
+
@@ -0,0 +1,13 @@
1
+ # CoboWaas2.TSSEvent
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **event_id** | **String** | The event ID. | [optional]
8
+ **created_timestamp** | **Number** | The time when the event occurred, in Unix timestamp format, measured in milliseconds. | [optional]
9
+ **node_id** | **String** | The event publisher's TSS Node ID. | [optional]
10
+ **event_type** | [**TSSEventType**](TSSEventType.md) | |
11
+ **data** | [**TSSEventData**](TSSEventData.md) | | [optional]
12
+
13
+
@@ -0,0 +1,16 @@
1
+ # CoboWaas2.TSSEventData
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **data_type** | [**TSSEventDataType**](TSSEventDataType.md) | |
8
+ **request_id** | **String** | The request ID. | [optional]
9
+ **request_type** | [**TSSRequestTypeEenum**](TSSRequestTypeEenum.md) | | [optional]
10
+ **request_status** | [**TSSStatus**](TSSStatus.md) | | [optional]
11
+ **extra_info** | **String** | The extra info. | [optional]
12
+ **failed_reason** | **String** | The failed reason. | [optional]
13
+ **request_detail** | [**TSSKeyShareSignRequest**](TSSKeyShareSignRequest.md) | | [optional]
14
+ **result** | [**TSSKeyShareSignSignatures**](TSSKeyShareSignSignatures.md) | | [optional]
15
+
16
+
@@ -0,0 +1,16 @@
1
+ # CoboWaas2.TSSEventDataType
2
+
3
+ ## Enum
4
+
5
+
6
+ * `KeyGen` (value: `"KeyGen"`)
7
+
8
+ * `KeyReshare` (value: `"KeyReshare"`)
9
+
10
+ * `KeySign` (value: `"KeySign"`)
11
+
12
+ * `KeyShareSign` (value: `"KeyShareSign"`)
13
+
14
+ * `unknown_default_open_api` (value: `"unknown_default_open_api"`)
15
+
16
+
@@ -0,0 +1,42 @@
1
+ # CoboWaas2.TSSEventType
2
+
3
+ ## Enum
4
+
5
+
6
+ * `ping` (value: `"ping"`)
7
+
8
+ * `request.keygen.created` (value: `"request.keygen.created"`)
9
+
10
+ * `request.keygen.updated` (value: `"request.keygen.updated"`)
11
+
12
+ * `request.keygen.failed` (value: `"request.keygen.failed"`)
13
+
14
+ * `request.keygen.succeeded` (value: `"request.keygen.succeeded"`)
15
+
16
+ * `request.keyreshare.created` (value: `"request.keyreshare.created"`)
17
+
18
+ * `request.keyreshare.updated` (value: `"request.keyreshare.updated"`)
19
+
20
+ * `request.keyreshare.failed` (value: `"request.keyreshare.failed"`)
21
+
22
+ * `request.keyreshare.succeeded` (value: `"request.keyreshare.succeeded"`)
23
+
24
+ * `request.keysign.created` (value: `"request.keysign.created"`)
25
+
26
+ * `request.keysign.updated` (value: `"request.keysign.updated"`)
27
+
28
+ * `request.keysign.failed` (value: `"request.keysign.failed"`)
29
+
30
+ * `request.keysign.succeeded` (value: `"request.keysign.succeeded"`)
31
+
32
+ * `request.keysharesign.created` (value: `"request.keysharesign.created"`)
33
+
34
+ * `request.keysharesign.updated` (value: `"request.keysharesign.updated"`)
35
+
36
+ * `request.keysharesign.failed` (value: `"request.keysharesign.failed"`)
37
+
38
+ * `request.keysharesign.succeeded` (value: `"request.keysharesign.succeeded"`)
39
+
40
+ * `unknown_default_open_api` (value: `"unknown_default_open_api"`)
41
+
42
+
@@ -0,0 +1,19 @@
1
+ # CoboWaas2.TSSGroup
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **id** | **String** | The TSS key share group ID. | [optional]
8
+ **canonical_group_id** | **String** | The canonical group ID. | [optional]
9
+ **protocol_group_id** | **String** | The protocol group ID. | [optional]
10
+ **protocol_type** | **String** | The protocol type. | [optional]
11
+ **created_timestamp** | **Number** | The group creation timestamp, in Unix timestamp format, measured in milliseconds. | [optional]
12
+ **type** | [**TSSGroupType**](TSSGroupType.md) | | [optional]
13
+ **root_extended_public_key** | **String** | The root extended public key. | [optional]
14
+ **chaincode** | **String** | The chaincode. | [optional]
15
+ **curve** | [**TSSCurveType**](TSSCurveType.md) | | [optional]
16
+ **threshold** | **Number** | The threshold. | [optional]
17
+ **participants** | [**[TSSParticipant]**](TSSParticipant.md) | | [optional]
18
+
19
+
@@ -0,0 +1,12 @@
1
+ # CoboWaas2.TSSGroupType
2
+
3
+ ## Enum
4
+
5
+
6
+ * `ECDSA` (value: `1`)
7
+
8
+ * `EdDSA` (value: `2`)
9
+
10
+ * `unknown_default_open_api` (value: `11184809`)
11
+
12
+
@@ -0,0 +1,16 @@
1
+ # CoboWaas2.TSSKeyGenEventData
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **data_type** | [**TSSEventDataType**](TSSEventDataType.md) | |
8
+ **request_id** | **String** | The request ID. | [optional]
9
+ **request_type** | [**TSSRequestTypeEenum**](TSSRequestTypeEenum.md) | | [optional]
10
+ **request_status** | [**TSSStatus**](TSSStatus.md) | | [optional]
11
+ **extra_info** | **String** | The extra info. | [optional]
12
+ **failed_reason** | **String** | The failed reason. | [optional]
13
+ **request_detail** | [**TSSKeyGenRequest**](TSSKeyGenRequest.md) | | [optional]
14
+ **result** | [**TSSGroup**](TSSGroup.md) | | [optional]
15
+
16
+
@@ -0,0 +1,13 @@
1
+ # CoboWaas2.TSSKeyGenExtra
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **org** | [**OrgInfo**](OrgInfo.md) | | [optional]
8
+ **project** | [**MPCProject**](MPCProject.md) | | [optional]
9
+ **vault** | [**MPCVault**](MPCVault.md) | | [optional]
10
+ **target_key_share_holder_group** | [**KeyShareHolderGroup**](KeyShareHolderGroup.md) | | [optional]
11
+ **tss_request** | [**TSSRequest**](TSSRequest.md) | | [optional]
12
+
13
+
@@ -0,0 +1,13 @@
1
+ # CoboWaas2.TSSKeyGenRequest
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **threshold** | **Number** | The number of key share holders required to approve each operation in TSS key share group. | [optional]
8
+ **node_ids** | **[String]** | | [optional]
9
+ **curve** | [**TSSCurve**](TSSCurve.md) | | [optional]
10
+ **task_id** | **String** | The task ID. | [optional]
11
+ **biz_task_id** | **String** | The business task ID. This field contains the TSS request ID. | [optional]
12
+
13
+
@@ -0,0 +1,16 @@
1
+ # CoboWaas2.TSSKeyReshareEventData
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **data_type** | [**TSSEventDataType**](TSSEventDataType.md) | |
8
+ **request_id** | **String** | The request ID. | [optional]
9
+ **request_type** | [**TSSRequestTypeEenum**](TSSRequestTypeEenum.md) | | [optional]
10
+ **request_status** | [**TSSStatus**](TSSStatus.md) | | [optional]
11
+ **extra_info** | **String** | The extra info. | [optional]
12
+ **failed_reason** | **String** | The failed reason. | [optional]
13
+ **request_detail** | [**TSSKeyReshareRequest**](TSSKeyReshareRequest.md) | | [optional]
14
+ **result** | [**TSSGroup**](TSSGroup.md) | | [optional]
15
+
16
+
@@ -0,0 +1,14 @@
1
+ # CoboWaas2.TSSKeyReshareExtra
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **org** | [**OrgInfo**](OrgInfo.md) | | [optional]
8
+ **project** | [**MPCProject**](MPCProject.md) | | [optional]
9
+ **vault** | [**MPCVault**](MPCVault.md) | | [optional]
10
+ **source_key_share_holder_group** | [**KeyShareHolderGroup**](KeyShareHolderGroup.md) | | [optional]
11
+ **target_key_share_holder_group** | [**KeyShareHolderGroup**](KeyShareHolderGroup.md) | | [optional]
12
+ **tss_request** | [**TSSRequest**](TSSRequest.md) | | [optional]
13
+
14
+
@@ -0,0 +1,17 @@
1
+ # CoboWaas2.TSSKeyReshareRequest
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **old_group_id** | **String** | The old TSS key share group ID. | [optional]
8
+ **root_pub_key** | **String** | The The old TSS key share group's root extended public key. | [optional]
9
+ **curve** | [**TSSCurve**](TSSCurve.md) | | [optional]
10
+ **used_node_ids** | **[String]** | | [optional]
11
+ **old_threshold** | **Number** | The number of key share holders required to approve each operation in the old TSS key share group. | [optional]
12
+ **new_threshold** | **Number** | The number of key share holders required to approve each operation in the new TSS key share group. | [optional]
13
+ **new_node_ids** | **[String]** | | [optional]
14
+ **task_id** | **String** | The task ID. | [optional]
15
+ **biz_task_id** | **String** | The business task ID. This field contains the TSS request ID. | [optional]
16
+
17
+
@@ -0,0 +1,10 @@
1
+ # CoboWaas2.TSSKeyShareSignDetail
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **group_id** | **String** | The TSS key share group ID. | [optional]
8
+ **message** | **String** | The message to sign by key share. | [optional]
9
+
10
+
@@ -0,0 +1,16 @@
1
+ # CoboWaas2.TSSKeyShareSignEventData
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **data_type** | [**TSSEventDataType**](TSSEventDataType.md) | |
8
+ **request_id** | **String** | The request ID. | [optional]
9
+ **request_type** | [**TSSRequestTypeEenum**](TSSRequestTypeEenum.md) | | [optional]
10
+ **request_status** | [**TSSStatus**](TSSStatus.md) | | [optional]
11
+ **extra_info** | **String** | The extra info. | [optional]
12
+ **failed_reason** | **String** | The failed reason. | [optional]
13
+ **request_detail** | [**TSSKeyShareSignRequest**](TSSKeyShareSignRequest.md) | | [optional]
14
+ **result** | [**TSSKeyShareSignSignatures**](TSSKeyShareSignSignatures.md) | | [optional]
15
+
16
+
@@ -0,0 +1,13 @@
1
+ # CoboWaas2.TSSKeyShareSignExtra
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **org** | [**OrgInfo**](OrgInfo.md) | | [optional]
8
+ **project** | [**MPCProject**](MPCProject.md) | | [optional]
9
+ **vault** | [**MPCVault**](MPCVault.md) | | [optional]
10
+ **wallet** | [**MPCWalletInfo**](MPCWalletInfo.md) | | [optional]
11
+ **validity_key_share_holder_groups** | [**[KeyShareHolderGroup]**](KeyShareHolderGroup.md) | | [optional]
12
+
13
+
@@ -0,0 +1,12 @@
1
+ # CoboWaas2.TSSKeyShareSignRequest
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **node_id** | **String** | The node ID of the key share holder. | [optional]
8
+ **task_id** | **String** | The task ID. | [optional]
9
+ **details** | [**[TSSKeyShareSignDetail]**](TSSKeyShareSignDetail.md) | | [optional]
10
+ **biz_task_id** | **String** | The business task ID. This field contains the key share sign request ID. | [optional]
11
+
12
+
@@ -0,0 +1,12 @@
1
+ # CoboWaas2.TSSKeyShareSignSignature
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **group_id** | **String** | The TSS key share group ID. | [optional]
8
+ **signed_msg** | **String** | The hexadecimal encoded signed message. | [optional]
9
+ **msg_hash** | **String** | The message hash. | [optional]
10
+ **signature** | **String** | The signature. | [optional]
11
+
12
+
@@ -0,0 +1,9 @@
1
+ # CoboWaas2.TSSKeyShareSignSignatures
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **signatures** | [**[TSSKeyShareSignSignature]**](TSSKeyShareSignSignature.md) | | [optional]
8
+
9
+