@cobo/cobo-waas2 1.25.0 → 1.27.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 (211) hide show
  1. package/README.md +84 -8
  2. package/dist/ApiClient.js +1 -1
  3. package/dist/api/AutoSweepApi.js +2 -2
  4. package/dist/api/ComplianceApi.js +2 -2
  5. package/dist/api/DevelopersWebhooksApi.js +2 -2
  6. package/dist/api/FeeStationApi.js +6 -6
  7. package/dist/api/PaymentApi.js +1322 -182
  8. package/dist/api/TokenizationApi.js +122 -4
  9. package/dist/api/TransactionsApi.js +4 -4
  10. package/dist/index.js +371 -21
  11. package/dist/model/AutoFuelType.js +5 -0
  12. package/dist/model/BankAccountStatus.js +66 -0
  13. package/dist/model/ContractCallDestination.js +38 -10
  14. package/dist/model/ContractCallDestinationType.js +5 -0
  15. package/dist/model/Counterparty.js +195 -0
  16. package/dist/model/CounterpartyDetail.js +228 -0
  17. package/dist/model/CounterpartyType.js +61 -0
  18. package/dist/model/CounterpartyWalletAddressDetail.js +192 -0
  19. package/dist/model/CreateCounterpartyRequest.js +193 -0
  20. package/dist/model/CreateCounterpartyWalletAddressRequest.js +140 -0
  21. package/dist/model/CreateCryptoAddressRequest.js +1 -1
  22. package/dist/model/CreateDestinationBankAccount.js +257 -0
  23. package/dist/model/CreateDestinationBankAccountRequest.js +272 -0
  24. package/dist/model/CreateDestinationRequest.js +235 -0
  25. package/dist/model/CreateDestinationWalletAddressRequest.js +140 -0
  26. package/dist/model/CreateKeyShareHolder.js +1 -1
  27. package/dist/model/CreateMerchantRequest.js +1 -1
  28. package/dist/model/CreatePaymentOrderRequest.js +8 -8
  29. package/dist/model/CreateRefundLinkRequest.js +129 -0
  30. package/dist/model/CreateSettlement.js +13 -0
  31. package/dist/model/{ReceivedAmountPerAddress.js → CreateWalletAddress.js} +31 -32
  32. package/dist/model/DeleteCounterparty200Response.js +110 -0
  33. package/dist/model/DeleteCounterpartyWalletAddress200Response.js +110 -0
  34. package/dist/model/DeleteDestination200Response.js +110 -0
  35. package/dist/model/DeleteDestinationBankAccount200Response.js +110 -0
  36. package/dist/model/DeleteDestinationWalletAddress200Response.js +110 -0
  37. package/dist/model/Destination.js +208 -0
  38. package/dist/model/DestinationBankAccount.js +301 -0
  39. package/dist/model/DestinationBankAccountDetail.js +394 -0
  40. package/dist/model/DestinationDetail.js +272 -0
  41. package/dist/model/DestinationType.js +61 -0
  42. package/dist/model/DestinationWalletAddressDetail.js +205 -0
  43. package/dist/model/EnableDestinationWhitelistRequest.js +106 -0
  44. package/dist/model/EvmContractCallDestination.js +2 -2
  45. package/dist/model/ExchangeRate.js +140 -0
  46. package/dist/model/FeeStationCheckFeeStationUsage.js +28 -10
  47. package/dist/model/FeeStationCheckFeeStationUsageResponse.js +33 -20
  48. package/dist/model/FeeStationSponsorTransactionDescription.js +125 -0
  49. package/dist/model/IntermediaryBankInfo.js +140 -0
  50. package/dist/model/Link.js +4 -4
  51. package/dist/model/LinkDisplayInfo.js +2 -2
  52. package/dist/model/ListCounterparties200Response.js +123 -0
  53. package/dist/model/ListCounterpartyWalletAddress200Response.js +123 -0
  54. package/dist/model/ListDestinationBankAccounts200Response.js +123 -0
  55. package/dist/model/ListDestinationWalletAddresses200Response.js +123 -0
  56. package/dist/model/ListDestinations200Response.js +123 -0
  57. package/dist/model/MerchantBalance.js +1 -1
  58. package/dist/model/Order.js +1 -1
  59. package/dist/model/OrderLinkBusinessInfo.js +11 -11
  60. package/dist/model/OrderLinkBusinessInfoCustomExchangeRatesInner.js +4 -4
  61. package/dist/model/PaymentOrderEventData.js +2 -2
  62. package/dist/model/PaymentTransaction.js +32 -0
  63. package/dist/model/PaymentTransactionEventData.js +2 -2
  64. package/dist/model/PspBalance.js +1 -1
  65. package/dist/model/QueryDestinationWhitelistEnabled200Response.js +106 -0
  66. package/dist/model/RefundLinkBusinessInfo.js +162 -0
  67. package/dist/model/RefundStatus.js +10 -0
  68. package/dist/model/SettlementDetail.js +13 -0
  69. package/dist/model/SubmitKytScreeningsReviewBody.js +1 -1
  70. package/dist/model/SwapActivityTimeline.js +1 -1
  71. package/dist/model/SwapQuote.js +18 -18
  72. package/dist/model/TokenizationERC20TokenParams.js +5 -5
  73. package/dist/model/{TokenizationTokenPermissionParams.js → TokenizationERC20TokenPermissionParams.js} +23 -23
  74. package/dist/model/TokenizationERC20WrappedTokenParams.js +177 -0
  75. package/dist/model/TokenizationERC20WrappedTokenPermissionParams.js +166 -0
  76. package/dist/model/TokenizationEstimateFeeRequestOperationParams.js +38 -11
  77. package/dist/model/TokenizationIssueTokenParamsTokenParams.js +72 -10
  78. package/dist/model/TokenizationListPermissionsResponse.js +146 -0
  79. package/dist/model/TokenizationListPermissionsResponseDataInner.js +126 -0
  80. package/dist/model/TokenizationOperationType.js +5 -0
  81. package/dist/model/TokenizationPermissionAction.js +66 -0
  82. package/dist/model/TokenizationSOLWrappedTokenParams.js +177 -0
  83. package/dist/model/TokenizationSolWrappedTokenPermissionParams.js +127 -0
  84. package/dist/model/TokenizationTokenDetailInfo.js +51 -5
  85. package/dist/model/TokenizationTokenInfo.js +26 -4
  86. package/dist/model/TokenizationTokenPermissionType.js +5 -0
  87. package/dist/model/TokenizationTokenStandard.js +10 -0
  88. package/dist/model/{TokenizationTokenPermissionsResponse.js → TokenizationUpdateAddressPermissions.js} +51 -53
  89. package/dist/model/TokenizationUpdatePermissionsEstimateFeeParams.js +198 -0
  90. package/dist/model/TokenizationUpdatePermissionsParams.js +145 -0
  91. package/dist/model/TokenizationUpdatePermissionsRequest.js +213 -0
  92. package/dist/model/Transaction.js +1 -1
  93. package/dist/model/TransactionCoboCategory.js +35 -0
  94. package/dist/model/TransactionDestination.js +38 -10
  95. package/dist/model/TransactionDestinationType.js +5 -0
  96. package/dist/model/TransactionDetail.js +2 -2
  97. package/dist/model/TransactionDetails.js +2 -2
  98. package/dist/model/TransactionTronContractDestination.js +150 -0
  99. package/dist/model/TransactionWebhookEventData.js +2 -2
  100. package/dist/model/TronContractCallDestination.js +150 -0
  101. package/dist/model/UpdateCounterpartyByIdRequest.js +160 -0
  102. package/dist/model/UpdateDestinationBankAccount.js +257 -0
  103. package/dist/model/UpdateDestinationByIdRequest.js +173 -0
  104. package/dist/model/UpdateMerchantByIdRequest.js +1 -1
  105. package/dist/model/WalletAddress.js +151 -0
  106. package/dist/model/WebhookEventData.js +2 -2
  107. package/docs/AutoFuelType.md +2 -0
  108. package/docs/AutoSweepApi.md +2 -2
  109. package/docs/BankAccountStatus.md +14 -0
  110. package/docs/ComplianceApi.md +1 -1
  111. package/docs/ContractCallDestination.md +2 -2
  112. package/docs/ContractCallDestinationType.md +2 -0
  113. package/docs/Counterparty.md +16 -0
  114. package/docs/CounterpartyDetail.md +17 -0
  115. package/docs/CounterpartyType.md +12 -0
  116. package/docs/CounterpartyWalletAddressDetail.md +15 -0
  117. package/docs/CreateCounterpartyRequest.md +14 -0
  118. package/docs/CreateCounterpartyWalletAddressRequest.md +11 -0
  119. package/docs/CreateCryptoAddressRequest.md +1 -1
  120. package/docs/CreateDestinationBankAccount.md +19 -0
  121. package/docs/CreateDestinationBankAccountRequest.md +20 -0
  122. package/docs/CreateDestinationRequest.md +16 -0
  123. package/docs/CreateDestinationWalletAddressRequest.md +11 -0
  124. package/docs/CreateKeyShareHolder.md +1 -1
  125. package/docs/CreateMerchantRequest.md +1 -1
  126. package/docs/CreatePaymentOrderRequest.md +5 -5
  127. package/docs/CreateRefundLinkRequest.md +10 -0
  128. package/docs/CreateSettlement.md +1 -0
  129. package/docs/CreateWalletAddress.md +10 -0
  130. package/docs/DeleteCounterparty200Response.md +9 -0
  131. package/docs/DeleteCounterpartyWalletAddress200Response.md +9 -0
  132. package/docs/DeleteDestination200Response.md +9 -0
  133. package/docs/DeleteDestinationBankAccount200Response.md +9 -0
  134. package/docs/DeleteDestinationWalletAddress200Response.md +9 -0
  135. package/docs/Destination.md +17 -0
  136. package/docs/DestinationBankAccount.md +23 -0
  137. package/docs/DestinationBankAccountDetail.md +30 -0
  138. package/docs/DestinationDetail.md +19 -0
  139. package/docs/DestinationType.md +12 -0
  140. package/docs/DestinationWalletAddressDetail.md +16 -0
  141. package/docs/DevelopersWebhooksApi.md +1 -1
  142. package/docs/EnableDestinationWhitelistRequest.md +9 -0
  143. package/docs/EvmContractCallDestination.md +1 -1
  144. package/docs/ExchangeRate.md +11 -0
  145. package/docs/FeeStationApi.md +4 -4
  146. package/docs/FeeStationCheckFeeStationUsage.md +4 -2
  147. package/docs/FeeStationCheckFeeStationUsageResponse.md +4 -3
  148. package/docs/FeeStationSponsorTransactionDescription.md +10 -0
  149. package/docs/IntermediaryBankInfo.md +11 -0
  150. package/docs/Link.md +2 -2
  151. package/docs/LinkDisplayInfo.md +2 -2
  152. package/docs/ListCounterparties200Response.md +10 -0
  153. package/docs/ListCounterpartyWalletAddress200Response.md +10 -0
  154. package/docs/ListDestinationBankAccounts200Response.md +10 -0
  155. package/docs/ListDestinationWalletAddresses200Response.md +10 -0
  156. package/docs/ListDestinations200Response.md +10 -0
  157. package/docs/MerchantBalance.md +1 -1
  158. package/docs/Order.md +1 -1
  159. package/docs/OrderLinkBusinessInfo.md +7 -7
  160. package/docs/OrderLinkBusinessInfoCustomExchangeRatesInner.md +2 -2
  161. package/docs/PaymentApi.md +1492 -188
  162. package/docs/PaymentOrderEventData.md +1 -1
  163. package/docs/PaymentTransaction.md +2 -0
  164. package/docs/PaymentTransactionEventData.md +1 -1
  165. package/docs/PspBalance.md +1 -1
  166. package/docs/QueryDestinationWhitelistEnabled200Response.md +9 -0
  167. package/docs/RefundLinkBusinessInfo.md +13 -0
  168. package/docs/RefundStatus.md +4 -0
  169. package/docs/SettlementDetail.md +1 -0
  170. package/docs/SwapActivityTimeline.md +1 -1
  171. package/docs/SwapQuote.md +10 -10
  172. package/docs/TokenizationApi.md +120 -2
  173. package/docs/TokenizationERC20TokenParams.md +1 -1
  174. package/docs/{TokenizationTokenPermissionParams.md → TokenizationERC20TokenPermissionParams.md} +1 -1
  175. package/docs/TokenizationERC20WrappedTokenParams.md +14 -0
  176. package/docs/TokenizationERC20WrappedTokenPermissionParams.md +15 -0
  177. package/docs/TokenizationEstimateFeeRequestOperationParams.md +1 -1
  178. package/docs/TokenizationIssueTokenParamsTokenParams.md +2 -1
  179. package/docs/TokenizationListPermissionsResponse.md +10 -0
  180. package/docs/TokenizationListPermissionsResponseDataInner.md +10 -0
  181. package/docs/TokenizationOperationType.md +2 -0
  182. package/docs/TokenizationPermissionAction.md +14 -0
  183. package/docs/TokenizationSOLWrappedTokenParams.md +14 -0
  184. package/docs/TokenizationSolWrappedTokenPermissionParams.md +12 -0
  185. package/docs/TokenizationTokenDetailInfo.md +3 -0
  186. package/docs/TokenizationTokenInfo.md +2 -0
  187. package/docs/TokenizationTokenPermissionType.md +2 -0
  188. package/docs/TokenizationTokenStandard.md +4 -0
  189. package/docs/TokenizationUpdateAddressPermissions.md +11 -0
  190. package/docs/TokenizationUpdatePermissionsEstimateFeeParams.md +13 -0
  191. package/docs/TokenizationUpdatePermissionsParams.md +10 -0
  192. package/docs/TokenizationUpdatePermissionsRequest.md +13 -0
  193. package/docs/Transaction.md +1 -1
  194. package/docs/TransactionCoboCategory.md +14 -0
  195. package/docs/TransactionDestination.md +2 -2
  196. package/docs/TransactionDestinationType.md +2 -0
  197. package/docs/TransactionDetail.md +1 -1
  198. package/docs/TransactionDetails.md +1 -1
  199. package/docs/TransactionTronContractDestination.md +12 -0
  200. package/docs/TransactionWebhookEventData.md +1 -1
  201. package/docs/TransactionsApi.md +2 -2
  202. package/docs/TronContractCallDestination.md +12 -0
  203. package/docs/UpdateCounterpartyByIdRequest.md +13 -0
  204. package/docs/UpdateDestinationBankAccount.md +19 -0
  205. package/docs/UpdateDestinationByIdRequest.md +14 -0
  206. package/docs/UpdateMerchantByIdRequest.md +1 -1
  207. package/docs/WalletAddress.md +12 -0
  208. package/docs/WebhookEventData.md +2 -2
  209. package/package.json +1 -1
  210. package/docs/ReceivedAmountPerAddress.md +0 -10
  211. package/docs/TokenizationTokenPermissionsResponse.md +0 -10
