@cobo/cobo-waas2 1.9.0 → 1.10.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 (89) hide show
  1. package/README.md +40 -4
  2. package/dist/ApiClient.js +1 -1
  3. package/dist/api/DevelopersApi.js +4 -4
  4. package/dist/api/StakingsApi.js +400 -6
  5. package/dist/api/SwapsApi.js +360 -0
  6. package/dist/api/TransactionsApi.js +4 -4
  7. package/dist/index.js +164 -3
  8. package/dist/model/AddressesEventData.js +4 -4
  9. package/dist/model/AddressesEventDataAllOfAddresses.js +295 -0
  10. package/dist/model/BTCEIP191MessageSignDestination.js +1 -1
  11. package/dist/model/BabylonAirdropPop.js +186 -0
  12. package/dist/model/BabylonAirdropRegistration.js +172 -0
  13. package/dist/model/BabylonEligibleAirdrop.js +157 -0
  14. package/dist/model/BabylonRegistrationRequestStatus.js +66 -0
  15. package/dist/model/BabylonRegistrationStatus.js +66 -0
  16. package/dist/model/BabylonStakingRegistration.js +185 -0
  17. package/dist/model/ContractCallSource.js +6 -0
  18. package/dist/model/CreateBabylonAirdropRegistration201Response.js +87 -0
  19. package/dist/model/CreateBabylonAirdropRegistrationRequest.js +105 -0
  20. package/dist/model/CreateBabylonStakingRegistration201Response.js +87 -0
  21. package/dist/model/CreateBabylonStakingRegistrationRequest.js +103 -0
  22. package/dist/model/CreateSwapActivityRequest.js +153 -0
  23. package/dist/model/CreateSwapQuote201Response.js +264 -0
  24. package/dist/model/CreateSwapQuoteRequest.js +166 -0
  25. package/dist/model/ListBabylonAirdropRegistrations200Response.js +123 -0
  26. package/dist/model/ListBabylonEligibleAirdrops200Response.js +123 -0
  27. package/dist/model/ListBabylonEligibleStakings200Response.js +123 -0
  28. package/dist/model/ListBabylonEligibleStakings200ResponseDataInner.js +141 -0
  29. package/dist/model/ListBabylonStakingRegistrations200Response.js +123 -0
  30. package/dist/model/{SwapSummary.js → ListEnableTokenPairs200Response.js} +51 -49
  31. package/dist/model/ListSwapActivities200Response.js +123 -0
  32. package/dist/model/MessageSignSource.js +6 -0
  33. package/dist/model/MpcContractCallSource.js +16 -0
  34. package/dist/model/MpcMessageSignSource.js +16 -0
  35. package/dist/model/MpcSigningGroup.js +27 -4
  36. package/dist/model/MpcTransferSource.js +16 -0
  37. package/dist/model/QueryGuardPubkey200ResponseAddressesInner.js +2 -2
  38. package/dist/model/StakingPoolId.js +30 -0
  39. package/dist/model/StakingPoolType.js +15 -0
  40. package/dist/model/SwapQuote.js +203 -0
  41. package/dist/model/TransactionDestination.js +4 -4
  42. package/dist/model/TransactionRawTxInfo.js +16 -0
  43. package/dist/model/TransactionRbfSource.js +6 -0
  44. package/dist/model/TransactionUtxoChange.js +101 -0
  45. package/dist/model/TransferSource.js +6 -0
  46. package/dist/model/WebhookEventData.js +2 -2
  47. package/docs/AddressesEventData.md +1 -1
  48. package/docs/AddressesEventDataAllOfAddresses.md +19 -0
  49. package/docs/BabylonAirdropPop.md +14 -0
  50. package/docs/BabylonAirdropRegistration.md +16 -0
  51. package/docs/BabylonEligibleAirdrop.md +14 -0
  52. package/docs/BabylonRegistrationRequestStatus.md +14 -0
  53. package/docs/BabylonRegistrationStatus.md +14 -0
  54. package/docs/BabylonStakingRegistration.md +17 -0
  55. package/docs/ContractCallSource.md +1 -0
  56. package/docs/CreateBabylonAirdropRegistration201Response.md +9 -0
  57. package/docs/CreateBabylonAirdropRegistrationRequest.md +10 -0
  58. package/docs/CreateBabylonStakingRegistration201Response.md +9 -0
  59. package/docs/CreateBabylonStakingRegistrationRequest.md +10 -0
  60. package/docs/CreateSwapActivityRequest.md +12 -0
  61. package/docs/CreateSwapQuote201Response.md +17 -0
  62. package/docs/CreateSwapQuoteRequest.md +13 -0
  63. package/docs/DevelopersApi.md +2 -2
  64. package/docs/ListBabylonAirdropRegistrations200Response.md +10 -0
  65. package/docs/ListBabylonEligibleAirdrops200Response.md +10 -0
  66. package/docs/ListBabylonEligibleStakings200Response.md +10 -0
  67. package/docs/ListBabylonEligibleStakings200ResponseDataInner.md +13 -0
  68. package/docs/ListBabylonStakingRegistrations200Response.md +10 -0
  69. package/docs/ListEnableTokenPairs200Response.md +10 -0
  70. package/docs/ListSwapActivities200Response.md +10 -0
  71. package/docs/MessageSignSource.md +1 -0
  72. package/docs/MpcContractCallSource.md +1 -0
  73. package/docs/MpcMessageSignSource.md +1 -0
  74. package/docs/MpcSigningGroup.md +1 -1
  75. package/docs/MpcTransferSource.md +1 -0
  76. package/docs/QueryGuardPubkey200ResponseAddressesInner.md +1 -1
  77. package/docs/StakingPoolId.md +12 -0
  78. package/docs/StakingPoolType.md +6 -0
  79. package/docs/StakingsApi.md +449 -1
  80. package/docs/SwapQuote.md +16 -0
  81. package/docs/SwapsApi.md +348 -0
  82. package/docs/TransactionRawTxInfo.md +1 -0
  83. package/docs/TransactionRbfSource.md +1 -0
  84. package/docs/TransactionUtxoChange.md +10 -0
  85. package/docs/TransactionsApi.md +2 -2
  86. package/docs/TransferSource.md +1 -0
  87. package/docs/WebhookEventData.md +1 -1
  88. package/package.json +2 -2
  89. package/docs/SwapSummary.md +0 -10
