@cobo/cobo-waas2 1.9.0 → 1.11.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 (148) hide show
  1. package/README.md +47 -4
  2. package/dist/ApiClient.js +1 -1
  3. package/dist/api/AddressBooksApi.js +1 -1
  4. package/dist/api/DevelopersApi.js +7 -7
  5. package/dist/api/DevelopersWebhooksApi.js +8 -8
  6. package/dist/api/StakingsApi.js +412 -18
  7. package/dist/api/SwapsApi.js +360 -0
  8. package/dist/api/TransactionsApi.js +18 -18
  9. package/dist/api/TravelRuleApi.js +4 -4
  10. package/dist/api/WalletsApi.js +19 -19
  11. package/dist/api/WalletsExchangeWalletApi.js +1 -1
  12. package/dist/api/WalletsMPCWalletsApi.js +19 -19
  13. package/dist/api/WalletsSmartContractWalletsApi.js +1 -1
  14. package/dist/index.js +213 -3
  15. package/dist/model/AddressesEventData.js +4 -4
  16. package/dist/model/AddressesEventDataAllOfAddresses.js +295 -0
  17. package/dist/model/BTCEIP191MessageSignDestination.js +1 -1
  18. package/dist/model/BabylonAirdropPop.js +186 -0
  19. package/dist/model/BabylonAirdropRegistration.js +172 -0
  20. package/dist/model/BabylonEligibleAirdrop.js +157 -0
  21. package/dist/model/BabylonRegistrationRequestStatus.js +66 -0
  22. package/dist/model/BabylonRegistrationStatus.js +66 -0
  23. package/dist/model/BabylonStakingRegistration.js +185 -0
  24. package/dist/model/ChainInfo.js +2 -2
  25. package/dist/model/ContractCallDestination.js +42 -8
  26. package/dist/model/ContractCallDestinationType.js +5 -0
  27. package/dist/model/ContractCallSource.js +6 -0
  28. package/dist/model/CreateBabylonAirdropRegistration201Response.js +87 -0
  29. package/dist/model/CreateBabylonAirdropRegistrationRequest.js +105 -0
  30. package/dist/model/CreateBabylonStakingRegistration201Response.js +87 -0
  31. package/dist/model/CreateBabylonStakingRegistrationRequest.js +103 -0
  32. package/dist/model/CreateSwapActivityRequest.js +153 -0
  33. package/dist/model/CreateSwapQuote201Response.js +264 -0
  34. package/dist/model/CreateSwapQuoteRequest.js +166 -0
  35. package/dist/model/EstimatedEvmEip1559FeeSlow.js +23 -0
  36. package/dist/model/EstimatedEvmLegacyFeeSlow.js +23 -0
  37. package/dist/model/ExtendedTokenInfo.js +3 -3
  38. package/dist/model/FeeReserved.js +87 -0
  39. package/dist/model/ListBabylonAirdropRegistrations200Response.js +123 -0
  40. package/dist/model/ListBabylonEligibleAirdrops200Response.js +123 -0
  41. package/dist/model/ListBabylonEligibleStakings200Response.js +123 -0
  42. package/dist/model/ListBabylonEligibleStakings200ResponseDataInner.js +141 -0
  43. package/dist/model/ListBabylonStakingRegistrations200Response.js +123 -0
  44. package/dist/model/{SwapSummary.js → ListEnableTokenPairs200Response.js} +51 -49
  45. package/dist/model/ListSwapActivities200Response.js +123 -0
  46. package/dist/model/MaxFeeAmount.js +1 -1
  47. package/dist/model/MessageSignSource.js +6 -0
  48. package/dist/model/MpcContractCallSource.js +16 -0
  49. package/dist/model/MpcMessageSignSource.js +16 -0
  50. package/dist/model/MpcSigningGroup.js +27 -4
  51. package/dist/model/MpcTransferSource.js +16 -0
  52. package/dist/model/QueryGuardPubkey200ResponseAddressesInner.js +2 -2
  53. package/dist/model/SolContractCallAccount.js +133 -0
  54. package/dist/model/SolContractCallDestination.js +139 -0
  55. package/dist/model/SolContractCallInstruction.js +158 -0
  56. package/dist/model/StakingPoolId.js +30 -0
  57. package/dist/model/StakingPoolType.js +15 -0
  58. package/dist/model/SwapQuote.js +203 -0
  59. package/dist/model/TokenInfo.js +2 -2
  60. package/dist/model/TransactionDestination.js +45 -11
  61. package/dist/model/TransactionDestinationType.js +5 -0
  62. package/dist/model/TransactionFee.js +1 -1
  63. package/dist/model/TransactionFixedFee.js +2 -2
  64. package/dist/model/TransactionRawTxInfo.js +16 -0
  65. package/dist/model/TransactionRbfSource.js +6 -0
  66. package/dist/model/TransactionRequestFee.js +1 -1
  67. package/dist/model/TransactionRequestFixedFee.js +2 -2
  68. package/dist/model/TransactionRequestUtxoFee.js +1 -1
  69. package/dist/model/TransactionSolContractAccount.js +106 -0
  70. package/dist/model/TransactionSolContractDestination.js +137 -0
  71. package/dist/model/TransactionSolContractInstruction.js +134 -0
  72. package/dist/model/TransactionTokeApproval.js +3 -3
  73. package/dist/model/TransactionUtxoChange.js +101 -0
  74. package/dist/model/TransferSource.js +6 -0
  75. package/dist/model/WebhookEventData.js +2 -2
  76. package/docs/AddressBooksApi.md +1 -1
  77. package/docs/AddressesEventData.md +1 -1
  78. package/docs/AddressesEventDataAllOfAddresses.md +19 -0
  79. package/docs/BabylonAirdropPop.md +14 -0
  80. package/docs/BabylonAirdropRegistration.md +16 -0
  81. package/docs/BabylonEligibleAirdrop.md +14 -0
  82. package/docs/BabylonRegistrationRequestStatus.md +14 -0
  83. package/docs/BabylonRegistrationStatus.md +14 -0
  84. package/docs/BabylonStakingRegistration.md +17 -0
  85. package/docs/ChainInfo.md +1 -1
  86. package/docs/ContractCallDestination.md +1 -0
  87. package/docs/ContractCallDestinationType.md +2 -0
  88. package/docs/ContractCallSource.md +1 -0
  89. package/docs/CreateBabylonAirdropRegistration201Response.md +9 -0
  90. package/docs/CreateBabylonAirdropRegistrationRequest.md +10 -0
  91. package/docs/CreateBabylonStakingRegistration201Response.md +9 -0
  92. package/docs/CreateBabylonStakingRegistrationRequest.md +10 -0
  93. package/docs/CreateSwapActivityRequest.md +12 -0
  94. package/docs/CreateSwapQuote201Response.md +17 -0
  95. package/docs/CreateSwapQuoteRequest.md +13 -0
  96. package/docs/DevelopersApi.md +5 -5
  97. package/docs/DevelopersWebhooksApi.md +8 -8
  98. package/docs/EstimatedEvmEip1559FeeSlow.md +1 -0
  99. package/docs/EstimatedEvmLegacyFeeSlow.md +1 -0
  100. package/docs/ExtendedTokenInfo.md +1 -1
  101. package/docs/FeeReserved.md +9 -0
  102. package/docs/ListBabylonAirdropRegistrations200Response.md +10 -0
  103. package/docs/ListBabylonEligibleAirdrops200Response.md +10 -0
  104. package/docs/ListBabylonEligibleStakings200Response.md +10 -0
  105. package/docs/ListBabylonEligibleStakings200ResponseDataInner.md +13 -0
  106. package/docs/ListBabylonStakingRegistrations200Response.md +10 -0
  107. package/docs/ListEnableTokenPairs200Response.md +10 -0
  108. package/docs/ListSwapActivities200Response.md +10 -0
  109. package/docs/MaxFeeAmount.md +1 -1
  110. package/docs/MessageSignSource.md +1 -0
  111. package/docs/MpcContractCallSource.md +1 -0
  112. package/docs/MpcMessageSignSource.md +1 -0
  113. package/docs/MpcSigningGroup.md +1 -1
  114. package/docs/MpcTransferSource.md +1 -0
  115. package/docs/QueryGuardPubkey200ResponseAddressesInner.md +1 -1
  116. package/docs/SolContractCallAccount.md +11 -0
  117. package/docs/SolContractCallDestination.md +10 -0
  118. package/docs/SolContractCallInstruction.md +11 -0
  119. package/docs/StakingPoolId.md +12 -0
  120. package/docs/StakingPoolType.md +6 -0
  121. package/docs/StakingsApi.md +461 -13
  122. package/docs/SwapQuote.md +16 -0
  123. package/docs/SwapsApi.md +348 -0
  124. package/docs/TokenInfo.md +1 -1
  125. package/docs/TransactionDestination.md +1 -0
  126. package/docs/TransactionDestinationType.md +2 -0
  127. package/docs/TransactionFee.md +1 -1
  128. package/docs/TransactionFixedFee.md +1 -1
  129. package/docs/TransactionRawTxInfo.md +1 -0
  130. package/docs/TransactionRbfSource.md +1 -0
  131. package/docs/TransactionRequestFee.md +1 -1
  132. package/docs/TransactionRequestFixedFee.md +1 -1
  133. package/docs/TransactionRequestUtxoFee.md +1 -1
  134. package/docs/TransactionSolContractAccount.md +11 -0
  135. package/docs/TransactionSolContractDestination.md +10 -0
  136. package/docs/TransactionSolContractInstruction.md +11 -0
  137. package/docs/TransactionTokeApproval.md +1 -1
  138. package/docs/TransactionUtxoChange.md +10 -0
  139. package/docs/TransactionsApi.md +16 -16
  140. package/docs/TransferSource.md +1 -0
  141. package/docs/TravelRuleApi.md +4 -4
  142. package/docs/WalletsApi.md +16 -16
  143. package/docs/WalletsExchangeWalletApi.md +1 -1
  144. package/docs/WalletsMPCWalletsApi.md +19 -19
  145. package/docs/WalletsSmartContractWalletsApi.md +1 -1
  146. package/docs/WebhookEventData.md +1 -1
  147. package/package.json +2 -2
  148. package/docs/SwapSummary.md +0 -10