package/README.md CHANGED
@@ -15,7 +15,7 @@ For more information about the WaaS 2.0 API, see [Introduction to WaaS 2.0](http
15
15
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
16
16
 
17
17
  - API version: v2
18
- - Package version: 1.25.0
18
+ - Package version: 1.27.0
19
19
  - Generator version: 7.6.0
20
20
  - Build package: org.openapitools.codegen.languages.JavascriptClientCodegen
21
21
  For more information, please visit [https://www.cobo.com/waas](https://www.cobo.com/waas)
@@ -78,7 +78,7 @@ Class | Method | HTTP request | Description
78
78
  *CoboWaas2.AppWorkflowsApi* | [**listApprovalRequests**](docs/AppWorkflowsApi.md#listApprovalRequests) | **GET** /app/workflows/approval_requests | List approval requests
79
79
  *CoboWaas2.AppWorkflowsApi* | [**revokeApprovalRequest**](docs/AppWorkflowsApi.md#revokeApprovalRequest) | **POST** /app/workflows/approval_requests/{approval_id}/revoke | Revoke approval request
80
80
  *CoboWaas2.AutoSweepApi* | [**createAutoSweepTask**](docs/AutoSweepApi.md#createAutoSweepTask) | **POST** /auto_sweep/tasks | Create auto-sweep task
81
- *CoboWaas2.AutoSweepApi* | [**createWalletSweepToAddresses**](docs/AutoSweepApi.md#createWalletSweepToAddresses) | **POST** /auto_sweep/sweep_to_addresses | create sweep-to address
81
+ *CoboWaas2.AutoSweepApi* | [**createWalletSweepToAddresses**](docs/AutoSweepApi.md#createWalletSweepToAddresses) | **POST** /auto_sweep/sweep_to_addresses | Create sweep-to address
82
82
  *CoboWaas2.AutoSweepApi* | [**getAutoSweepTaskById**](docs/AutoSweepApi.md#getAutoSweepTaskById) | **GET** /auto_sweep/tasks/{task_id} | Get auto-sweep task details
83
83
  *CoboWaas2.AutoSweepApi* | [**listAutoSweepTask**](docs/AutoSweepApi.md#listAutoSweepTask) | **GET** /auto_sweep/tasks | List auto-sweep tasks
84
84
  *CoboWaas2.AutoSweepApi* | [**listWalletSweepToAddresses**](docs/AutoSweepApi.md#listWalletSweepToAddresses) | **GET** /auto_sweep/sweep_to_addresses | List sweep-to addresses
@@ -103,7 +103,7 @@ Class | Method | HTTP request | Description
103
103
  *CoboWaas2.DevelopersWebhooksApi* | [**triggerTestWebhookEvent**](docs/DevelopersWebhooksApi.md#triggerTestWebhookEvent) | **POST** /webhooks/events/trigger | Trigger test event
104
104
  *CoboWaas2.DevelopersWebhooksApi* | [**updateWebhookEndpointById**](docs/DevelopersWebhooksApi.md#updateWebhookEndpointById) | **PUT** /webhooks/endpoints/{endpoint_id} | Update webhook endpoint
105
105
  *CoboWaas2.FeeStationApi* | [**checkFeeStationUsage**](docs/FeeStationApi.md#checkFeeStationUsage) | **POST** /fee_station/check_fee_station_usage | Check Fee Station usage
106
- *CoboWaas2.FeeStationApi* | [**estimateFeeStationFee**](docs/FeeStationApi.md#estimateFeeStationFee) | **POST** /fee_station/transactions/estimate_fee | Estimate fee for Fee Station transaction
106
+ *CoboWaas2.FeeStationApi* | [**estimateFeeStationFee**](docs/FeeStationApi.md#estimateFeeStationFee) | **POST** /fee_station/transactions/estimate_fee | Estimate transaction fee
107
107
  *CoboWaas2.FeeStationApi* | [**getFeeStationTransactionById**](docs/FeeStationApi.md#getFeeStationTransactionById) | **GET** /fee_station/transactions/{transaction_id} | Get Fee Station transaction information
108
108
  *CoboWaas2.FeeStationApi* | [**listFeeStationAddresses**](docs/FeeStationApi.md#listFeeStationAddresses) | **GET** /fee_station/addresses | List Fee Station addresses
109
109
  *CoboWaas2.FeeStationApi* | [**listFeeStationTransactions**](docs/FeeStationApi.md#listFeeStationTransactions) | **GET** /fee_station/transactions | List all Fee Station transactions
@@ -113,26 +113,46 @@ Class | Method | HTTP request | Description
113
113
  *CoboWaas2.OAuthApi* | [**refreshPermissionToken**](docs/OAuthApi.md#refreshPermissionToken) | **POST** /oauth/permission_token/refresh | Refresh Access Token
114
114
  *CoboWaas2.OAuthApi* | [**refreshToken**](docs/OAuthApi.md#refreshToken) | **POST** /oauth/token | Refresh Org Access Token
115
115
  *CoboWaas2.OrganizationsApi* | [**getOrgInfo**](docs/OrganizationsApi.md#getOrgInfo) | **GET** /organizations/info | Get organization information
116
+ *CoboWaas2.PaymentApi* | [**batchGetExchangeRates**](docs/PaymentApi.md#batchGetExchangeRates) | **GET** /payments/exchange_rates | Batch get exchange rates
116
117
  *CoboWaas2.PaymentApi* | [**cancelRefundById**](docs/PaymentApi.md#cancelRefundById) | **PUT** /payments/refunds/{refund_id}/cancel | Cancel refund order
118
+ *CoboWaas2.PaymentApi* | [**createCounterparty**](docs/PaymentApi.md#createCounterparty) | **POST** /payments/counterparty | Create counterparty
119
+ *CoboWaas2.PaymentApi* | [**createCounterpartyWalletAddress**](docs/PaymentApi.md#createCounterpartyWalletAddress) | **POST** /payments/counterparty/wallet_address | Create counterparty wallet address
117
120
  *CoboWaas2.PaymentApi* | [**createCryptoAddress**](docs/PaymentApi.md#createCryptoAddress) | **POST** /payments/crypto_addresses | Create crypto address
121
+ *CoboWaas2.PaymentApi* | [**createDestination**](docs/PaymentApi.md#createDestination) | **POST** /payments/destination | Create destination
122
+ *CoboWaas2.PaymentApi* | [**createDestinationBankAccount**](docs/PaymentApi.md#createDestinationBankAccount) | **POST** /payments/destination/bank_account | Create destination bank account
123
+ *CoboWaas2.PaymentApi* | [**createDestinationWalletAddress**](docs/PaymentApi.md#createDestinationWalletAddress) | **POST** /payments/destination/wallet_address | Create destination wallet address
118
124
  *CoboWaas2.PaymentApi* | [**createForcedSweepRequest**](docs/PaymentApi.md#createForcedSweepRequest) | **POST** /payments/force_sweep_requests | Create forced sweep
119
125
  *CoboWaas2.PaymentApi* | [**createMerchant**](docs/PaymentApi.md#createMerchant) | **POST** /payments/merchants | Create merchant
120
126
  *CoboWaas2.PaymentApi* | [**createOrderLink**](docs/PaymentApi.md#createOrderLink) | **POST** /payments/links/orders | Create order link
121
127
  *CoboWaas2.PaymentApi* | [**createPaymentOrder**](docs/PaymentApi.md#createPaymentOrder) | **POST** /payments/orders | Create pay-in order
122
128
  *CoboWaas2.PaymentApi* | [**createRefund**](docs/PaymentApi.md#createRefund) | **POST** /payments/refunds | Create refund order
129
+ *CoboWaas2.PaymentApi* | [**createRefundLink**](docs/PaymentApi.md#createRefundLink) | **POST** /payments/links/refunds | Create refund link
123
130
  *CoboWaas2.PaymentApi* | [**createSettlementRequest**](docs/PaymentApi.md#createSettlementRequest) | **POST** /payments/settlement_requests | Create settlement request
131
+ *CoboWaas2.PaymentApi* | [**deleteCounterparty**](docs/PaymentApi.md#deleteCounterparty) | **PUT** /payments/counterparty/{counterparty_id}/delete | Delete counterparty
132
+ *CoboWaas2.PaymentApi* | [**deleteCounterpartyWalletAddress**](docs/PaymentApi.md#deleteCounterpartyWalletAddress) | **PUT** /payments/counterparty/wallet_address/{wallet_address_id}/delete | Delete counterparty wallet address
124
133
  *CoboWaas2.PaymentApi* | [**deleteCryptoAddress**](docs/PaymentApi.md#deleteCryptoAddress) | **POST** /payments/crypto_addresses/{crypto_address_id}/delete | Delete crypto address
134
+ *CoboWaas2.PaymentApi* | [**deleteDestination**](docs/PaymentApi.md#deleteDestination) | **PUT** /payments/destination/{destination_id}/delete | Delete destination
135
+ *CoboWaas2.PaymentApi* | [**deleteDestinationBankAccount**](docs/PaymentApi.md#deleteDestinationBankAccount) | **PUT** /payments/destination/bank_account/{bank_account_id}/delete | Delete destination bank account
136
+ *CoboWaas2.PaymentApi* | [**deleteDestinationWalletAddress**](docs/PaymentApi.md#deleteDestinationWalletAddress) | **PUT** /payments/destination/wallet_address/{wallet_address_id}/delete | Delete destination wallet address
137
+ *CoboWaas2.PaymentApi* | [**enableDestinationWhitelist**](docs/PaymentApi.md#enableDestinationWhitelist) | **POST** /payments/destination/enable_whitelist | Enable or disable destination whitelist
138
+ *CoboWaas2.PaymentApi* | [**getCounterpartyDetailById**](docs/PaymentApi.md#getCounterpartyDetailById) | **GET** /payments/counterparty/{counterparty_id}/detail | Get counterparty information
139
+ *CoboWaas2.PaymentApi* | [**getDestinationBankAccountDetailById**](docs/PaymentApi.md#getDestinationBankAccountDetailById) | **GET** /payments/destination/bank_account/{bank_account_id}/detail | Get destination bank account information
140
+ *CoboWaas2.PaymentApi* | [**getDestinationDetailById**](docs/PaymentApi.md#getDestinationDetailById) | **GET** /payments/destination/{destination_id}/detail | Get destination information
125
141
  *CoboWaas2.PaymentApi* | [**getExchangeRate**](docs/PaymentApi.md#getExchangeRate) | **GET** /payments/exchange_rates/{token_id}/{currency} | Get exchange rate
126
- *CoboWaas2.PaymentApi* | [**getPayerBalanceByAddress**](docs/PaymentApi.md#getPayerBalanceByAddress) | **GET** /payments/balance/payer/address | Get payer balance
127
142
  *CoboWaas2.PaymentApi* | [**getPaymentOrderDetailById**](docs/PaymentApi.md#getPaymentOrderDetailById) | **GET** /payments/orders/{order_id} | Get pay-in order information
128
143
  *CoboWaas2.PaymentApi* | [**getPspBalance**](docs/PaymentApi.md#getPspBalance) | **GET** /payments/balance/psp | Get developer balance
129
144
  *CoboWaas2.PaymentApi* | [**getRefundDetailById**](docs/PaymentApi.md#getRefundDetailById) | **GET** /payments/refunds/{refund_id} | Get refund order information
130
145
  *CoboWaas2.PaymentApi* | [**getRefunds**](docs/PaymentApi.md#getRefunds) | **GET** /payments/refunds | List all refund orders
131
146
  *CoboWaas2.PaymentApi* | [**getSettlementById**](docs/PaymentApi.md#getSettlementById) | **GET** /payments/settlement_requests/{settlement_request_id} | Get settlement request information
132
147
  *CoboWaas2.PaymentApi* | [**getSettlementInfoByIds**](docs/PaymentApi.md#getSettlementInfoByIds) | **GET** /payments/settlement_info | Get withdrawable balances
133
- *CoboWaas2.PaymentApi* | [**getTopUpAddress**](docs/PaymentApi.md#getTopUpAddress) | **GET** /payments/topup/address | Get top-up address
148
+ *CoboWaas2.PaymentApi* | [**getTopUpAddress**](docs/PaymentApi.md#getTopUpAddress) | **GET** /payments/topup/address | Create/Get top-up address
134
149
  *CoboWaas2.PaymentApi* | [**listBankAccounts**](docs/PaymentApi.md#listBankAccounts) | **GET** /payments/bank_accounts | List all bank accounts
150
+ *CoboWaas2.PaymentApi* | [**listCounterparties**](docs/PaymentApi.md#listCounterparties) | **GET** /payments/counterparty | List all counterparties
151
+ *CoboWaas2.PaymentApi* | [**listCounterpartyWalletAddress**](docs/PaymentApi.md#listCounterpartyWalletAddress) | **GET** /payments/counterparty/wallet_address | List counterparty wallet addresses
135
152
  *CoboWaas2.PaymentApi* | [**listCryptoAddresses**](docs/PaymentApi.md#listCryptoAddresses) | **GET** /payments/crypto_addresses | List crypto addresses
153
+ *CoboWaas2.PaymentApi* | [**listDestinationBankAccounts**](docs/PaymentApi.md#listDestinationBankAccounts) | **GET** /payments/destination/bank_account | List destination bank accounts
154
+ *CoboWaas2.PaymentApi* | [**listDestinationWalletAddresses**](docs/PaymentApi.md#listDestinationWalletAddresses) | **GET** /payments/destination/wallet_address | List destination wallet addresses
155
+ *CoboWaas2.PaymentApi* | [**listDestinations**](docs/PaymentApi.md#listDestinations) | **GET** /payments/destination | List all destinations
136
156
  *CoboWaas2.PaymentApi* | [**listForcedSweepRequests**](docs/PaymentApi.md#listForcedSweepRequests) | **GET** /payments/force_sweep_requests | List forced sweeps
137
157
  *CoboWaas2.PaymentApi* | [**listMerchantBalances**](docs/PaymentApi.md#listMerchantBalances) | **GET** /payments/balance/merchants | List merchant balances
138
158
  *CoboWaas2.PaymentApi* | [**listMerchants**](docs/PaymentApi.md#listMerchants) | **GET** /payments/merchants | List all merchants
@@ -144,7 +164,11 @@ Class | Method | HTTP request | Description
144
164
  *CoboWaas2.PaymentApi* | [**listTopUpPayerAccounts**](docs/PaymentApi.md#listTopUpPayerAccounts) | **GET** /payments/topup/payer_accounts | List top-up payer accounts
145
165
  *CoboWaas2.PaymentApi* | [**listTopUpPayers**](docs/PaymentApi.md#listTopUpPayers) | **GET** /payments/topup/payers | List payers
146
166
  *CoboWaas2.PaymentApi* | [**paymentEstimateFee**](docs/PaymentApi.md#paymentEstimateFee) | **POST** /payments/estimate_fee | Estimate fees
167
+ *CoboWaas2.PaymentApi* | [**queryDestinationWhitelistEnabled**](docs/PaymentApi.md#queryDestinationWhitelistEnabled) | **GET** /payments/destination/enable_whitelist | Query destination whitelist enabled status
147
168
  *CoboWaas2.PaymentApi* | [**updateBankAccountById**](docs/PaymentApi.md#updateBankAccountById) | **PUT** /payments/bank_accounts/{bank_account_id} | Update bank account
169
+ *CoboWaas2.PaymentApi* | [**updateCounterpartyById**](docs/PaymentApi.md#updateCounterpartyById) | **PUT** /payments/counterparty/{counterparty_id}/update | Update counterparty
170
+ *CoboWaas2.PaymentApi* | [**updateDestinationBankAccountById**](docs/PaymentApi.md#updateDestinationBankAccountById) | **PUT** /payments/destination/bank_account/{bank_account_id}/update | Update destination bank account
171
+ *CoboWaas2.PaymentApi* | [**updateDestinationById**](docs/PaymentApi.md#updateDestinationById) | **PUT** /payments/destination/{destination_id}/update | Update destination
148
172
  *CoboWaas2.PaymentApi* | [**updateMerchantById**](docs/PaymentApi.md#updateMerchantById) | **PUT** /payments/merchants/{merchant_id} | Update merchant
149
173
  *CoboWaas2.PaymentApi* | [**updatePaymentOrder**](docs/PaymentApi.md#updatePaymentOrder) | **PUT** /payments/orders/{order_id} | Update pay-in order
150
174
  *CoboWaas2.PaymentApi* | [**updateRefundById**](docs/PaymentApi.md#updateRefundById) | **PUT** /payments/refunds/{refund_id} | Update refund order
@@ -192,6 +216,7 @@ Class | Method | HTTP request | Description
192
216
  *CoboWaas2.TokenizationApi* | [**listTokenizationAllowlistAddresses**](docs/TokenizationApi.md#listTokenizationAllowlistAddresses) | **GET** /tokenization/tokens/{token_id}/allowlist/addresses | List addresses on allowlist
193
217
  *CoboWaas2.TokenizationApi* | [**listTokenizationBlocklistAddresses**](docs/TokenizationApi.md#listTokenizationBlocklistAddresses) | **GET** /tokenization/tokens/{token_id}/blocklist/addresses | List addresses on blocklist
194
218
  *CoboWaas2.TokenizationApi* | [**listTokenizationHoldings**](docs/TokenizationApi.md#listTokenizationHoldings) | **GET** /tokenization/tokens/{token_id}/holdings | Get token holdings information
219
+ *CoboWaas2.TokenizationApi* | [**listTokenizationPermissions**](docs/TokenizationApi.md#listTokenizationPermissions) | **GET** /tokenization/tokens/{token_id}/permissions | List token permissions
195
220
  *CoboWaas2.TokenizationApi* | [**listTokenizationSupportedChains**](docs/TokenizationApi.md#listTokenizationSupportedChains) | **GET** /tokenization/enabled_chains | List supported chains for tokenization
196
221
  *CoboWaas2.TokenizationApi* | [**mintTokenization**](docs/TokenizationApi.md#mintTokenization) | **POST** /tokenization/tokens/{token_id}/mint | Mint tokens
197
222
  *CoboWaas2.TokenizationApi* | [**pauseTokenization**](docs/TokenizationApi.md#pauseTokenization) | **POST** /tokenization/tokens/{token_id}/pause | Pause token contract
@@ -200,6 +225,7 @@ Class | Method | HTTP request | Description
200
225
  *CoboWaas2.TokenizationApi* | [**updateTokenizationAllowlistActivation**](docs/TokenizationApi.md#updateTokenizationAllowlistActivation) | **POST** /tokenization/tokens/{token_id}/allowlist/activation | Activate or deactivate allowlist
201
226
  *CoboWaas2.TokenizationApi* | [**updateTokenizationAllowlistAddresses**](docs/TokenizationApi.md#updateTokenizationAllowlistAddresses) | **POST** /tokenization/tokens/{token_id}/allowlist/addresses | Update addresses on allowlist
202
227
  *CoboWaas2.TokenizationApi* | [**updateTokenizationBlocklistAddresses**](docs/TokenizationApi.md#updateTokenizationBlocklistAddresses) | **POST** /tokenization/tokens/{token_id}/blocklist/addresses | Update addresses on blocklist
228
+ *CoboWaas2.TokenizationApi* | [**updateTokenizationPermissions**](docs/TokenizationApi.md#updateTokenizationPermissions) | **POST** /tokenization/tokens/{token_id}/permissions | Update token permissions
203
229
  *CoboWaas2.TransactionsApi* | [**broadcastSignedTransactions**](docs/TransactionsApi.md#broadcastSignedTransactions) | **POST** /transactions/broadcast | Broadcast signed transactions
204
230
  *CoboWaas2.TransactionsApi* | [**cancelTransactionById**](docs/TransactionsApi.md#cancelTransactionById) | **POST** /transactions/{transaction_id}/cancel | Cancel transaction
205
231
  *CoboWaas2.TransactionsApi* | [**checkLoopTransfers**](docs/TransactionsApi.md#checkLoopTransfers) | **GET** /transactions/check_loop_transfers | Check Cobo Loop transfers
@@ -337,6 +363,7 @@ Class | Method | HTTP request | Description
337
363
  - [CoboWaas2.BalanceUpdateInfo](docs/BalanceUpdateInfo.md)
338
364
  - [CoboWaas2.BalanceUpdateInfoEventData](docs/BalanceUpdateInfoEventData.md)
339
365
  - [CoboWaas2.BankAccount](docs/BankAccount.md)
366
+ - [CoboWaas2.BankAccountStatus](docs/BankAccountStatus.md)
340
367
  - [CoboWaas2.BaseContractCallSource](docs/BaseContractCallSource.md)
341
368
  - [CoboWaas2.BaseEstimateStakingFee](docs/BaseEstimateStakingFee.md)
342
369
  - [CoboWaas2.BaseStakeExtra](docs/BaseStakeExtra.md)
@@ -371,6 +398,10 @@ Class | Method | HTTP request | Description
371
398
  - [CoboWaas2.CosmosAdr36MessageSignDestination](docs/CosmosAdr36MessageSignDestination.md)
372
399
  - [CoboWaas2.CosmosContractCallDestination](docs/CosmosContractCallDestination.md)
373
400
  - [CoboWaas2.CosmosContractCallMessage](docs/CosmosContractCallMessage.md)
401
+ - [CoboWaas2.Counterparty](docs/Counterparty.md)
402
+ - [CoboWaas2.CounterpartyDetail](docs/CounterpartyDetail.md)
403
+ - [CoboWaas2.CounterpartyType](docs/CounterpartyType.md)
404
+ - [CoboWaas2.CounterpartyWalletAddressDetail](docs/CounterpartyWalletAddressDetail.md)
374
405
  - [CoboWaas2.CreateAddressBookParam](docs/CreateAddressBookParam.md)
375
406
  - [CoboWaas2.CreateAddressBooks201Response](docs/CreateAddressBooks201Response.md)
376
407
  - [CoboWaas2.CreateAddressBooksParam](docs/CreateAddressBooksParam.md)
@@ -383,8 +414,14 @@ Class | Method | HTTP request | Description
383
414
  - [CoboWaas2.CreateBabylonStakingRegistrationRequest](docs/CreateBabylonStakingRegistrationRequest.md)
384
415
  - [CoboWaas2.CreateClaimActivity](docs/CreateClaimActivity.md)
385
416
  - [CoboWaas2.CreateClaimActivityRequest](docs/CreateClaimActivityRequest.md)
417
+ - [CoboWaas2.CreateCounterpartyRequest](docs/CreateCounterpartyRequest.md)
418
+ - [CoboWaas2.CreateCounterpartyWalletAddressRequest](docs/CreateCounterpartyWalletAddressRequest.md)
386
419
  - [CoboWaas2.CreateCryptoAddressRequest](docs/CreateCryptoAddressRequest.md)
387
420
  - [CoboWaas2.CreateCustodialWalletParams](docs/CreateCustodialWalletParams.md)
421
+ - [CoboWaas2.CreateDestinationBankAccount](docs/CreateDestinationBankAccount.md)
422
+ - [CoboWaas2.CreateDestinationBankAccountRequest](docs/CreateDestinationBankAccountRequest.md)
423
+ - [CoboWaas2.CreateDestinationRequest](docs/CreateDestinationRequest.md)
424
+ - [CoboWaas2.CreateDestinationWalletAddressRequest](docs/CreateDestinationWalletAddressRequest.md)
388
425
  - [CoboWaas2.CreateExchangeWalletParams](docs/CreateExchangeWalletParams.md)
389
426
  - [CoboWaas2.CreateKeyShareHolder](docs/CreateKeyShareHolder.md)
390
427
  - [CoboWaas2.CreateKeyShareHolderGroupRequest](docs/CreateKeyShareHolderGroupRequest.md)
@@ -396,6 +433,7 @@ Class | Method | HTTP request | Description
396
433
  - [CoboWaas2.CreatePaymentOrderRequest](docs/CreatePaymentOrderRequest.md)
397
434
  - [CoboWaas2.CreatePrimeBrokerAddress201Response](docs/CreatePrimeBrokerAddress201Response.md)
398
435
  - [CoboWaas2.CreatePrimeBrokerAddressRequest](docs/CreatePrimeBrokerAddressRequest.md)
436
+ - [CoboWaas2.CreateRefundLinkRequest](docs/CreateRefundLinkRequest.md)
399
437
  - [CoboWaas2.CreateRefundRequest](docs/CreateRefundRequest.md)
400
438
  - [CoboWaas2.CreateSafeWalletParams](docs/CreateSafeWalletParams.md)
401
439
  - [CoboWaas2.CreateSettlement](docs/CreateSettlement.md)
@@ -414,6 +452,7 @@ Class | Method | HTTP request | Description
414
452
  - [CoboWaas2.CreateUnstakeActivity](docs/CreateUnstakeActivity.md)
415
453
  - [CoboWaas2.CreateUnstakeActivityExtra](docs/CreateUnstakeActivityExtra.md)
416
454
  - [CoboWaas2.CreateUnstakeActivityRequest](docs/CreateUnstakeActivityRequest.md)
455
+ - [CoboWaas2.CreateWalletAddress](docs/CreateWalletAddress.md)
417
456
  - [CoboWaas2.CreateWalletParams](docs/CreateWalletParams.md)
418
457
  - [CoboWaas2.CreateWebhookEndpointRequest](docs/CreateWebhookEndpointRequest.md)
419
458
  - [CoboWaas2.CreateWithdrawActivity](docs/CreateWithdrawActivity.md)
@@ -428,10 +467,21 @@ Class | Method | HTTP request | Description
428
467
  - [CoboWaas2.CustodialWeb3MessageSignSource](docs/CustodialWeb3MessageSignSource.md)
429
468
  - [CoboWaas2.CustodialWeb3TransferSource](docs/CustodialWeb3TransferSource.md)
430
469
  - [CoboWaas2.DeleteAddressBookById201Response](docs/DeleteAddressBookById201Response.md)
470
+ - [CoboWaas2.DeleteCounterparty200Response](docs/DeleteCounterparty200Response.md)
471
+ - [CoboWaas2.DeleteCounterpartyWalletAddress200Response](docs/DeleteCounterpartyWalletAddress200Response.md)
431
472
  - [CoboWaas2.DeleteCryptoAddress201Response](docs/DeleteCryptoAddress201Response.md)
473
+ - [CoboWaas2.DeleteDestination200Response](docs/DeleteDestination200Response.md)
474
+ - [CoboWaas2.DeleteDestinationBankAccount200Response](docs/DeleteDestinationBankAccount200Response.md)
475
+ - [CoboWaas2.DeleteDestinationWalletAddress200Response](docs/DeleteDestinationWalletAddress200Response.md)
432
476
  - [CoboWaas2.DeleteGuardPubkey201Response](docs/DeleteGuardPubkey201Response.md)
433
477
  - [CoboWaas2.DeleteKeyShareHolderGroupById201Response](docs/DeleteKeyShareHolderGroupById201Response.md)
434
478
  - [CoboWaas2.DeleteWalletById201Response](docs/DeleteWalletById201Response.md)
479
+ - [CoboWaas2.Destination](docs/Destination.md)
480
+ - [CoboWaas2.DestinationBankAccount](docs/DestinationBankAccount.md)
481
+ - [CoboWaas2.DestinationBankAccountDetail](docs/DestinationBankAccountDetail.md)
482
+ - [CoboWaas2.DestinationDetail](docs/DestinationDetail.md)
483
+ - [CoboWaas2.DestinationType](docs/DestinationType.md)
484
+ - [CoboWaas2.DestinationWalletAddressDetail](docs/DestinationWalletAddressDetail.md)
435
485
  - [CoboWaas2.DestinationWalletType](docs/DestinationWalletType.md)
436
486
  - [CoboWaas2.DispositionEventData](docs/DispositionEventData.md)
437
487
  - [CoboWaas2.DispositionQueryResponse](docs/DispositionQueryResponse.md)
@@ -441,6 +491,7 @@ Class | Method | HTTP request | Description
441
491
  - [CoboWaas2.EigenLayerLstStakeExtra](docs/EigenLayerLstStakeExtra.md)
442
492
  - [CoboWaas2.EigenLayerNativeStakeExtra](docs/EigenLayerNativeStakeExtra.md)
443
493
  - [CoboWaas2.EigenlayerValidator](docs/EigenlayerValidator.md)
494
+ - [CoboWaas2.EnableDestinationWhitelistRequest](docs/EnableDestinationWhitelistRequest.md)
444
495
  - [CoboWaas2.ErrorResponse](docs/ErrorResponse.md)
445
496
  - [CoboWaas2.EstimateClaimFee](docs/EstimateClaimFee.md)
446
497
  - [CoboWaas2.EstimateContractCallFeeParams](docs/EstimateContractCallFeeParams.md)
@@ -478,6 +529,7 @@ Class | Method | HTTP request | Description
478
529
  - [CoboWaas2.ExchangeId](docs/ExchangeId.md)
479
530
  - [CoboWaas2.ExchangePermissionToken201Response](docs/ExchangePermissionToken201Response.md)
480
531
  - [CoboWaas2.ExchangePermissionTokenRequest](docs/ExchangePermissionTokenRequest.md)
532
+ - [CoboWaas2.ExchangeRate](docs/ExchangeRate.md)
481
533
  - [CoboWaas2.ExchangeTransferDestination](docs/ExchangeTransferDestination.md)
482
534
  - [CoboWaas2.ExchangeTransferSource](docs/ExchangeTransferSource.md)
483
535
  - [CoboWaas2.ExchangeWalletInfo](docs/ExchangeWalletInfo.md)
@@ -492,6 +544,7 @@ Class | Method | HTTP request | Description
492
544
  - [CoboWaas2.FeeStationCheckFeeStationUsageResponse](docs/FeeStationCheckFeeStationUsageResponse.md)
493
545
  - [CoboWaas2.FeeStationDestination](docs/FeeStationDestination.md)
494
546
  - [CoboWaas2.FeeStationGasStationType](docs/FeeStationGasStationType.md)
547
+ - [CoboWaas2.FeeStationSponsorTransactionDescription](docs/FeeStationSponsorTransactionDescription.md)
495
548
  - [CoboWaas2.FeeStationTransactionType](docs/FeeStationTransactionType.md)
496
549
  - [CoboWaas2.FeeStationTransfer](docs/FeeStationTransfer.md)
497
550
  - [CoboWaas2.FeeType](docs/FeeType.md)
@@ -516,6 +569,7 @@ Class | Method | HTTP request | Description
516
569
  - [CoboWaas2.GraphQLRequest](docs/GraphQLRequest.md)
517
570
  - [CoboWaas2.GraphQLResponse](docs/GraphQLResponse.md)
518
571
  - [CoboWaas2.GuardPubkeyStatus](docs/GuardPubkeyStatus.md)
572
+ - [CoboWaas2.IntermediaryBankInfo](docs/IntermediaryBankInfo.md)
519
573
  - [CoboWaas2.IsolateDisposition](docs/IsolateDisposition.md)
520
574
  - [CoboWaas2.KeyShareHolder](docs/KeyShareHolder.md)
521
575
  - [CoboWaas2.KeyShareHolderGroup](docs/KeyShareHolderGroup.md)
@@ -542,6 +596,11 @@ Class | Method | HTTP request | Description
542
596
  - [CoboWaas2.ListBabylonEligibleStakings200ResponseDataInner](docs/ListBabylonEligibleStakings200ResponseDataInner.md)
543
597
  - [CoboWaas2.ListBabylonStakingRegistrations200Response](docs/ListBabylonStakingRegistrations200Response.md)
544
598
  - [CoboWaas2.ListCallbackMessages200Response](docs/ListCallbackMessages200Response.md)
599
+ - [CoboWaas2.ListCounterparties200Response](docs/ListCounterparties200Response.md)
600
+ - [CoboWaas2.ListCounterpartyWalletAddress200Response](docs/ListCounterpartyWalletAddress200Response.md)
601
+ - [CoboWaas2.ListDestinationBankAccounts200Response](docs/ListDestinationBankAccounts200Response.md)
602
+ - [CoboWaas2.ListDestinationWalletAddresses200Response](docs/ListDestinationWalletAddresses200Response.md)
603
+ - [CoboWaas2.ListDestinations200Response](docs/ListDestinations200Response.md)
545
604
  - [CoboWaas2.ListExchanges200ResponseInner](docs/ListExchanges200ResponseInner.md)
546
605
  - [CoboWaas2.ListForcedSweepRequests200Response](docs/ListForcedSweepRequests200Response.md)
547
606
  - [CoboWaas2.ListKeyShareHolderGroups200Response](docs/ListKeyShareHolderGroups200Response.md)
@@ -636,9 +695,9 @@ Class | Method | HTTP request | Description
636
695
  - [CoboWaas2.PoolSummary](docs/PoolSummary.md)
637
696
  - [CoboWaas2.PspBalance](docs/PspBalance.md)
638
697
  - [CoboWaas2.QueryApprovalStatement200Response](docs/QueryApprovalStatement200Response.md)
698
+ - [CoboWaas2.QueryDestinationWhitelistEnabled200Response](docs/QueryDestinationWhitelistEnabled200Response.md)
639
699
  - [CoboWaas2.QueryGuardPubkey200Response](docs/QueryGuardPubkey200Response.md)
640
700
  - [CoboWaas2.QueryGuardPubkey200ResponseAddressesInner](docs/QueryGuardPubkey200ResponseAddressesInner.md)
641
- - [CoboWaas2.ReceivedAmountPerAddress](docs/ReceivedAmountPerAddress.md)
642
701
  - [CoboWaas2.RefreshAddressBalancesByToken200Response](docs/RefreshAddressBalancesByToken200Response.md)
643
702
  - [CoboWaas2.RefreshAddressBalancesByTokenRequest](docs/RefreshAddressBalancesByTokenRequest.md)
644
703
  - [CoboWaas2.RefreshPermissionTokenRequest](docs/RefreshPermissionTokenRequest.md)
@@ -646,6 +705,7 @@ Class | Method | HTTP request | Description
646
705
  - [CoboWaas2.RefreshTokenRequest](docs/RefreshTokenRequest.md)
647
706
  - [CoboWaas2.Refund](docs/Refund.md)
648
707
  - [CoboWaas2.RefundDisposition](docs/RefundDisposition.md)
708
+ - [CoboWaas2.RefundLinkBusinessInfo](docs/RefundLinkBusinessInfo.md)
649
709
  - [CoboWaas2.RefundStatus](docs/RefundStatus.md)
650
710
  - [CoboWaas2.RefundType](docs/RefundType.md)
651
711
  - [CoboWaas2.ReplaceType](docs/ReplaceType.md)
@@ -788,6 +848,9 @@ Class | Method | HTTP request | Description
788
848
  - [CoboWaas2.TokenizationContractCallRequest](docs/TokenizationContractCallRequest.md)
789
849
  - [CoboWaas2.TokenizationContractCallType](docs/TokenizationContractCallType.md)
790
850
  - [CoboWaas2.TokenizationERC20TokenParams](docs/TokenizationERC20TokenParams.md)
851
+ - [CoboWaas2.TokenizationERC20TokenPermissionParams](docs/TokenizationERC20TokenPermissionParams.md)
852
+ - [CoboWaas2.TokenizationERC20WrappedTokenParams](docs/TokenizationERC20WrappedTokenParams.md)
853
+ - [CoboWaas2.TokenizationERC20WrappedTokenPermissionParams](docs/TokenizationERC20WrappedTokenPermissionParams.md)
791
854
  - [CoboWaas2.TokenizationEstimateFeeRequest](docs/TokenizationEstimateFeeRequest.md)
792
855
  - [CoboWaas2.TokenizationEstimateFeeRequestOperationParams](docs/TokenizationEstimateFeeRequestOperationParams.md)
793
856
  - [CoboWaas2.TokenizationEvmContractCallParams](docs/TokenizationEvmContractCallParams.md)
@@ -799,6 +862,8 @@ Class | Method | HTTP request | Description
799
862
  - [CoboWaas2.TokenizationListActivitiesResponse](docs/TokenizationListActivitiesResponse.md)
800
863
  - [CoboWaas2.TokenizationListEnabledChainsResponse](docs/TokenizationListEnabledChainsResponse.md)
801
864
  - [CoboWaas2.TokenizationListHoldingsResponse](docs/TokenizationListHoldingsResponse.md)
865
+ - [CoboWaas2.TokenizationListPermissionsResponse](docs/TokenizationListPermissionsResponse.md)
866
+ - [CoboWaas2.TokenizationListPermissionsResponseDataInner](docs/TokenizationListPermissionsResponseDataInner.md)
802
867
  - [CoboWaas2.TokenizationListTokenInfoResponse](docs/TokenizationListTokenInfoResponse.md)
803
868
  - [CoboWaas2.TokenizationMintEstimateFeeParams](docs/TokenizationMintEstimateFeeParams.md)
804
869
  - [CoboWaas2.TokenizationMintTokenParams](docs/TokenizationMintTokenParams.md)
@@ -811,23 +876,25 @@ Class | Method | HTTP request | Description
811
876
  - [CoboWaas2.TokenizationPauseEstimateFeeParams](docs/TokenizationPauseEstimateFeeParams.md)
812
877
  - [CoboWaas2.TokenizationPauseTokenParams](docs/TokenizationPauseTokenParams.md)
813
878
  - [CoboWaas2.TokenizationPauseTokenRequest](docs/TokenizationPauseTokenRequest.md)
879
+ - [CoboWaas2.TokenizationPermissionAction](docs/TokenizationPermissionAction.md)
814
880
  - [CoboWaas2.TokenizationSOLTokenParams](docs/TokenizationSOLTokenParams.md)
881
+ - [CoboWaas2.TokenizationSOLWrappedTokenParams](docs/TokenizationSOLWrappedTokenParams.md)
815
882
  - [CoboWaas2.TokenizationSolContractCallParams](docs/TokenizationSolContractCallParams.md)
816
883
  - [CoboWaas2.TokenizationSolTokenPermissionParams](docs/TokenizationSolTokenPermissionParams.md)
884
+ - [CoboWaas2.TokenizationSolWrappedTokenPermissionParams](docs/TokenizationSolWrappedTokenPermissionParams.md)
817
885
  - [CoboWaas2.TokenizationStatus](docs/TokenizationStatus.md)
818
886
  - [CoboWaas2.TokenizationToggleAllowlistEstimateFeeParams](docs/TokenizationToggleAllowlistEstimateFeeParams.md)
819
887
  - [CoboWaas2.TokenizationTokenDetailInfo](docs/TokenizationTokenDetailInfo.md)
820
888
  - [CoboWaas2.TokenizationTokenInfo](docs/TokenizationTokenInfo.md)
821
889
  - [CoboWaas2.TokenizationTokenOperationSource](docs/TokenizationTokenOperationSource.md)
822
890
  - [CoboWaas2.TokenizationTokenPermission](docs/TokenizationTokenPermission.md)
823
- - [CoboWaas2.TokenizationTokenPermissionParams](docs/TokenizationTokenPermissionParams.md)
824
891
  - [CoboWaas2.TokenizationTokenPermissionType](docs/TokenizationTokenPermissionType.md)
825
- - [CoboWaas2.TokenizationTokenPermissionsResponse](docs/TokenizationTokenPermissionsResponse.md)
826
892
  - [CoboWaas2.TokenizationTokenStandard](docs/TokenizationTokenStandard.md)
827
893
  - [CoboWaas2.TokenizationUnpauseEstimateFeeParams](docs/TokenizationUnpauseEstimateFeeParams.md)
828
894
  - [CoboWaas2.TokenizationUnpauseTokenParams](docs/TokenizationUnpauseTokenParams.md)
829
895
  - [CoboWaas2.TokenizationUnpauseTokenRequest](docs/TokenizationUnpauseTokenRequest.md)
830
896
  - [CoboWaas2.TokenizationUpdateAddressAction](docs/TokenizationUpdateAddressAction.md)
897
+ - [CoboWaas2.TokenizationUpdateAddressPermissions](docs/TokenizationUpdateAddressPermissions.md)
831
898
  - [CoboWaas2.TokenizationUpdateAllowlistAddressesEstimateFeeParams](docs/TokenizationUpdateAllowlistAddressesEstimateFeeParams.md)
832
899
  - [CoboWaas2.TokenizationUpdateAllowlistAddressesParams](docs/TokenizationUpdateAllowlistAddressesParams.md)
833
900
  - [CoboWaas2.TokenizationUpdateAllowlistAddressesParamsAddressesInner](docs/TokenizationUpdateAllowlistAddressesParamsAddressesInner.md)
@@ -836,6 +903,9 @@ Class | Method | HTTP request | Description
836
903
  - [CoboWaas2.TokenizationUpdateBlocklistAddressesParams](docs/TokenizationUpdateBlocklistAddressesParams.md)
837
904
  - [CoboWaas2.TokenizationUpdateBlocklistAddressesParamsAddressesInner](docs/TokenizationUpdateBlocklistAddressesParamsAddressesInner.md)
838
905
  - [CoboWaas2.TokenizationUpdateBlocklistAddressesRequest](docs/TokenizationUpdateBlocklistAddressesRequest.md)
906
+ - [CoboWaas2.TokenizationUpdatePermissionsEstimateFeeParams](docs/TokenizationUpdatePermissionsEstimateFeeParams.md)
907
+ - [CoboWaas2.TokenizationUpdatePermissionsParams](docs/TokenizationUpdatePermissionsParams.md)
908
+ - [CoboWaas2.TokenizationUpdatePermissionsRequest](docs/TokenizationUpdatePermissionsRequest.md)
839
909
  - [CoboWaas2.TokenizationWeb3OperationSource](docs/TokenizationWeb3OperationSource.md)
840
910
  - [CoboWaas2.TokensEventData](docs/TokensEventData.md)
841
911
  - [CoboWaas2.TopUpAddress](docs/TopUpAddress.md)
@@ -924,6 +994,7 @@ Class | Method | HTTP request | Description
924
994
  - [CoboWaas2.TransactionTransferToAddressDestinationAccountOutput](docs/TransactionTransferToAddressDestinationAccountOutput.md)
925
995
  - [CoboWaas2.TransactionTransferToAddressDestinationUtxoOutputsInner](docs/TransactionTransferToAddressDestinationUtxoOutputsInner.md)
926
996
  - [CoboWaas2.TransactionTransferToWalletDestination](docs/TransactionTransferToWalletDestination.md)
997
+ - [CoboWaas2.TransactionTronContractDestination](docs/TransactionTronContractDestination.md)
927
998
  - [CoboWaas2.TransactionType](docs/TransactionType.md)
928
999
  - [CoboWaas2.TransactionUserApprovalDetail](docs/TransactionUserApprovalDetail.md)
929
1000
  - [CoboWaas2.TransactionUtxo](docs/TransactionUtxo.md)
@@ -948,11 +1019,15 @@ Class | Method | HTTP request | Description
948
1019
  - [CoboWaas2.TravelRuleWithdrawRequestTravelRuleInfo](docs/TravelRuleWithdrawRequestTravelRuleInfo.md)
949
1020
  - [CoboWaas2.TriggerTestWebhookEvent201Response](docs/TriggerTestWebhookEvent201Response.md)
950
1021
  - [CoboWaas2.TriggerTestWebhookEventRequest](docs/TriggerTestWebhookEventRequest.md)
1022
+ - [CoboWaas2.TronContractCallDestination](docs/TronContractCallDestination.md)
951
1023
  - [CoboWaas2.UTXO](docs/UTXO.md)
952
1024
  - [CoboWaas2.UnfreezeDisposition](docs/UnfreezeDisposition.md)
953
1025
  - [CoboWaas2.UpdateAddressBookParam](docs/UpdateAddressBookParam.md)
954
1026
  - [CoboWaas2.UpdateBankAccountByIdRequest](docs/UpdateBankAccountByIdRequest.md)
1027
+ - [CoboWaas2.UpdateCounterpartyByIdRequest](docs/UpdateCounterpartyByIdRequest.md)
955
1028
  - [CoboWaas2.UpdateCustodialWalletParams](docs/UpdateCustodialWalletParams.md)
1029
+ - [CoboWaas2.UpdateDestinationBankAccount](docs/UpdateDestinationBankAccount.md)
1030
+ - [CoboWaas2.UpdateDestinationByIdRequest](docs/UpdateDestinationByIdRequest.md)
956
1031
  - [CoboWaas2.UpdateExchangeWalletParams](docs/UpdateExchangeWalletParams.md)
957
1032
  - [CoboWaas2.UpdateGroupAction](docs/UpdateGroupAction.md)
958
1033
  - [CoboWaas2.UpdateKeyShareHolderGroupByIdRequest](docs/UpdateKeyShareHolderGroupByIdRequest.md)
@@ -969,6 +1044,7 @@ Class | Method | HTTP request | Description
969
1044
  - [CoboWaas2.UtxoFeeBasePrice](docs/UtxoFeeBasePrice.md)
970
1045
  - [CoboWaas2.UtxoFeeRate](docs/UtxoFeeRate.md)
971
1046
  - [CoboWaas2.Vasp](docs/Vasp.md)
1047
+ - [CoboWaas2.WalletAddress](docs/WalletAddress.md)
972
1048
  - [CoboWaas2.WalletInfo](docs/WalletInfo.md)
973
1049
  - [CoboWaas2.WalletInfoEventData](docs/WalletInfoEventData.md)
974
1050
  - [CoboWaas2.WalletSetup](docs/WalletSetup.md)
package/dist/ApiClient.js CHANGED
@@ -102,7 +102,7 @@ var ApiClient = /*#__PURE__*/function () {
102
102
  * @default {}
103
103
  */
104
104
  this.defaultHeaders = {
105
- 'User-Agent': 'cobo-waas2-js-sdk/1.25.0'
105
+ 'User-Agent': 'cobo-waas2-js-sdk/1.27.0'
106
106
  };
107
107
 
108
108
  /**
@@ -87,7 +87,7 @@ var AutoSweepApi = exports["default"] = /*#__PURE__*/function () {
87
87
  }
88
88
 
89
89
  /**
90
- * create sweep-to address
90
+ * Create sweep-to address
91
91
  * This operation creates a new sweep-to address for the specified wallet. The previously sweep-to address for the same token becomes invalid once the new one is created. Use this operation to change the sweep-to address when your setup changes, you switch networks, or the current address is compromised or tainted by suspicious funds. You can withdraw any remaining balances from the old sweep-to addresses to the new address or another designated destination. <Note>Sweep-to addresses are only applicable to MPC Wallets and Web3 Wallets with the auto-sweep feature enabled.</Note>
92
92
  * @param {Object} opts Optional parameters
93
93
  * @param {module:model/CreateSweepToAddress} [CreateSweepToAddress] The request body to generates a new sweep-to address within a specified wallet.
@@ -113,7 +113,7 @@ var AutoSweepApi = exports["default"] = /*#__PURE__*/function () {
113
113
  }
114
114
 
115
115
  /**
116
- * create sweep-to address
116
+ * Create sweep-to address
117
117
  * This operation creates a new sweep-to address for the specified wallet. The previously sweep-to address for the same token becomes invalid once the new one is created. Use this operation to change the sweep-to address when your setup changes, you switch networks, or the current address is compromised or tainted by suspicious funds. You can withdraw any remaining balances from the old sweep-to addresses to the new address or another designated destination. <Note>Sweep-to addresses are only applicable to MPC Wallets and Web3 Wallets with the auto-sweep feature enabled.</Note>
118
118
  * @param {Object} opts Optional parameters
119
119
  * @param {module:model/CreateSweepToAddress} opts.CreateSweepToAddress The request body to generates a new sweep-to address within a specified wallet.
@@ -222,7 +222,7 @@ var ComplianceApi = exports["default"] = /*#__PURE__*/function () {
222
222
  * Submit KYT manual review result
223
223
  * This operation submits a manual review result for a KYT (Know Your Transaction) screening case that requires human analysis. Use this endpoint when transactions flagged for manual review have been analyzed by compliance officers and require submission of review outcomes with detailed comments and justifications. This endpoint is specifically designed for submitting comprehensive manual review findings rather than automated screening decisions. <Note>Submitting a manual review result will update the KYT screening status and initiate appropriate compliance workflow actions based on the review outcome.</Note>
224
224
  * @param {Object} opts Optional parameters
225
- * @param {module:model/SubmitKytScreeningsReviewBody} [SubmitKytScreeningsReviewBody] The request body to submit a manual review result for KYT screening case that requires human analysis.
225
+ * @param {module:model/SubmitKytScreeningsReviewBody} [SubmitKytScreeningsReviewBody] The request body to submit a manual review result for a KYT screening case that requires human analysis.
226
226
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/SubmitKytResponse} and HTTP response
227
227
  */
228
228
  }, {
@@ -248,7 +248,7 @@ var ComplianceApi = exports["default"] = /*#__PURE__*/function () {
248
248
  * Submit KYT manual review result
249
249
  * This operation submits a manual review result for a KYT (Know Your Transaction) screening case that requires human analysis. Use this endpoint when transactions flagged for manual review have been analyzed by compliance officers and require submission of review outcomes with detailed comments and justifications. This endpoint is specifically designed for submitting comprehensive manual review findings rather than automated screening decisions. <Note>Submitting a manual review result will update the KYT screening status and initiate appropriate compliance workflow actions based on the review outcome.</Note>
250
250
  * @param {Object} opts Optional parameters
251
- * @param {module:model/SubmitKytScreeningsReviewBody} opts.SubmitKytScreeningsReviewBody The request body to submit a manual review result for KYT screening case that requires human analysis.
251
+ * @param {module:model/SubmitKytScreeningsReviewBody} opts.SubmitKytScreeningsReviewBody The request body to submit a manual review result for a KYT screening case that requires human analysis.
252
252
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/SubmitKytResponse}
253
253
  */
254
254
  }, {
@@ -460,7 +460,7 @@ var DevelopersWebhooksApi = exports["default"] = /*#__PURE__*/function () {
460
460
 
461
461
  /**
462
462
  * Trigger test event
463
- * This operation tests the functionality of your webhook endpoint by triggering a test webhook event. The test event will be sent to all the endpoints you have registered on Cobo Portal. You only need to provide the event type. By default, the payload contains dummy data with no impact on your real business transactions or activities. You can optionally provide the `override_data` property to customize the payload. <Note>Currently, you can only trigger test webhook events with the event data types `Transaction` and `TSSRequest`.</Note>
463
+ * This operation tests the functionality of your webhook endpoint by triggering a test webhook event. The test event will be sent to all the endpoints you have registered on Cobo Portal. You only need to provide the event type. By default, the payload contains dummy data with no impact on your real business transactions or activities. You can optionally provide the `override_data` property to customize the payload. <Note>Currently, you can only trigger test webhook events with the event data types [`Transaction`](https://www.cobo.com/developers/v2/guides/webhooks-callbacks/webhook-event-type#transaction-events-deposits%2Fwithdrawals%2Fcontract-calls%2Fmessage-signing) and [`TSSRequest`](https://www.cobo.com/developers/v2/guides/webhooks-callbacks/webhook-event-type#mpc-tss-request-events).</Note>
464
464
  * @param {Object} opts Optional parameters
465
465
  * @param {module:model/TriggerTestWebhookEventRequest} [TriggerTestWebhookEventRequest] The request body used to trigger a test webhook event.
466
466
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/TriggerTestWebhookEvent201Response} and HTTP response
@@ -486,7 +486,7 @@ var DevelopersWebhooksApi = exports["default"] = /*#__PURE__*/function () {
486
486
 
487
487
  /**
488
488
  * Trigger test event
489
- * This operation tests the functionality of your webhook endpoint by triggering a test webhook event. The test event will be sent to all the endpoints you have registered on Cobo Portal. You only need to provide the event type. By default, the payload contains dummy data with no impact on your real business transactions or activities. You can optionally provide the `override_data` property to customize the payload. <Note>Currently, you can only trigger test webhook events with the event data types `Transaction` and `TSSRequest`.</Note>
489
+ * This operation tests the functionality of your webhook endpoint by triggering a test webhook event. The test event will be sent to all the endpoints you have registered on Cobo Portal. You only need to provide the event type. By default, the payload contains dummy data with no impact on your real business transactions or activities. You can optionally provide the `override_data` property to customize the payload. <Note>Currently, you can only trigger test webhook events with the event data types [`Transaction`](https://www.cobo.com/developers/v2/guides/webhooks-callbacks/webhook-event-type#transaction-events-deposits%2Fwithdrawals%2Fcontract-calls%2Fmessage-signing) and [`TSSRequest`](https://www.cobo.com/developers/v2/guides/webhooks-callbacks/webhook-event-type#mpc-tss-request-events).</Note>
490
490
  * @param {Object} opts Optional parameters
491
491
  * @param {module:model/TriggerTestWebhookEventRequest} opts.TriggerTestWebhookEventRequest The request body used to trigger a test webhook event.
492
492
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/TriggerTestWebhookEvent201Response}
@@ -49,7 +49,7 @@ var FeeStationApi = exports["default"] = /*#__PURE__*/function () {
49
49
 
50
50
  /**
51
51
  * Check Fee Station usage
52
- * This operation evaluates Fee Station usage for the current transaction. It determines whether Fee station can be used, checks if the Fee Station balance is sufficient, and returns a breakdown of the amounts involved, including any portion that must be covered by the user or sponsored in USDT (U).
52
+ * This operation evaluates Fee Station usage for the current transaction. It determines whether Fee station can be used, checks if the Fee Station balance is sufficient, and returns a breakdown of the amounts involved, including any portion that must be covered by the user or sponsored in USD stablecoin.
53
53
  * @param {Object} opts Optional parameters
54
54
  * @param {module:model/FeeStationCheckFeeStationUsage} [FeeStationCheckFeeStationUsage] The information for evaluating Fee Station usage.
55
55
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/FeeStationCheckFeeStationUsageResponse} and HTTP response
@@ -75,7 +75,7 @@ var FeeStationApi = exports["default"] = /*#__PURE__*/function () {
75
75
 
76
76
  /**
77
77
  * Check Fee Station usage
78
- * This operation evaluates Fee Station usage for the current transaction. It determines whether Fee station can be used, checks if the Fee Station balance is sufficient, and returns a breakdown of the amounts involved, including any portion that must be covered by the user or sponsored in USDT (U).
78
+ * This operation evaluates Fee Station usage for the current transaction. It determines whether Fee station can be used, checks if the Fee Station balance is sufficient, and returns a breakdown of the amounts involved, including any portion that must be covered by the user or sponsored in USD stablecoin.
79
79
  * @param {Object} opts Optional parameters
80
80
  * @param {module:model/FeeStationCheckFeeStationUsage} opts.FeeStationCheckFeeStationUsage The information for evaluating Fee Station usage.
81
81
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/FeeStationCheckFeeStationUsageResponse}
@@ -89,8 +89,8 @@ var FeeStationApi = exports["default"] = /*#__PURE__*/function () {
89
89
  }
90
90
 
91
91
  /**
92
- * Estimate fee for Fee Station transaction
93
- * This operation estimates the gas fee required for a top-up transaction sent by [Fee Station](https://manuals.cobo.com/en/portal/fee-station/introduction) to provide gas to the sender of the original transaction. You need to provide the token ID and transfer amount. For more information about transaction fee models and how fees are calculated, refer to [Estimate transaction fee](https://www.cobo.com/developers/v2/guides/transactions/estimate-fees).
92
+ * Estimate transaction fee
93
+ * <Note>This operation is **deprecated**. Please use the enhanced version [Check Fee Station usage](https://www.cobo.com/developers/v2/api-references/feestation/check-fee-station-usage) instead.</Note> This operation estimates the transaction fee of a token transfer based on the fee model that the chain uses, considering factors such as network congestion and transaction complexity. You need to specify the transaction information, including destination address, token ID. The response can contain different properties based on the transaction fee model used by the chain. For the legacy, EIP-1559, and UTXO fee models, Cobo also supports three different transaction speed levels: slow, recommended, and fast. For more information about estimating transaction fees, refer to [Estimate transaction fee](https://www.cobo.com/developers/v2/guides/transactions/estimate-fees).
94
94
  * @param {Object} opts Optional parameters
95
95
  * @param {module:model/FeeStationTransfer} [FeeStationTransfer] The information about a Fee Station top-up transaction.
96
96
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/EstimatedFixedFee} and HTTP response
@@ -115,8 +115,8 @@ var FeeStationApi = exports["default"] = /*#__PURE__*/function () {
115
115
  }
116
116
 
117
117
  /**
118
- * Estimate fee for Fee Station transaction
119
- * This operation estimates the gas fee required for a top-up transaction sent by [Fee Station](https://manuals.cobo.com/en/portal/fee-station/introduction) to provide gas to the sender of the original transaction. You need to provide the token ID and transfer amount. For more information about transaction fee models and how fees are calculated, refer to [Estimate transaction fee](https://www.cobo.com/developers/v2/guides/transactions/estimate-fees).
118
+ * Estimate transaction fee
119
+ * <Note>This operation is **deprecated**. Please use the enhanced version [Check Fee Station usage](https://www.cobo.com/developers/v2/api-references/feestation/check-fee-station-usage) instead.</Note> This operation estimates the transaction fee of a token transfer based on the fee model that the chain uses, considering factors such as network congestion and transaction complexity. You need to specify the transaction information, including destination address, token ID. The response can contain different properties based on the transaction fee model used by the chain. For the legacy, EIP-1559, and UTXO fee models, Cobo also supports three different transaction speed levels: slow, recommended, and fast. For more information about estimating transaction fees, refer to [Estimate transaction fee](https://www.cobo.com/developers/v2/guides/transactions/estimate-fees).
120
120
  * @param {Object} opts Optional parameters
121
121
  * @param {module:model/FeeStationTransfer} opts.FeeStationTransfer The information about a Fee Station top-up transaction.
122
122
  * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/EstimatedFixedFee}