@@ -0,0 +1,360 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+ var _ApiClient = _interopRequireDefault(require("../ApiClient"));
8
+ var _CreateSwapActivityRequest = _interopRequireDefault(require("../model/CreateSwapActivityRequest"));
9
+ var _CreateSwapQuote201Response = _interopRequireDefault(require("../model/CreateSwapQuote201Response"));
10
+ var _CreateSwapQuoteRequest = _interopRequireDefault(require("../model/CreateSwapQuoteRequest"));
11
+ var _ErrorResponse = _interopRequireDefault(require("../model/ErrorResponse"));
12
+ var _ListEnableTokenPairs200Response = _interopRequireDefault(require("../model/ListEnableTokenPairs200Response"));
13
+ var _ListSwapActivities200Response = _interopRequireDefault(require("../model/ListSwapActivities200Response"));
14
+ var _SwapActivity = _interopRequireDefault(require("../model/SwapActivity"));
15
+ var _SwapQuote = _interopRequireDefault(require("../model/SwapQuote"));
16
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
17
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
18
+ function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
19
+ function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
20
+ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
21
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
22
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /**
23
+ * Cobo Wallet as a Service 2.0
24
+ *
25
+ * Contact: help@cobo.com
26
+ *
27
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
28
+ * https://openapi-generator.tech
29
+ * Do not edit the class manually.
30
+ *
31
+ */
32
+ /**
33
+ * Swaps service.
34
+ * @module api/SwapsApi
35
+ */
36
+ var SwapsApi = exports["default"] = /*#__PURE__*/function () {
37
+ /**
38
+ * Constructs a new SwapsApi.
39
+ * @alias module:api/SwapsApi
40
+ * @class
41
+ * @param {module:ApiClient} [apiClient] Optional API client implementation to use,
42
+ * default to {@link module:ApiClient#instance} if unspecified.
43
+ */
44
+ function SwapsApi(apiClient) {
45
+ _classCallCheck(this, SwapsApi);
46
+ this.apiClient = apiClient || _ApiClient["default"].instance;
47
+ }
48
+
49
+ /**
50
+ * Create Swap Activity
51
+ * This operation to create a swap activity.
52
+ * @param {module:model/CreateSwapActivityRequest} CreateSwapActivityRequest The request body for creating a swap activity.
53
+ * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/SwapActivity} and HTTP response
54
+ */
55
+ return _createClass(SwapsApi, [{
56
+ key: "createSwapActivityWithHttpInfo",
57
+ value: function createSwapActivityWithHttpInfo(CreateSwapActivityRequest) {
58
+ var postBody = CreateSwapActivityRequest;
59
+ if (postBody && postBody.toJSON) {
60
+ postBody = postBody.toJSON();
61
+ }
62
+ // verify the required parameter 'CreateSwapActivityRequest' is set
63
+ if (CreateSwapActivityRequest === undefined || CreateSwapActivityRequest === null) {
64
+ throw new Error("Missing the required parameter 'CreateSwapActivityRequest' when calling createSwapActivity");
65
+ }
66
+ var pathParams = {};
67
+ var queryParams = {};
68
+ var headerParams = {};
69
+ var formParams = {};
70
+ var authNames = ['OAuth2'];
71
+ var contentTypes = ['application/json'];
72
+ var accepts = ['application/json'];
73
+ var returnType = _SwapActivity["default"];
74
+ return this.apiClient.callApi('/swaps/swap', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
75
+ }
76
+
77
+ /**
78
+ * Create Swap Activity
79
+ * This operation to create a swap activity.
80
+ * @param {module:model/CreateSwapActivityRequest} CreateSwapActivityRequest The request body for creating a swap activity.
81
+ * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/SwapActivity}
82
+ */
83
+ }, {
84
+ key: "createSwapActivity",
85
+ value: function createSwapActivity(CreateSwapActivityRequest) {
86
+ return this.createSwapActivityWithHttpInfo(CreateSwapActivityRequest).then(function (response_and_data) {
87
+ return response_and_data.data;
88
+ });
89
+ }
90
+
91
+ /**
92
+ * Create Swap Quote
93
+ * This operation retrieves a quote for swapping between two tokens. Either pay_amount or receive_amount must be provided.
94
+ * @param {module:model/CreateSwapQuoteRequest} CreateSwapQuoteRequest The request body for creating a swap activity.
95
+ * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/CreateSwapQuote201Response} and HTTP response
96
+ */
97
+ }, {
98
+ key: "createSwapQuoteWithHttpInfo",
99
+ value: function createSwapQuoteWithHttpInfo(CreateSwapQuoteRequest) {
100
+ var postBody = CreateSwapQuoteRequest;
101
+ if (postBody && postBody.toJSON) {
102
+ postBody = postBody.toJSON();
103
+ }
104
+ // verify the required parameter 'CreateSwapQuoteRequest' is set
105
+ if (CreateSwapQuoteRequest === undefined || CreateSwapQuoteRequest === null) {
106
+ throw new Error("Missing the required parameter 'CreateSwapQuoteRequest' when calling createSwapQuote");
107
+ }
108
+ var pathParams = {};
109
+ var queryParams = {};
110
+ var headerParams = {};
111
+ var formParams = {};
112
+ var authNames = ['OAuth2'];
113
+ var contentTypes = ['application/json'];
114
+ var accepts = ['application/json'];
115
+ var returnType = _CreateSwapQuote201Response["default"];
116
+ return this.apiClient.callApi('/swaps/quote', 'POST', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
117
+ }
118
+
119
+ /**
120
+ * Create Swap Quote
121
+ * This operation retrieves a quote for swapping between two tokens. Either pay_amount or receive_amount must be provided.
122
+ * @param {module:model/CreateSwapQuoteRequest} CreateSwapQuoteRequest The request body for creating a swap activity.
123
+ * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/CreateSwapQuote201Response}
124
+ */
125
+ }, {
126
+ key: "createSwapQuote",
127
+ value: function createSwapQuote(CreateSwapQuoteRequest) {
128
+ return this.createSwapQuoteWithHttpInfo(CreateSwapQuoteRequest).then(function (response_and_data) {
129
+ return response_and_data.data;
130
+ });
131
+ }
132
+
133
+ /**
134
+ * Get Swap Activity Details
135
+ * This operation retrieves the details of a swap activity.
136
+ * @param {String} activity_id The unique id of the activity.
137
+ * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/SwapActivity} and HTTP response
138
+ */
139
+ }, {
140
+ key: "getSwapActivityWithHttpInfo",
141
+ value: function getSwapActivityWithHttpInfo(activity_id) {
142
+ var postBody = null;
143
+ if (postBody && postBody.toJSON) {
144
+ postBody = postBody.toJSON();
145
+ }
146
+ // verify the required parameter 'activity_id' is set
147
+ if (activity_id === undefined || activity_id === null) {
148
+ throw new Error("Missing the required parameter 'activity_id' when calling getSwapActivity");
149
+ }
150
+ var pathParams = {
151
+ 'activity_id': activity_id
152
+ };
153
+ var queryParams = {};
154
+ var headerParams = {};
155
+ var formParams = {};
156
+ var authNames = ['CoboAuth'];
157
+ var contentTypes = [];
158
+ var accepts = ['application/json'];
159
+ var returnType = _SwapActivity["default"];
160
+ return this.apiClient.callApi('/swaps/activities/{activity_id}', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
161
+ }
162
+
163
+ /**
164
+ * Get Swap Activity Details
165
+ * This operation retrieves the details of a swap activity.
166
+ * @param {String} activity_id The unique id of the activity.
167
+ * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/SwapActivity}
168
+ */
169
+ }, {
170
+ key: "getSwapActivity",
171
+ value: function getSwapActivity(activity_id) {
172
+ return this.getSwapActivityWithHttpInfo(activity_id).then(function (response_and_data) {
173
+ return response_and_data.data;
174
+ });
175
+ }
176
+
177
+ /**
178
+ * Get Current Swap Rate
179
+ * This operation retrieves the current market exchange rate and estimated amount for swapping between two tokens. Either pay_amount or receive_amount must be provided.
180
+ * @param {String} wallet_id The wallet ID.
181
+ * @param {String} pay_token_id Unique id of the token to pay.
182
+ * @param {String} receive_token_id Unique id of the token to receive.
183
+ * @param {Object} opts Optional parameters
184
+ * @param {String} [pay_amount] The amount of pay token to swap.
185
+ * @param {String} [receive_amount] The amount of token to receive.
186
+ * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/SwapQuote} and HTTP response
187
+ */
188
+ }, {
189
+ key: "getSwapQuoteWithHttpInfo",
190
+ value: function getSwapQuoteWithHttpInfo(wallet_id, pay_token_id, receive_token_id, opts) {
191
+ opts = opts || {};
192
+ var postBody = null;
193
+ if (postBody && postBody.toJSON) {
194
+ postBody = postBody.toJSON();
195
+ }
196
+ // verify the required parameter 'wallet_id' is set
197
+ if (wallet_id === undefined || wallet_id === null) {
198
+ throw new Error("Missing the required parameter 'wallet_id' when calling getSwapQuote");
199
+ }
200
+ // verify the required parameter 'pay_token_id' is set
201
+ if (pay_token_id === undefined || pay_token_id === null) {
202
+ throw new Error("Missing the required parameter 'pay_token_id' when calling getSwapQuote");
203
+ }
204
+ // verify the required parameter 'receive_token_id' is set
205
+ if (receive_token_id === undefined || receive_token_id === null) {
206
+ throw new Error("Missing the required parameter 'receive_token_id' when calling getSwapQuote");
207
+ }
208
+ var pathParams = {};
209
+ var queryParams = {
210
+ 'wallet_id': wallet_id,
211
+ 'pay_token_id': pay_token_id,
212
+ 'receive_token_id': receive_token_id,
213
+ 'pay_amount': opts['pay_amount'],
214
+ 'receive_amount': opts['receive_amount']
215
+ };
216
+ var headerParams = {};
217
+ var formParams = {};
218
+ var authNames = ['CoboAuth'];
219
+ var contentTypes = [];
220
+ var accepts = ['application/json'];
221
+ var returnType = _SwapQuote["default"];
222
+ return this.apiClient.callApi('/swaps/quote', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
223
+ }
224
+
225
+ /**
226
+ * Get Current Swap Rate
227
+ * This operation retrieves the current market exchange rate and estimated amount for swapping between two tokens. Either pay_amount or receive_amount must be provided.
228
+ * @param {String} wallet_id The wallet ID.
229
+ * @param {String} pay_token_id Unique id of the token to pay.
230
+ * @param {String} receive_token_id Unique id of the token to receive.
231
+ * @param {Object} opts Optional parameters
232
+ * @param {String} opts.pay_amount The amount of pay token to swap.
233
+ * @param {String} opts.receive_amount The amount of token to receive.
234
+ * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/SwapQuote}
235
+ */
236
+ }, {
237
+ key: "getSwapQuote",
238
+ value: function getSwapQuote(wallet_id, pay_token_id, receive_token_id, opts) {
239
+ return this.getSwapQuoteWithHttpInfo(wallet_id, pay_token_id, receive_token_id, opts).then(function (response_and_data) {
240
+ return response_and_data.data;
241
+ });
242
+ }
243
+
244
+ /**
245
+ * List Supported Token Pairs
246
+ * This operation retrieves all supported token pairs for swaps in a specified wallet.
247
+ * @param {Object} opts Optional parameters
248
+ * @param {Number} [limit = 10)] The maximum number of objects to return. For most operations, the value range is [1, 50].
249
+ * @param {String} [before] 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.
250
+ * @param {String} [after] 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.
251
+ * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/ListEnableTokenPairs200Response} and HTTP response
252
+ */
253
+ }, {
254
+ key: "listEnableTokenPairsWithHttpInfo",
255
+ value: function listEnableTokenPairsWithHttpInfo(opts) {
256
+ opts = opts || {};
257
+ var postBody = null;
258
+ if (postBody && postBody.toJSON) {
259
+ postBody = postBody.toJSON();
260
+ }
261
+ var pathParams = {};
262
+ var queryParams = {
263
+ 'limit': opts['limit'],
264
+ 'before': opts['before'],
265
+ 'after': opts['after']
266
+ };
267
+ var headerParams = {};
268
+ var formParams = {};
269
+ var authNames = ['CoboAuth'];
270
+ var contentTypes = [];
271
+ var accepts = ['application/json'];
272
+ var returnType = _ListEnableTokenPairs200Response["default"];
273
+ return this.apiClient.callApi('/swaps/enabled_pairs', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
274
+ }
275
+
276
+ /**
277
+ * List Supported Token Pairs
278
+ * This operation retrieves all supported token pairs for swaps in a specified wallet.
279
+ * @param {Object} opts Optional parameters
280
+ * @param {Number} opts.limit The maximum number of objects to return. For most operations, the value range is [1, 50]. (default to 10)
281
+ * @param {String} opts.before 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.
282
+ * @param {String} opts.after 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.
283
+ * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/ListEnableTokenPairs200Response}
284
+ */
285
+ }, {
286
+ key: "listEnableTokenPairs",
287
+ value: function listEnableTokenPairs(opts) {
288
+ return this.listEnableTokenPairsWithHttpInfo(opts).then(function (response_and_data) {
289
+ return response_and_data.data;
290
+ });
291
+ }
292
+
293
+ /**
294
+ * List Swap Activities
295
+ * This operation retrieves a list of swap activities.
296
+ * @param {Object} opts Optional parameters
297
+ * @param {module:model/String} [status]
298
+ * @param {Number} [min_updated_timestamp] The start time of the query. All staking activities updated after the specified time will be retrieved. The time is in Unix timestamp format, measured in milliseconds.
299
+ * @param {Number} [max_updated_timestamp] The end time of the query. All staking activities updated before the specified time will be retrieved. The time is in Unix timestamp format, measured in milliseconds.
300
+ * @param {String} [initiator] The activity initiator, which is your API key by default. You can also specify the initiator when creating the activity.
301
+ * @param {Number} [limit = 10)] The maximum number of objects to return. For most operations, the value range is [1, 50].
302
+ * @param {String} [before] 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.
303
+ * @param {String} [after] 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.
304
+ * @param {String} [sort_by = '')] The field used for sorting.
305
+ * @param {module:model/String} [direction = '')] The sort direction. Possible values include: - `ASC`: Sort the results in ascending order. - `DESC`: Sort the results in descending order.
306
+ * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/ListSwapActivities200Response} and HTTP response
307
+ */
308
+ }, {
309
+ key: "listSwapActivitiesWithHttpInfo",
310
+ value: function listSwapActivitiesWithHttpInfo(opts) {
311
+ opts = opts || {};
312
+ var postBody = null;
313
+ if (postBody && postBody.toJSON) {
314
+ postBody = postBody.toJSON();
315
+ }
316
+ var pathParams = {};
317
+ var queryParams = {
318
+ 'status': opts['status'],
319
+ 'min_updated_timestamp': opts['min_updated_timestamp'],
320
+ 'max_updated_timestamp': opts['max_updated_timestamp'],
321
+ 'initiator': opts['initiator'],
322
+ 'limit': opts['limit'],
323
+ 'before': opts['before'],
324
+ 'after': opts['after'],
325
+ 'sort_by': opts['sort_by'],
326
+ 'direction': opts['direction']
327
+ };
328
+ var headerParams = {};
329
+ var formParams = {};
330
+ var authNames = ['CoboAuth'];
331
+ var contentTypes = [];
332
+ var accepts = ['application/json'];
333
+ var returnType = _ListSwapActivities200Response["default"];
334
+ return this.apiClient.callApi('/swaps/activities', 'GET', pathParams, queryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, null);
335
+ }
336
+
337
+ /**
338
+ * List Swap Activities
339
+ * This operation retrieves a list of swap activities.
340
+ * @param {Object} opts Optional parameters
341
+ * @param {module:model/String} opts.status
342
+ * @param {Number} opts.min_updated_timestamp The start time of the query. All staking activities updated after the specified time will be retrieved. The time is in Unix timestamp format, measured in milliseconds.
343
+ * @param {Number} opts.max_updated_timestamp The end time of the query. All staking activities updated before the specified time will be retrieved. The time is in Unix timestamp format, measured in milliseconds.
344
+ * @param {String} opts.initiator The activity initiator, which is your API key by default. You can also specify the initiator when creating the activity.
345
+ * @param {Number} opts.limit The maximum number of objects to return. For most operations, the value range is [1, 50]. (default to 10)
346
+ * @param {String} opts.before 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.
347
+ * @param {String} opts.after 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.
348
+ * @param {String} opts.sort_by The field used for sorting. (default to '')
349
+ * @param {module:model/String} opts.direction The sort direction. Possible values include: - `ASC`: Sort the results in ascending order. - `DESC`: Sort the results in descending order. (default to '')
350
+ * @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/ListSwapActivities200Response}
351
+ */
352
+ }, {
353
+ key: "listSwapActivities",
354
+ value: function listSwapActivities(opts) {
355
+ return this.listSwapActivitiesWithHttpInfo(opts).then(function (response_and_data) {
356
+ return response_and_data.data;
357
+ });
358
+ }
359
+ }]);
360
+ }();
@@ -590,7 +590,7 @@ var TransactionsApi = exports["default"] = /*#__PURE__*/function () {
590
590
 
591
591
  /**
592
592
  * Resend transaction
593
- * This operation resends a specified transaction. Resending a transaction means retrying a previously failed transaction. For more details about resending a transaction, see [Resend a transaction](/v2/guides/transactions/manage-transactions#resend-a-transaction). A transaction can be resent if its status is `failed`. <Note>This operation only applies to transactions from MPC Wallets in the SOL token.</Note>
593
+ * This operation resends a specified transaction. Resending a transaction means retrying a previously failed transaction. For more details about resending a transaction, see [Resend a transaction](https://www.cobo.com/developers/v2/guides/transactions/manage-transactions#resend-a-transaction). A transaction can be resent if its status is `failed`. <Note>This operation only applies to transactions from MPC Wallets in the SOL token.</Note>
594
594
  * @param {String} transaction_id The transaction ID.
595
595
  * @param {Object} opts Optional parameters
596
596
  * @param {module:model/TransactionResend} [TransactionResend] The request body to resend transactions
@@ -623,7 +623,7 @@ var TransactionsApi = exports["default"] = /*#__PURE__*/function () {
623
623
 
624
624
  /**
625
625
  * Resend transaction
626
- * This operation resends a specified transaction. Resending a transaction means retrying a previously failed transaction. For more details about resending a transaction, see [Resend a transaction](/v2/guides/transactions/manage-transactions#resend-a-transaction). A transaction can be resent if its status is `failed`. <Note>This operation only applies to transactions from MPC Wallets in the SOL token.</Note>
626
+ * This operation resends a specified transaction. Resending a transaction means retrying a previously failed transaction. For more details about resending a transaction, see [Resend a transaction](https://www.cobo.com/developers/v2/guides/transactions/manage-transactions#resend-a-transaction). A transaction can be resent if its status is `failed`. <Note>This operation only applies to transactions from MPC Wallets in the SOL token.</Note>
627
627
  * @param {String} transaction_id The transaction ID.
628
628
  * @param {Object} opts Optional parameters
629
629
  * @param {module:model/TransactionResend} opts.TransactionResend The request body to resend transactions
@@ -683,7 +683,7 @@ var TransactionsApi = exports["default"] = /*#__PURE__*/function () {
683
683
 
684
684
  /**
685
685
  * Speed up transaction
686
- * This operation accelerates a specified transaction. Speeding up a transaction will trigger a Replace-By-Fee (RBF) transaction which is a new version of the original transaction. For more details about speeding up a transaction, refer to [Speed up a transaction](/v2/guides/transactions/manage-transactions#speed-up-a-transaction). You can use the `address` or `included_utxos` properties in the request body to specify the address or UTXOs that will cover the transaction fee. Generally, the transaction fee is paid by the original transaction's source. If that source's balance is insufficient, the specified address or UTXOs can be used to cover the fee. A transaction can be sped up only if its status is `Broadcasting`. <Note>This operation only applies to transactions from MPC Wallets and Smart Contract Wallets. It does not apply to transactions on the following chains: VET, TRON, TVET, SOL, and TON.</Note> <Info>If you speed up a transaction from a Smart Contract Wallet, two RBF transactions will be triggered, one for the transaction from the Smart Contract Wallet, and the other for the transaction from the Delegate.</Info>
686
+ * This operation accelerates a specified transaction. Speeding up a transaction will trigger a Replace-By-Fee (RBF) transaction which is a new version of the original transaction. For more details about speeding up a transaction, refer to [Speed up a transaction](https://www.cobo.com/developers/v2/guides/transactions/manage-transactions#speed-up-a-transaction). You can use the `address` or `included_utxos` properties in the request body to specify the address or UTXOs that will cover the transaction fee. Generally, the transaction fee is paid by the original transaction's source. If that source's balance is insufficient, the specified address or UTXOs can be used to cover the fee. A transaction can be sped up only if its status is `Broadcasting`. <Note>This operation only applies to transactions from MPC Wallets and Smart Contract Wallets. It does not apply to transactions on the following chains: VET, TRON, TVET, SOL, and TON.</Note> <Info>If you speed up a transaction from a Smart Contract Wallet, two RBF transactions will be triggered, one for the transaction from the Smart Contract Wallet, and the other for the transaction from the Delegate.</Info>
687
687
  * @param {String} transaction_id The transaction ID.
688
688
  * @param {Object} opts Optional parameters
689
689
  * @param {module:model/TransactionRbf} [TransactionRbf] The request body to drop or to speed up transactions
@@ -716,7 +716,7 @@ var TransactionsApi = exports["default"] = /*#__PURE__*/function () {
716
716
 
717
717
  /**
718
718
  * Speed up transaction
719
- * This operation accelerates a specified transaction. Speeding up a transaction will trigger a Replace-By-Fee (RBF) transaction which is a new version of the original transaction. For more details about speeding up a transaction, refer to [Speed up a transaction](/v2/guides/transactions/manage-transactions#speed-up-a-transaction). You can use the `address` or `included_utxos` properties in the request body to specify the address or UTXOs that will cover the transaction fee. Generally, the transaction fee is paid by the original transaction's source. If that source's balance is insufficient, the specified address or UTXOs can be used to cover the fee. A transaction can be sped up only if its status is `Broadcasting`. <Note>This operation only applies to transactions from MPC Wallets and Smart Contract Wallets. It does not apply to transactions on the following chains: VET, TRON, TVET, SOL, and TON.</Note> <Info>If you speed up a transaction from a Smart Contract Wallet, two RBF transactions will be triggered, one for the transaction from the Smart Contract Wallet, and the other for the transaction from the Delegate.</Info>
719
+ * This operation accelerates a specified transaction. Speeding up a transaction will trigger a Replace-By-Fee (RBF) transaction which is a new version of the original transaction. For more details about speeding up a transaction, refer to [Speed up a transaction](https://www.cobo.com/developers/v2/guides/transactions/manage-transactions#speed-up-a-transaction). You can use the `address` or `included_utxos` properties in the request body to specify the address or UTXOs that will cover the transaction fee. Generally, the transaction fee is paid by the original transaction's source. If that source's balance is insufficient, the specified address or UTXOs can be used to cover the fee. A transaction can be sped up only if its status is `Broadcasting`. <Note>This operation only applies to transactions from MPC Wallets and Smart Contract Wallets. It does not apply to transactions on the following chains: VET, TRON, TVET, SOL, and TON.</Note> <Info>If you speed up a transaction from a Smart Contract Wallet, two RBF transactions will be triggered, one for the transaction from the Smart Contract Wallet, and the other for the transaction from the Delegate.</Info>
720
720
  * @param {String} transaction_id The transaction ID.
721
721
  * @param {Object} opts Optional parameters
722
722
  * @param {module:model/TransactionRbf} opts.TransactionRbf The request body to drop or to speed up transactions