@@ -55,7 +55,7 @@ Name | Type | Description | Notes
55
55
 
56
56
  ### Authorization
57
57
 
58
- [OAuth2](../README.md#OAuth2)
58
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
59
59
 
60
60
  ### HTTP request headers
61
61
 
@@ -101,7 +101,7 @@ This endpoint does not need any parameter.
101
101
 
102
102
  ### Authorization
103
103
 
104
- [OAuth2](../README.md#OAuth2)
104
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
105
105
 
106
106
  ### HTTP request headers
107
107
 
@@ -153,7 +153,7 @@ Name | Type | Description | Notes
153
153
 
154
154
  ### Authorization
155
155
 
156
- [OAuth2](../README.md#OAuth2)
156
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
157
157
 
158
158
  ### HTTP request headers
159
159
 
@@ -205,7 +205,7 @@ Name | Type | Description | Notes
205
205
 
206
206
  ### Authorization
207
207
 
208
- [OAuth2](../README.md#OAuth2)
208
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
209
209
 
210
210
  ### HTTP request headers
211
211
 
@@ -232,7 +232,7 @@ Name | Type | Description | Notes
232
232
 
233
233
  ### Authorization
234
234
 
235
- [OAuth2](../README.md#OAuth2)
235
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
236
236
 
237
237
  ### HTTP request headers
238
238
 
@@ -284,7 +284,7 @@ Name | Type | Description | Notes
284
284
 
285
285
  ### Authorization
286
286
 
287
- [OAuth2](../README.md#OAuth2)
287
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
288
288
 
289
289
  ### HTTP request headers
290
290
 
@@ -334,7 +334,7 @@ Name | Type | Description | Notes
334
334
 
335
335
  ### Authorization
336
336
 
337
- [OAuth2](../README.md#OAuth2)
337
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
338
338
 
339
339
  ### HTTP request headers
340
340
 
@@ -376,7 +376,7 @@ apiInstance.getChainById(chain_id).then((data) => {
376
376
 
377
377
  Name | Type | Description | Notes
378
378
  ------------- | ------------- | ------------- | -------------
379
- **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). |
379
+ **chain_id** | **String**| The chain ID, which is the unique identifier of a blockchain. |
380
380
 
381
381
  ### Return type
382
382
 
@@ -444,7 +444,7 @@ Name | Type | Description | Notes
444
444
 
445
445
  ### Authorization
446
446
 
447
- [OAuth2](../README.md#OAuth2)
447
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
448
448
 
449
449
  ### HTTP request headers
450
450
 
@@ -486,7 +486,7 @@ apiInstance.getTokenById(token_id).then((data) => {
486
486
 
487
487
  Name | Type | Description | Notes
488
488
  ------------- | ------------- | ------------- | -------------
489
- **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). |
489
+ **token_id** | **String**| The token ID, which is the unique identifier of a token. |
490
490
 
491
491
  ### Return type
492
492
 
@@ -544,7 +544,7 @@ Name | Type | Description | Notes
544
544
 
545
545
  ### Authorization
546
546
 
547
- [OAuth2](../README.md#OAuth2)
547
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
548
548
 
549
549
  ### HTTP request headers
550
550
 
@@ -594,7 +594,7 @@ apiInstance.listAddressBalancesByToken(wallet_id, token_id, opts).then((data) =>
594
594
  Name | Type | Description | Notes
595
595
  ------------- | ------------- | ------------- | -------------
596
596
  **wallet_id** | **String**| The wallet ID. |
597
- **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). |
597
+ **token_id** | **String**| The token ID, which is the unique identifier of a token. |
598
598
  **addresses** | **String**| A list of wallet addresses, separated by comma. For addresses requiring a memo, append the memo after the address using the '|' separator (e.g., \"address|memo\"). | [optional]
599
599
  **limit** | **Number**| The maximum number of objects to return. For most operations, the value range is [1, 50]. | [optional] [default to 10]
600
600
  **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]
@@ -606,7 +606,7 @@ Name | Type | Description | Notes
606
606
 
607
607
  ### Authorization
608
608
 
609
- [OAuth2](../README.md#OAuth2)
609
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
610
610
 
611
611
  ### HTTP request headers
612
612
 
@@ -668,7 +668,7 @@ Name | Type | Description | Notes
668
668
 
669
669
  ### Authorization
670
670
 
671
- [OAuth2](../README.md#OAuth2)
671
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
672
672
 
673
673
  ### HTTP request headers
674
674
 
@@ -978,7 +978,7 @@ Name | Type | Description | Notes
978
978
 
979
979
  ### Authorization
980
980
 
981
- [OAuth2](../README.md#OAuth2)
981
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
982
982
 
983
983
  ### HTTP request headers
984
984
 
@@ -1038,7 +1038,7 @@ Name | Type | Description | Notes
1038
1038
 
1039
1039
  ### Authorization
1040
1040
 
1041
- [OAuth2](../README.md#OAuth2)
1041
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
1042
1042
 
1043
1043
  ### HTTP request headers
1044
1044
 
@@ -1102,7 +1102,7 @@ Name | Type | Description | Notes
1102
1102
 
1103
1103
  ### Authorization
1104
1104
 
1105
- [OAuth2](../README.md#OAuth2)
1105
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
1106
1106
 
1107
1107
  ### HTTP request headers
1108
1108
 
@@ -1166,7 +1166,7 @@ Name | Type | Description | Notes
1166
1166
 
1167
1167
  ### Authorization
1168
1168
 
1169
- [OAuth2](../README.md#OAuth2)
1169
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
1170
1170
 
1171
1171
  ### HTTP request headers
1172
1172
 
@@ -1220,7 +1220,7 @@ Name | Type | Description | Notes
1220
1220
 
1221
1221
  ### Authorization
1222
1222
 
1223
- [OAuth2](../README.md#OAuth2)
1223
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
1224
1224
 
1225
1225
  ### HTTP request headers
1226
1226
 
@@ -1274,7 +1274,7 @@ Name | Type | Description | Notes
1274
1274
 
1275
1275
  ### Authorization
1276
1276
 
1277
- [OAuth2](../README.md#OAuth2)
1277
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
1278
1278
 
1279
1279
  ### HTTP request headers
1280
1280
 
@@ -65,7 +65,7 @@ Name | Type | Description | Notes
65
65
 
66
66
  ### Authorization
67
67
 
68
- [OAuth2](../README.md#OAuth2)
68
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
69
69
 
70
70
  ### HTTP request headers
71
71
 
@@ -71,7 +71,7 @@ Name | Type | Description | Notes
71
71
 
72
72
  ### Authorization
73
73
 
74
- [OAuth2](../README.md#OAuth2)
74
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
75
75
 
76
76
  ### HTTP request headers
77
77
 
@@ -125,7 +125,7 @@ Name | Type | Description | Notes
125
125
 
126
126
  ### Authorization
127
127
 
128
- [OAuth2](../README.md#OAuth2)
128
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
129
129
 
130
130
  ### HTTP request headers
131
131
 
@@ -177,7 +177,7 @@ Name | Type | Description | Notes
177
177
 
178
178
  ### Authorization
179
179
 
180
- [OAuth2](../README.md#OAuth2)
180
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
181
181
 
182
182
  ### HTTP request headers
183
183
 
@@ -229,7 +229,7 @@ Name | Type | Description | Notes
229
229
 
230
230
  ### Authorization
231
231
 
232
- [OAuth2](../README.md#OAuth2)
232
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
233
233
 
234
234
  ### HTTP request headers
235
235
 
@@ -283,7 +283,7 @@ Name | Type | Description | Notes
283
283
 
284
284
  ### Authorization
285
285
 
286
- [OAuth2](../README.md#OAuth2)
286
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
287
287
 
288
288
  ### HTTP request headers
289
289
 
@@ -335,7 +335,7 @@ Name | Type | Description | Notes
335
335
 
336
336
  ### Authorization
337
337
 
338
- [OAuth2](../README.md#OAuth2)
338
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
339
339
 
340
340
  ### HTTP request headers
341
341
 
@@ -387,7 +387,7 @@ Name | Type | Description | Notes
387
387
 
388
388
  ### Authorization
389
389
 
390
- [CoboAuth](../README.md#CoboAuth)
390
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
391
391
 
392
392
  ### HTTP request headers
393
393
 
@@ -439,7 +439,7 @@ Name | Type | Description | Notes
439
439
 
440
440
  ### Authorization
441
441
 
442
- [OAuth2](../README.md#OAuth2)
442
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
443
443
 
444
444
  ### HTTP request headers
445
445
 
@@ -489,7 +489,7 @@ Name | Type | Description | Notes
489
489
 
490
490
  ### Authorization
491
491
 
492
- [OAuth2](../README.md#OAuth2)
492
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
493
493
 
494
494
  ### HTTP request headers
495
495
 
@@ -539,7 +539,7 @@ Name | Type | Description | Notes
539
539
 
540
540
  ### Authorization
541
541
 
542
- [OAuth2](../README.md#OAuth2)
542
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
543
543
 
544
544
  ### HTTP request headers
545
545
 
@@ -591,7 +591,7 @@ Name | Type | Description | Notes
591
591
 
592
592
  ### Authorization
593
593
 
594
- [OAuth2](../README.md#OAuth2)
594
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
595
595
 
596
596
  ### HTTP request headers
597
597
 
@@ -697,7 +697,7 @@ Name | Type | Description | Notes
697
697
 
698
698
  ### Authorization
699
699
 
700
- [OAuth2](../README.md#OAuth2)
700
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
701
701
 
702
702
  ### HTTP request headers
703
703
 
@@ -757,7 +757,7 @@ Name | Type | Description | Notes
757
757
 
758
758
  ### Authorization
759
759
 
760
- [CoboAuth](../README.md#CoboAuth)
760
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
761
761
 
762
762
  ### HTTP request headers
763
763
 
@@ -813,7 +813,7 @@ Name | Type | Description | Notes
813
813
 
814
814
  ### Authorization
815
815
 
816
- [OAuth2](../README.md#OAuth2)
816
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
817
817
 
818
818
  ### HTTP request headers
819
819
 
@@ -873,7 +873,7 @@ Name | Type | Description | Notes
873
873
 
874
874
  ### Authorization
875
875
 
876
- [OAuth2](../README.md#OAuth2)
876
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
877
877
 
878
878
  ### HTTP request headers
879
879
 
@@ -933,7 +933,7 @@ Name | Type | Description | Notes
933
933
 
934
934
  ### Authorization
935
935
 
936
- [OAuth2](../README.md#OAuth2)
936
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
937
937
 
938
938
  ### HTTP request headers
939
939
 
@@ -989,7 +989,7 @@ Name | Type | Description | Notes
989
989
 
990
990
  ### Authorization
991
991
 
992
- [OAuth2](../README.md#OAuth2)
992
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
993
993
 
994
994
  ### HTTP request headers
995
995
 
@@ -1043,7 +1043,7 @@ Name | Type | Description | Notes
1043
1043
 
1044
1044
  ### Authorization
1045
1045
 
1046
- [OAuth2](../README.md#OAuth2)
1046
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
1047
1047
 
1048
1048
  ### HTTP request headers
1049
1049
 
@@ -1097,7 +1097,7 @@ Name | Type | Description | Notes
1097
1097
 
1098
1098
  ### Authorization
1099
1099
 
1100
- [OAuth2](../README.md#OAuth2)
1100
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
1101
1101
 
1102
1102
  ### HTTP request headers
1103
1103
 
@@ -54,7 +54,7 @@ Name | Type | Description | Notes
54
54
 
55
55
  ### Authorization
56
56
 
57
- [OAuth2](../README.md#OAuth2)
57
+ [OAuth2](../README.md#OAuth2), [CoboAuth](../README.md#CoboAuth)
58
58
 
59
59
  ### HTTP request headers
60
60
 
@@ -36,7 +36,7 @@ Name | Type | Description | Notes
36
36
  **tss_request_id** | **String** | The TSS request ID. | [optional]
37
37
  **source_key_share_holder_group** | [**SourceGroup**](SourceGroup.md) | | [optional]
38
38
  **target_key_share_holder_group_id** | **String** | The target key share holder group ID. | [optional]
39
- **addresses** | [**[AddressInfo]**](AddressInfo.md) | A list of addresses. | [optional]
39
+ **addresses** | [**[AddressesEventDataAllOfAddresses]**](AddressesEventDataAllOfAddresses.md) | A list of addresses. | [optional]
40
40
  **wallet** | [**WalletInfo**](WalletInfo.md) | | [optional]
41
41
  **vault_id** | **String** | The vault ID. | [optional]
42
42
  **project_id** | **String** | The project ID. | [optional]
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cobo/cobo-waas2",
3
- "version": "1.9.0",
4
- "description": "The Cobo Wallet-as-a-Service (WaaS) 2.0 API is the latest version of Cobos WaaS API offering. It enables you to access Cobos full suite of crypto wallet technologies with powerful and flexible access controls. By encapsulating complex security protocols and streamlining blockchain interactions, this API allows you to concentrate on your core business activities without worrying about the safety of your assets. The WaaS 2.0 API presents the following key features: - A unified API for Cobos [all four wallet types](https://manuals.cobo.com/en/portal/introduction#an-all-in-one-wallet-platform) - Support for 80+ chains and 3000+ tokens - A comprehensive selection of webhook events - Flexible usage models for MPC Wallets, including [Organization-Controlled Wallets](https://manuals.cobo.com/en/portal/mpc-wallets/ocw/introduction) and [User-Controlled Wallets](https://manuals.cobo.com/en/portal/mpc-wallets/ucw/introduction) - Programmatic control of smart contract wallets such as Safe{Wallet} with fine-grained access controls - Seamlessly transfer funds across multiple exchanges, including Binance, OKX, Bybit, Deribit, and more For more information about the WaaS 2.0 API, see [Introduction to WaaS 2.0](https://www.cobo.com/developers/v2/guides/overview/introduction). ",
3
+ "version": "1.11.0",
4
+ "description": "The Cobo Wallet-as-a-Service (WaaS) 2.0 API is the latest version of Cobo's WaaS API offering. It enables you to access Cobo's full suite of crypto wallet technologies with powerful and flexible access controls. By encapsulating complex security protocols and streamlining blockchain interactions, this API allows you to concentrate on your core business activities without worrying about the safety of your assets. The WaaS 2.0 API presents the following key features: - A unified API for Cobo's [all four wallet types](https://manuals.cobo.com/en/portal/introduction#an-all-in-one-wallet-platform) - Support for 80+ chains and 3000+ tokens - A comprehensive selection of webhook events - Flexible usage models for MPC Wallets, including [Organization-Controlled Wallets](https://manuals.cobo.com/en/portal/mpc-wallets/ocw/introduction) and [User-Controlled Wallets](https://manuals.cobo.com/en/portal/mpc-wallets/ucw/introduction) - Programmatic control of smart contract wallets such as Safe{Wallet} with fine-grained access controls - Seamlessly transfer funds across multiple exchanges, including Binance, OKX, Bybit, Deribit, and more For more information about the WaaS 2.0 API, see [Introduction to WaaS 2.0](https://www.cobo.com/developers/v2/guides/overview/introduction). ",
5
5
  "license": "GPL 2.0",
6
6
  "main": "dist/index.js",
7
7
  "scripts": {
@@ -1,10 +0,0 @@
1
- # CoboWaas2.SwapSummary
2
-
3
- ## Properties
4
-
5
- Name | Type | Description | Notes
6
- ------------ | ------------- | ------------- | -------------
7
- **total_usd_value** | **String** | The total USD value of the swap activities, represented as a string. |
8
- **activity_count** | **Number** | The total number of swap activities. |
9
-
10
-