@avalabs/glacier-sdk 2.8.0-canary.ca01c76.0 → 2.8.0-canary.f0b0684.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.
- package/dist/index.d.ts +254 -202
- package/dist/index.js +131 -60
- package/esm/generated/Glacier.d.ts +2 -0
- package/esm/generated/Glacier.js +27 -10
- package/esm/generated/core/ApiError.js +5 -0
- package/esm/generated/core/CancelablePromise.js +11 -6
- package/esm/generated/core/request.js +14 -31
- package/esm/generated/models/ActiveDelegatorDetails.d.ts +6 -3
- package/esm/generated/models/ActiveDelegatorDetails.js +8 -0
- package/esm/generated/models/ActiveValidatorDetails.d.ts +6 -2
- package/esm/generated/models/ActiveValidatorDetails.js +8 -0
- package/esm/generated/models/CompletedDelegatorDetails.d.ts +6 -3
- package/esm/generated/models/CompletedDelegatorDetails.js +8 -0
- package/esm/generated/models/CompletedValidatorDetails.d.ts +6 -2
- package/esm/generated/models/CompletedValidatorDetails.js +8 -0
- package/esm/generated/models/Erc20Contract.d.ts +1 -1
- package/esm/generated/models/ListContractsResponse.d.ts +1 -1
- package/esm/generated/models/PendingDelegatorDetails.d.ts +6 -3
- package/esm/generated/models/PendingDelegatorDetails.js +8 -0
- package/esm/generated/models/PendingValidatorDetails.d.ts +6 -3
- package/esm/generated/models/PendingValidatorDetails.js +8 -0
- package/esm/generated/services/EvmContractsService.d.ts +29 -0
- package/esm/generated/services/EvmContractsService.js +20 -0
- package/esm/generated/services/EvmTransactionsService.d.ts +20 -0
- package/esm/generated/services/EvmTransactionsService.js +13 -0
- package/esm/generated/services/NfTsService.d.ts +0 -18
- package/esm/generated/services/NfTsService.js +0 -13
- package/esm/index.d.ts +1 -0
- package/esm/index.js +7 -0
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -7,6 +7,11 @@ class BaseHttpRequest {
|
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
class ApiError extends Error {
|
|
10
|
+
url;
|
|
11
|
+
status;
|
|
12
|
+
statusText;
|
|
13
|
+
body;
|
|
14
|
+
request;
|
|
10
15
|
constructor(request, response, message) {
|
|
11
16
|
super(message);
|
|
12
17
|
this.name = "ApiError";
|
|
@@ -28,6 +33,14 @@ class CancelError extends Error {
|
|
|
28
33
|
}
|
|
29
34
|
}
|
|
30
35
|
class CancelablePromise {
|
|
36
|
+
[Symbol.toStringTag];
|
|
37
|
+
_isResolved;
|
|
38
|
+
_isRejected;
|
|
39
|
+
_isCancelled;
|
|
40
|
+
_cancelHandlers;
|
|
41
|
+
_promise;
|
|
42
|
+
_resolve;
|
|
43
|
+
_reject;
|
|
31
44
|
constructor(executor) {
|
|
32
45
|
this._isResolved = false;
|
|
33
46
|
this._isRejected = false;
|
|
@@ -37,20 +50,18 @@ class CancelablePromise {
|
|
|
37
50
|
this._resolve = resolve;
|
|
38
51
|
this._reject = reject;
|
|
39
52
|
const onResolve = (value) => {
|
|
40
|
-
var _a;
|
|
41
53
|
if (this._isResolved || this._isRejected || this._isCancelled) {
|
|
42
54
|
return;
|
|
43
55
|
}
|
|
44
56
|
this._isResolved = true;
|
|
45
|
-
|
|
57
|
+
this._resolve?.(value);
|
|
46
58
|
};
|
|
47
59
|
const onReject = (reason) => {
|
|
48
|
-
var _a;
|
|
49
60
|
if (this._isResolved || this._isRejected || this._isCancelled) {
|
|
50
61
|
return;
|
|
51
62
|
}
|
|
52
63
|
this._isRejected = true;
|
|
53
|
-
|
|
64
|
+
this._reject?.(reason);
|
|
54
65
|
};
|
|
55
66
|
const onCancel = (cancelHandler) => {
|
|
56
67
|
if (this._isResolved || this._isRejected || this._isCancelled) {
|
|
@@ -80,7 +91,6 @@ class CancelablePromise {
|
|
|
80
91
|
return this._promise.finally(onFinally);
|
|
81
92
|
}
|
|
82
93
|
cancel() {
|
|
83
|
-
var _a;
|
|
84
94
|
if (this._isResolved || this._isRejected || this._isCancelled) {
|
|
85
95
|
return;
|
|
86
96
|
}
|
|
@@ -96,32 +106,13 @@ class CancelablePromise {
|
|
|
96
106
|
}
|
|
97
107
|
}
|
|
98
108
|
this._cancelHandlers.length = 0;
|
|
99
|
-
|
|
109
|
+
this._reject?.(new CancelError("Request aborted"));
|
|
100
110
|
}
|
|
101
111
|
get isCancelled() {
|
|
102
112
|
return this._isCancelled;
|
|
103
113
|
}
|
|
104
114
|
}
|
|
105
115
|
|
|
106
|
-
var __defProp = Object.defineProperty;
|
|
107
|
-
var __defProps = Object.defineProperties;
|
|
108
|
-
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
109
|
-
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
110
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
111
|
-
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
112
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
113
|
-
var __spreadValues = (a, b) => {
|
|
114
|
-
for (var prop in b || (b = {}))
|
|
115
|
-
if (__hasOwnProp.call(b, prop))
|
|
116
|
-
__defNormalProp(a, prop, b[prop]);
|
|
117
|
-
if (__getOwnPropSymbols)
|
|
118
|
-
for (var prop of __getOwnPropSymbols(b)) {
|
|
119
|
-
if (__propIsEnum.call(b, prop))
|
|
120
|
-
__defNormalProp(a, prop, b[prop]);
|
|
121
|
-
}
|
|
122
|
-
return a;
|
|
123
|
-
};
|
|
124
|
-
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
125
116
|
const isDefined = (value) => {
|
|
126
117
|
return value !== void 0 && value !== null;
|
|
127
118
|
};
|
|
@@ -175,8 +166,7 @@ const getQueryString = (params) => {
|
|
|
175
166
|
const getUrl = (config, options) => {
|
|
176
167
|
const encoder = config.ENCODE_PATH || encodeURI;
|
|
177
168
|
const path = options.url.replace("{api-version}", config.VERSION).replace(/{(.*?)}/g, (substring, group) => {
|
|
178
|
-
|
|
179
|
-
if ((_a = options.path) == null ? void 0 : _a.hasOwnProperty(group)) {
|
|
169
|
+
if (options.path?.hasOwnProperty(group)) {
|
|
180
170
|
return encoder(String(options.path[group]));
|
|
181
171
|
}
|
|
182
172
|
return substring;
|
|
@@ -219,9 +209,12 @@ const getHeaders = async (config, options) => {
|
|
|
219
209
|
const username = await resolve(options, config.USERNAME);
|
|
220
210
|
const password = await resolve(options, config.PASSWORD);
|
|
221
211
|
const additionalHeaders = await resolve(options, config.HEADERS);
|
|
222
|
-
const headers = Object.entries(
|
|
223
|
-
Accept: "application/json"
|
|
224
|
-
|
|
212
|
+
const headers = Object.entries({
|
|
213
|
+
Accept: "application/json",
|
|
214
|
+
...additionalHeaders,
|
|
215
|
+
...options.headers
|
|
216
|
+
}).filter(([_, value]) => isDefined(value)).reduce((headers2, [key, value]) => ({
|
|
217
|
+
...headers2,
|
|
225
218
|
[key]: String(value)
|
|
226
219
|
}), {});
|
|
227
220
|
if (isStringWithValue(token)) {
|
|
@@ -245,9 +238,8 @@ const getHeaders = async (config, options) => {
|
|
|
245
238
|
return new Headers(headers);
|
|
246
239
|
};
|
|
247
240
|
const getRequestBody = (options) => {
|
|
248
|
-
var _a;
|
|
249
241
|
if (options.body) {
|
|
250
|
-
if (
|
|
242
|
+
if (options.mediaType?.includes("/json")) {
|
|
251
243
|
return JSON.stringify(options.body);
|
|
252
244
|
} else if (isString(options.body) || isBlob(options.body) || isFormData(options.body)) {
|
|
253
245
|
return options.body;
|
|
@@ -261,7 +253,7 @@ const sendRequest = async (config, options, url, body, formData, headers, onCanc
|
|
|
261
253
|
const controller = new AbortController();
|
|
262
254
|
const request2 = {
|
|
263
255
|
headers,
|
|
264
|
-
body: body
|
|
256
|
+
body: body ?? formData,
|
|
265
257
|
method: options.method,
|
|
266
258
|
signal: controller.signal
|
|
267
259
|
};
|
|
@@ -299,15 +291,16 @@ const getResponseBody = async (response) => {
|
|
|
299
291
|
return void 0;
|
|
300
292
|
};
|
|
301
293
|
const catchErrorCodes = (options, result) => {
|
|
302
|
-
const errors =
|
|
294
|
+
const errors = {
|
|
303
295
|
400: "Bad Request",
|
|
304
296
|
401: "Unauthorized",
|
|
305
297
|
403: "Forbidden",
|
|
306
298
|
404: "Not Found",
|
|
307
299
|
500: "Internal Server Error",
|
|
308
300
|
502: "Bad Gateway",
|
|
309
|
-
503: "Service Unavailable"
|
|
310
|
-
|
|
301
|
+
503: "Service Unavailable",
|
|
302
|
+
...options.errors
|
|
303
|
+
};
|
|
311
304
|
const error = errors[result.status];
|
|
312
305
|
if (error) {
|
|
313
306
|
throw new ApiError(options, result, error);
|
|
@@ -332,7 +325,7 @@ const request = (config, options) => {
|
|
|
332
325
|
ok: response.ok,
|
|
333
326
|
status: response.status,
|
|
334
327
|
statusText: response.statusText,
|
|
335
|
-
body: responseHeader
|
|
328
|
+
body: responseHeader ?? responseBody
|
|
336
329
|
};
|
|
337
330
|
catchErrorCodes(options, result);
|
|
338
331
|
resolve2(result.body);
|
|
@@ -531,6 +524,25 @@ class EvmChainsService {
|
|
|
531
524
|
}
|
|
532
525
|
}
|
|
533
526
|
|
|
527
|
+
class EvmContractsService {
|
|
528
|
+
constructor(httpRequest) {
|
|
529
|
+
this.httpRequest = httpRequest;
|
|
530
|
+
}
|
|
531
|
+
getContractMetadata({
|
|
532
|
+
chainId,
|
|
533
|
+
address
|
|
534
|
+
}) {
|
|
535
|
+
return this.httpRequest.request({
|
|
536
|
+
method: "GET",
|
|
537
|
+
url: "/v1/chains/{chainId}/addresses/{address}",
|
|
538
|
+
path: {
|
|
539
|
+
"chainId": chainId,
|
|
540
|
+
"address": address
|
|
541
|
+
}
|
|
542
|
+
});
|
|
543
|
+
}
|
|
544
|
+
}
|
|
545
|
+
|
|
534
546
|
class EvmTransactionsService {
|
|
535
547
|
constructor(httpRequest) {
|
|
536
548
|
this.httpRequest = httpRequest;
|
|
@@ -571,6 +583,19 @@ class EvmTransactionsService {
|
|
|
571
583
|
}
|
|
572
584
|
});
|
|
573
585
|
}
|
|
586
|
+
getContractMetadata({
|
|
587
|
+
chainId,
|
|
588
|
+
address
|
|
589
|
+
}) {
|
|
590
|
+
return this.httpRequest.request({
|
|
591
|
+
method: "GET",
|
|
592
|
+
url: "/v1/chains/{chainId}/addresses/{address}",
|
|
593
|
+
path: {
|
|
594
|
+
"chainId": chainId,
|
|
595
|
+
"address": address
|
|
596
|
+
}
|
|
597
|
+
});
|
|
598
|
+
}
|
|
574
599
|
listTransfers({
|
|
575
600
|
chainId,
|
|
576
601
|
address,
|
|
@@ -830,19 +855,6 @@ class NfTsService {
|
|
|
830
855
|
}
|
|
831
856
|
});
|
|
832
857
|
}
|
|
833
|
-
getCollection({
|
|
834
|
-
chainId,
|
|
835
|
-
address
|
|
836
|
-
}) {
|
|
837
|
-
return this.httpRequest.request({
|
|
838
|
-
method: "GET",
|
|
839
|
-
url: "/v1/chains/{chainId}/nfts/collections/{address}",
|
|
840
|
-
path: {
|
|
841
|
-
"chainId": chainId,
|
|
842
|
-
"address": address
|
|
843
|
-
}
|
|
844
|
-
});
|
|
845
|
-
}
|
|
846
858
|
}
|
|
847
859
|
|
|
848
860
|
class OperationsService {
|
|
@@ -1367,22 +1379,38 @@ class PrimaryNetworkVerticesService {
|
|
|
1367
1379
|
}
|
|
1368
1380
|
|
|
1369
1381
|
class Glacier {
|
|
1382
|
+
evmBalances;
|
|
1383
|
+
evmBlocks;
|
|
1384
|
+
evmChains;
|
|
1385
|
+
evmContracts;
|
|
1386
|
+
evmTransactions;
|
|
1387
|
+
healthCheck;
|
|
1388
|
+
nfTs;
|
|
1389
|
+
operations;
|
|
1390
|
+
primaryNetwork;
|
|
1391
|
+
primaryNetworkBalances;
|
|
1392
|
+
primaryNetworkBlocks;
|
|
1393
|
+
primaryNetworkRewards;
|
|
1394
|
+
primaryNetworkTransactions;
|
|
1395
|
+
primaryNetworkUtxOs;
|
|
1396
|
+
primaryNetworkVertices;
|
|
1397
|
+
request;
|
|
1370
1398
|
constructor(config, HttpRequest = FetchHttpRequest) {
|
|
1371
|
-
var _a, _b, _c, _d;
|
|
1372
1399
|
this.request = new HttpRequest({
|
|
1373
|
-
BASE:
|
|
1374
|
-
VERSION:
|
|
1375
|
-
WITH_CREDENTIALS:
|
|
1376
|
-
CREDENTIALS:
|
|
1377
|
-
TOKEN: config
|
|
1378
|
-
USERNAME: config
|
|
1379
|
-
PASSWORD: config
|
|
1380
|
-
HEADERS: config
|
|
1381
|
-
ENCODE_PATH: config
|
|
1400
|
+
BASE: config?.BASE ?? "https://glacier-api-dev.avax.network",
|
|
1401
|
+
VERSION: config?.VERSION ?? "Beta",
|
|
1402
|
+
WITH_CREDENTIALS: config?.WITH_CREDENTIALS ?? false,
|
|
1403
|
+
CREDENTIALS: config?.CREDENTIALS ?? "include",
|
|
1404
|
+
TOKEN: config?.TOKEN,
|
|
1405
|
+
USERNAME: config?.USERNAME,
|
|
1406
|
+
PASSWORD: config?.PASSWORD,
|
|
1407
|
+
HEADERS: config?.HEADERS,
|
|
1408
|
+
ENCODE_PATH: config?.ENCODE_PATH
|
|
1382
1409
|
});
|
|
1383
1410
|
this.evmBalances = new EvmBalancesService(this.request);
|
|
1384
1411
|
this.evmBlocks = new EvmBlocksService(this.request);
|
|
1385
1412
|
this.evmChains = new EvmChainsService(this.request);
|
|
1413
|
+
this.evmContracts = new EvmContractsService(this.request);
|
|
1386
1414
|
this.evmTransactions = new EvmTransactionsService(this.request);
|
|
1387
1415
|
this.healthCheck = new HealthCheckService(this.request);
|
|
1388
1416
|
this.nfTs = new NfTsService(this.request);
|
|
@@ -1409,6 +1437,20 @@ const OpenAPI = {
|
|
|
1409
1437
|
ENCODE_PATH: void 0
|
|
1410
1438
|
};
|
|
1411
1439
|
|
|
1440
|
+
exports.ActiveDelegatorDetails = void 0;
|
|
1441
|
+
((ActiveDelegatorDetails2) => {
|
|
1442
|
+
((delegationStatus2) => {
|
|
1443
|
+
delegationStatus2["ACTIVE"] = "active";
|
|
1444
|
+
})(ActiveDelegatorDetails2.delegationStatus || (ActiveDelegatorDetails2.delegationStatus = {}));
|
|
1445
|
+
})(exports.ActiveDelegatorDetails || (exports.ActiveDelegatorDetails = {}));
|
|
1446
|
+
|
|
1447
|
+
exports.ActiveValidatorDetails = void 0;
|
|
1448
|
+
((ActiveValidatorDetails2) => {
|
|
1449
|
+
((validationStatus2) => {
|
|
1450
|
+
validationStatus2["ACTIVE"] = "active";
|
|
1451
|
+
})(ActiveValidatorDetails2.validationStatus || (ActiveValidatorDetails2.validationStatus = {}));
|
|
1452
|
+
})(exports.ActiveValidatorDetails || (exports.ActiveValidatorDetails = {}));
|
|
1453
|
+
|
|
1412
1454
|
var BlockchainId = /* @__PURE__ */ ((BlockchainId2) => {
|
|
1413
1455
|
BlockchainId2["_11111111111111111111111111111111LPO_YY"] = "11111111111111111111111111111111LpoYY";
|
|
1414
1456
|
BlockchainId2["_2O_YMBNV4E_NHYQK2FJJ_V5N_VQLDBTM_NJZQ5S3QS3LO6FTN_C6FBY_M"] = "2oYMBNV4eNHyqk2fjjV5nVQLDbtmNJzq5s3qs3Lo6ftnC6FByM";
|
|
@@ -1450,6 +1492,20 @@ var ChainStatus = /* @__PURE__ */ ((ChainStatus2) => {
|
|
|
1450
1492
|
return ChainStatus2;
|
|
1451
1493
|
})(ChainStatus || {});
|
|
1452
1494
|
|
|
1495
|
+
exports.CompletedDelegatorDetails = void 0;
|
|
1496
|
+
((CompletedDelegatorDetails2) => {
|
|
1497
|
+
((delegationStatus2) => {
|
|
1498
|
+
delegationStatus2["COMPLETED"] = "completed";
|
|
1499
|
+
})(CompletedDelegatorDetails2.delegationStatus || (CompletedDelegatorDetails2.delegationStatus = {}));
|
|
1500
|
+
})(exports.CompletedDelegatorDetails || (exports.CompletedDelegatorDetails = {}));
|
|
1501
|
+
|
|
1502
|
+
exports.CompletedValidatorDetails = void 0;
|
|
1503
|
+
((CompletedValidatorDetails2) => {
|
|
1504
|
+
((validationStatus2) => {
|
|
1505
|
+
validationStatus2["COMPLETED"] = "completed";
|
|
1506
|
+
})(CompletedValidatorDetails2.validationStatus || (CompletedValidatorDetails2.validationStatus = {}));
|
|
1507
|
+
})(exports.CompletedValidatorDetails || (exports.CompletedValidatorDetails = {}));
|
|
1508
|
+
|
|
1453
1509
|
exports.CreateEvmTransactionExportRequest = void 0;
|
|
1454
1510
|
((CreateEvmTransactionExportRequest2) => {
|
|
1455
1511
|
((type2) => {
|
|
@@ -1633,6 +1689,20 @@ var PChainTransactionType = /* @__PURE__ */ ((PChainTransactionType2) => {
|
|
|
1633
1689
|
return PChainTransactionType2;
|
|
1634
1690
|
})(PChainTransactionType || {});
|
|
1635
1691
|
|
|
1692
|
+
exports.PendingDelegatorDetails = void 0;
|
|
1693
|
+
((PendingDelegatorDetails2) => {
|
|
1694
|
+
((delegationStatus2) => {
|
|
1695
|
+
delegationStatus2["PENDING"] = "pending";
|
|
1696
|
+
})(PendingDelegatorDetails2.delegationStatus || (PendingDelegatorDetails2.delegationStatus = {}));
|
|
1697
|
+
})(exports.PendingDelegatorDetails || (exports.PendingDelegatorDetails = {}));
|
|
1698
|
+
|
|
1699
|
+
exports.PendingValidatorDetails = void 0;
|
|
1700
|
+
((PendingValidatorDetails2) => {
|
|
1701
|
+
((validationStatus2) => {
|
|
1702
|
+
validationStatus2["PENDING"] = "pending";
|
|
1703
|
+
})(PendingValidatorDetails2.validationStatus || (PendingValidatorDetails2.validationStatus = {}));
|
|
1704
|
+
})(exports.PendingValidatorDetails || (exports.PendingValidatorDetails = {}));
|
|
1705
|
+
|
|
1636
1706
|
var PrimaryNetwork = /* @__PURE__ */ ((PrimaryNetwork2) => {
|
|
1637
1707
|
PrimaryNetwork2["MAINNET"] = "mainnet";
|
|
1638
1708
|
PrimaryNetwork2["FUJI"] = "fuji";
|
|
@@ -1774,6 +1844,7 @@ exports.DelegationStatusType = DelegationStatusType;
|
|
|
1774
1844
|
exports.EvmBalancesService = EvmBalancesService;
|
|
1775
1845
|
exports.EvmBlocksService = EvmBlocksService;
|
|
1776
1846
|
exports.EvmChainsService = EvmChainsService;
|
|
1847
|
+
exports.EvmContractsService = EvmContractsService;
|
|
1777
1848
|
exports.EvmTransactionsService = EvmTransactionsService;
|
|
1778
1849
|
exports.Glacier = Glacier;
|
|
1779
1850
|
exports.HealthCheckService = HealthCheckService;
|
|
@@ -3,6 +3,7 @@ import { OpenAPIConfig } from './core/OpenAPI.js';
|
|
|
3
3
|
import { EvmBalancesService } from './services/EvmBalancesService.js';
|
|
4
4
|
import { EvmBlocksService } from './services/EvmBlocksService.js';
|
|
5
5
|
import { EvmChainsService } from './services/EvmChainsService.js';
|
|
6
|
+
import { EvmContractsService } from './services/EvmContractsService.js';
|
|
6
7
|
import { EvmTransactionsService } from './services/EvmTransactionsService.js';
|
|
7
8
|
import { HealthCheckService } from './services/HealthCheckService.js';
|
|
8
9
|
import { NfTsService } from './services/NfTsService.js';
|
|
@@ -20,6 +21,7 @@ declare class Glacier {
|
|
|
20
21
|
readonly evmBalances: EvmBalancesService;
|
|
21
22
|
readonly evmBlocks: EvmBlocksService;
|
|
22
23
|
readonly evmChains: EvmChainsService;
|
|
24
|
+
readonly evmContracts: EvmContractsService;
|
|
23
25
|
readonly evmTransactions: EvmTransactionsService;
|
|
24
26
|
readonly healthCheck: HealthCheckService;
|
|
25
27
|
readonly nfTs: NfTsService;
|
package/esm/generated/Glacier.js
CHANGED
|
@@ -2,6 +2,7 @@ import { FetchHttpRequest } from './core/FetchHttpRequest.js';
|
|
|
2
2
|
import { EvmBalancesService } from './services/EvmBalancesService.js';
|
|
3
3
|
import { EvmBlocksService } from './services/EvmBlocksService.js';
|
|
4
4
|
import { EvmChainsService } from './services/EvmChainsService.js';
|
|
5
|
+
import { EvmContractsService } from './services/EvmContractsService.js';
|
|
5
6
|
import { EvmTransactionsService } from './services/EvmTransactionsService.js';
|
|
6
7
|
import { HealthCheckService } from './services/HealthCheckService.js';
|
|
7
8
|
import { NfTsService } from './services/NfTsService.js';
|
|
@@ -15,22 +16,38 @@ import { PrimaryNetworkUtxOsService } from './services/PrimaryNetworkUtxOsServic
|
|
|
15
16
|
import { PrimaryNetworkVerticesService } from './services/PrimaryNetworkVerticesService.js';
|
|
16
17
|
|
|
17
18
|
class Glacier {
|
|
19
|
+
evmBalances;
|
|
20
|
+
evmBlocks;
|
|
21
|
+
evmChains;
|
|
22
|
+
evmContracts;
|
|
23
|
+
evmTransactions;
|
|
24
|
+
healthCheck;
|
|
25
|
+
nfTs;
|
|
26
|
+
operations;
|
|
27
|
+
primaryNetwork;
|
|
28
|
+
primaryNetworkBalances;
|
|
29
|
+
primaryNetworkBlocks;
|
|
30
|
+
primaryNetworkRewards;
|
|
31
|
+
primaryNetworkTransactions;
|
|
32
|
+
primaryNetworkUtxOs;
|
|
33
|
+
primaryNetworkVertices;
|
|
34
|
+
request;
|
|
18
35
|
constructor(config, HttpRequest = FetchHttpRequest) {
|
|
19
|
-
var _a, _b, _c, _d;
|
|
20
36
|
this.request = new HttpRequest({
|
|
21
|
-
BASE:
|
|
22
|
-
VERSION:
|
|
23
|
-
WITH_CREDENTIALS:
|
|
24
|
-
CREDENTIALS:
|
|
25
|
-
TOKEN: config
|
|
26
|
-
USERNAME: config
|
|
27
|
-
PASSWORD: config
|
|
28
|
-
HEADERS: config
|
|
29
|
-
ENCODE_PATH: config
|
|
37
|
+
BASE: config?.BASE ?? "https://glacier-api-dev.avax.network",
|
|
38
|
+
VERSION: config?.VERSION ?? "Beta",
|
|
39
|
+
WITH_CREDENTIALS: config?.WITH_CREDENTIALS ?? false,
|
|
40
|
+
CREDENTIALS: config?.CREDENTIALS ?? "include",
|
|
41
|
+
TOKEN: config?.TOKEN,
|
|
42
|
+
USERNAME: config?.USERNAME,
|
|
43
|
+
PASSWORD: config?.PASSWORD,
|
|
44
|
+
HEADERS: config?.HEADERS,
|
|
45
|
+
ENCODE_PATH: config?.ENCODE_PATH
|
|
30
46
|
});
|
|
31
47
|
this.evmBalances = new EvmBalancesService(this.request);
|
|
32
48
|
this.evmBlocks = new EvmBlocksService(this.request);
|
|
33
49
|
this.evmChains = new EvmChainsService(this.request);
|
|
50
|
+
this.evmContracts = new EvmContractsService(this.request);
|
|
34
51
|
this.evmTransactions = new EvmTransactionsService(this.request);
|
|
35
52
|
this.healthCheck = new HealthCheckService(this.request);
|
|
36
53
|
this.nfTs = new NfTsService(this.request);
|
|
@@ -8,6 +8,14 @@ class CancelError extends Error {
|
|
|
8
8
|
}
|
|
9
9
|
}
|
|
10
10
|
class CancelablePromise {
|
|
11
|
+
[Symbol.toStringTag];
|
|
12
|
+
_isResolved;
|
|
13
|
+
_isRejected;
|
|
14
|
+
_isCancelled;
|
|
15
|
+
_cancelHandlers;
|
|
16
|
+
_promise;
|
|
17
|
+
_resolve;
|
|
18
|
+
_reject;
|
|
11
19
|
constructor(executor) {
|
|
12
20
|
this._isResolved = false;
|
|
13
21
|
this._isRejected = false;
|
|
@@ -17,20 +25,18 @@ class CancelablePromise {
|
|
|
17
25
|
this._resolve = resolve;
|
|
18
26
|
this._reject = reject;
|
|
19
27
|
const onResolve = (value) => {
|
|
20
|
-
var _a;
|
|
21
28
|
if (this._isResolved || this._isRejected || this._isCancelled) {
|
|
22
29
|
return;
|
|
23
30
|
}
|
|
24
31
|
this._isResolved = true;
|
|
25
|
-
|
|
32
|
+
this._resolve?.(value);
|
|
26
33
|
};
|
|
27
34
|
const onReject = (reason) => {
|
|
28
|
-
var _a;
|
|
29
35
|
if (this._isResolved || this._isRejected || this._isCancelled) {
|
|
30
36
|
return;
|
|
31
37
|
}
|
|
32
38
|
this._isRejected = true;
|
|
33
|
-
|
|
39
|
+
this._reject?.(reason);
|
|
34
40
|
};
|
|
35
41
|
const onCancel = (cancelHandler) => {
|
|
36
42
|
if (this._isResolved || this._isRejected || this._isCancelled) {
|
|
@@ -60,7 +66,6 @@ class CancelablePromise {
|
|
|
60
66
|
return this._promise.finally(onFinally);
|
|
61
67
|
}
|
|
62
68
|
cancel() {
|
|
63
|
-
var _a;
|
|
64
69
|
if (this._isResolved || this._isRejected || this._isCancelled) {
|
|
65
70
|
return;
|
|
66
71
|
}
|
|
@@ -76,7 +81,7 @@ class CancelablePromise {
|
|
|
76
81
|
}
|
|
77
82
|
}
|
|
78
83
|
this._cancelHandlers.length = 0;
|
|
79
|
-
|
|
84
|
+
this._reject?.(new CancelError("Request aborted"));
|
|
80
85
|
}
|
|
81
86
|
get isCancelled() {
|
|
82
87
|
return this._isCancelled;
|
|
@@ -1,25 +1,6 @@
|
|
|
1
1
|
import { ApiError } from './ApiError.js';
|
|
2
2
|
import { CancelablePromise } from './CancelablePromise.js';
|
|
3
3
|
|
|
4
|
-
var __defProp = Object.defineProperty;
|
|
5
|
-
var __defProps = Object.defineProperties;
|
|
6
|
-
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
7
|
-
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
8
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
9
|
-
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
10
|
-
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
11
|
-
var __spreadValues = (a, b) => {
|
|
12
|
-
for (var prop in b || (b = {}))
|
|
13
|
-
if (__hasOwnProp.call(b, prop))
|
|
14
|
-
__defNormalProp(a, prop, b[prop]);
|
|
15
|
-
if (__getOwnPropSymbols)
|
|
16
|
-
for (var prop of __getOwnPropSymbols(b)) {
|
|
17
|
-
if (__propIsEnum.call(b, prop))
|
|
18
|
-
__defNormalProp(a, prop, b[prop]);
|
|
19
|
-
}
|
|
20
|
-
return a;
|
|
21
|
-
};
|
|
22
|
-
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
23
4
|
const isDefined = (value) => {
|
|
24
5
|
return value !== void 0 && value !== null;
|
|
25
6
|
};
|
|
@@ -73,8 +54,7 @@ const getQueryString = (params) => {
|
|
|
73
54
|
const getUrl = (config, options) => {
|
|
74
55
|
const encoder = config.ENCODE_PATH || encodeURI;
|
|
75
56
|
const path = options.url.replace("{api-version}", config.VERSION).replace(/{(.*?)}/g, (substring, group) => {
|
|
76
|
-
|
|
77
|
-
if ((_a = options.path) == null ? void 0 : _a.hasOwnProperty(group)) {
|
|
57
|
+
if (options.path?.hasOwnProperty(group)) {
|
|
78
58
|
return encoder(String(options.path[group]));
|
|
79
59
|
}
|
|
80
60
|
return substring;
|
|
@@ -117,9 +97,12 @@ const getHeaders = async (config, options) => {
|
|
|
117
97
|
const username = await resolve(options, config.USERNAME);
|
|
118
98
|
const password = await resolve(options, config.PASSWORD);
|
|
119
99
|
const additionalHeaders = await resolve(options, config.HEADERS);
|
|
120
|
-
const headers = Object.entries(
|
|
121
|
-
Accept: "application/json"
|
|
122
|
-
|
|
100
|
+
const headers = Object.entries({
|
|
101
|
+
Accept: "application/json",
|
|
102
|
+
...additionalHeaders,
|
|
103
|
+
...options.headers
|
|
104
|
+
}).filter(([_, value]) => isDefined(value)).reduce((headers2, [key, value]) => ({
|
|
105
|
+
...headers2,
|
|
123
106
|
[key]: String(value)
|
|
124
107
|
}), {});
|
|
125
108
|
if (isStringWithValue(token)) {
|
|
@@ -143,9 +126,8 @@ const getHeaders = async (config, options) => {
|
|
|
143
126
|
return new Headers(headers);
|
|
144
127
|
};
|
|
145
128
|
const getRequestBody = (options) => {
|
|
146
|
-
var _a;
|
|
147
129
|
if (options.body) {
|
|
148
|
-
if (
|
|
130
|
+
if (options.mediaType?.includes("/json")) {
|
|
149
131
|
return JSON.stringify(options.body);
|
|
150
132
|
} else if (isString(options.body) || isBlob(options.body) || isFormData(options.body)) {
|
|
151
133
|
return options.body;
|
|
@@ -159,7 +141,7 @@ const sendRequest = async (config, options, url, body, formData, headers, onCanc
|
|
|
159
141
|
const controller = new AbortController();
|
|
160
142
|
const request2 = {
|
|
161
143
|
headers,
|
|
162
|
-
body: body
|
|
144
|
+
body: body ?? formData,
|
|
163
145
|
method: options.method,
|
|
164
146
|
signal: controller.signal
|
|
165
147
|
};
|
|
@@ -197,15 +179,16 @@ const getResponseBody = async (response) => {
|
|
|
197
179
|
return void 0;
|
|
198
180
|
};
|
|
199
181
|
const catchErrorCodes = (options, result) => {
|
|
200
|
-
const errors =
|
|
182
|
+
const errors = {
|
|
201
183
|
400: "Bad Request",
|
|
202
184
|
401: "Unauthorized",
|
|
203
185
|
403: "Forbidden",
|
|
204
186
|
404: "Not Found",
|
|
205
187
|
500: "Internal Server Error",
|
|
206
188
|
502: "Bad Gateway",
|
|
207
|
-
503: "Service Unavailable"
|
|
208
|
-
|
|
189
|
+
503: "Service Unavailable",
|
|
190
|
+
...options.errors
|
|
191
|
+
};
|
|
209
192
|
const error = errors[result.status];
|
|
210
193
|
if (error) {
|
|
211
194
|
throw new ApiError(options, result, error);
|
|
@@ -230,7 +213,7 @@ const request = (config, options) => {
|
|
|
230
213
|
ok: response.ok,
|
|
231
214
|
status: response.status,
|
|
232
215
|
statusText: response.statusText,
|
|
233
|
-
body: responseHeader
|
|
216
|
+
body: responseHeader ?? responseBody
|
|
234
217
|
};
|
|
235
218
|
catchErrorCodes(options, result);
|
|
236
219
|
resolve2(result.body);
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { DelegationStatusType } from './DelegationStatusType.js';
|
|
2
|
-
|
|
3
1
|
type ActiveDelegatorDetails = {
|
|
4
2
|
txHash: string;
|
|
5
3
|
rewardAddresses: Array<string>;
|
|
@@ -7,9 +5,14 @@ type ActiveDelegatorDetails = {
|
|
|
7
5
|
delegationFee: string;
|
|
8
6
|
startTimestamp: number;
|
|
9
7
|
endTimestamp: number;
|
|
10
|
-
delegationStatus: DelegationStatusType;
|
|
11
8
|
estimatedGrossReward: string;
|
|
12
9
|
estimatedNetReward: string;
|
|
10
|
+
delegationStatus: ActiveDelegatorDetails.delegationStatus;
|
|
13
11
|
};
|
|
12
|
+
declare namespace ActiveDelegatorDetails {
|
|
13
|
+
enum delegationStatus {
|
|
14
|
+
ACTIVE = "active"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
14
17
|
|
|
15
18
|
export { ActiveDelegatorDetails };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
var ActiveDelegatorDetails;
|
|
2
|
+
((ActiveDelegatorDetails2) => {
|
|
3
|
+
((delegationStatus2) => {
|
|
4
|
+
delegationStatus2["ACTIVE"] = "active";
|
|
5
|
+
})(ActiveDelegatorDetails2.delegationStatus || (ActiveDelegatorDetails2.delegationStatus = {}));
|
|
6
|
+
})(ActiveDelegatorDetails || (ActiveDelegatorDetails = {}));
|
|
7
|
+
|
|
8
|
+
export { ActiveDelegatorDetails };
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { Rewards } from './Rewards.js';
|
|
2
|
-
import { ValidationStatusType } from './ValidationStatusType.js';
|
|
3
2
|
|
|
4
3
|
type ActiveValidatorDetails = {
|
|
5
4
|
nodeId: string;
|
|
@@ -7,7 +6,6 @@ type ActiveValidatorDetails = {
|
|
|
7
6
|
delegationFee: string;
|
|
8
7
|
startTimestamp: number;
|
|
9
8
|
endTimestamp: number;
|
|
10
|
-
validationStatus: ValidationStatusType;
|
|
11
9
|
stakePercentage: number;
|
|
12
10
|
delegatorCount: number;
|
|
13
11
|
amountDelegated: string;
|
|
@@ -15,6 +13,12 @@ type ActiveValidatorDetails = {
|
|
|
15
13
|
avalancheGoVersion: string;
|
|
16
14
|
delegationCapacity: string;
|
|
17
15
|
potentialRewards: Rewards;
|
|
16
|
+
validationStatus: ActiveValidatorDetails.validationStatus;
|
|
18
17
|
};
|
|
18
|
+
declare namespace ActiveValidatorDetails {
|
|
19
|
+
enum validationStatus {
|
|
20
|
+
ACTIVE = "active"
|
|
21
|
+
}
|
|
22
|
+
}
|
|
19
23
|
|
|
20
24
|
export { ActiveValidatorDetails };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
var ActiveValidatorDetails;
|
|
2
|
+
((ActiveValidatorDetails2) => {
|
|
3
|
+
((validationStatus2) => {
|
|
4
|
+
validationStatus2["ACTIVE"] = "active";
|
|
5
|
+
})(ActiveValidatorDetails2.validationStatus || (ActiveValidatorDetails2.validationStatus = {}));
|
|
6
|
+
})(ActiveValidatorDetails || (ActiveValidatorDetails = {}));
|
|
7
|
+
|
|
8
|
+
export { ActiveValidatorDetails };
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { DelegationStatusType } from './DelegationStatusType.js';
|
|
2
|
-
|
|
3
1
|
type CompletedDelegatorDetails = {
|
|
4
2
|
txHash: string;
|
|
5
3
|
rewardAddresses: Array<string>;
|
|
@@ -7,9 +5,14 @@ type CompletedDelegatorDetails = {
|
|
|
7
5
|
delegationFee: string;
|
|
8
6
|
startTimestamp: number;
|
|
9
7
|
endTimestamp: number;
|
|
10
|
-
delegationStatus: DelegationStatusType;
|
|
11
8
|
grossReward: string;
|
|
12
9
|
netReward: string;
|
|
10
|
+
delegationStatus: CompletedDelegatorDetails.delegationStatus;
|
|
13
11
|
};
|
|
12
|
+
declare namespace CompletedDelegatorDetails {
|
|
13
|
+
enum delegationStatus {
|
|
14
|
+
COMPLETED = "completed"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
14
17
|
|
|
15
18
|
export { CompletedDelegatorDetails };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
var CompletedDelegatorDetails;
|
|
2
|
+
((CompletedDelegatorDetails2) => {
|
|
3
|
+
((delegationStatus2) => {
|
|
4
|
+
delegationStatus2["COMPLETED"] = "completed";
|
|
5
|
+
})(CompletedDelegatorDetails2.delegationStatus || (CompletedDelegatorDetails2.delegationStatus = {}));
|
|
6
|
+
})(CompletedDelegatorDetails || (CompletedDelegatorDetails = {}));
|
|
7
|
+
|
|
8
|
+
export { CompletedDelegatorDetails };
|