@avalabs/glacier-sdk 2.8.0-canary.2de3663.0 → 2.8.0-canary.3c8de05.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 (75) hide show
  1. package/dist/index.d.ts +582 -167
  2. package/dist/index.js +195 -36
  3. package/esm/generated/Glacier.d.ts +2 -0
  4. package/esm/generated/Glacier.js +3 -0
  5. package/esm/generated/models/ActiveDelegatorDetails.d.ts +1 -0
  6. package/esm/generated/models/ActiveValidatorDetails.d.ts +8 -4
  7. package/esm/generated/models/AddressActivityMetadata.d.ts +12 -0
  8. package/esm/generated/models/ChainInfo.d.ts +1 -0
  9. package/esm/generated/models/CompletedDelegatorDetails.d.ts +1 -0
  10. package/esm/generated/models/CompletedValidatorDetails.d.ts +3 -1
  11. package/esm/generated/models/ContractSubmissionBody.d.ts +10 -0
  12. package/esm/generated/models/ContractSubmissionErc1155.d.ts +31 -0
  13. package/esm/generated/models/ContractSubmissionErc1155.js +8 -0
  14. package/esm/generated/models/ContractSubmissionErc20.d.ts +31 -0
  15. package/esm/generated/models/ContractSubmissionErc20.js +8 -0
  16. package/esm/generated/models/ContractSubmissionErc721.d.ts +29 -0
  17. package/esm/generated/models/ContractSubmissionErc721.js +8 -0
  18. package/esm/generated/models/ContractSubmissionUnknown.d.ts +25 -0
  19. package/esm/generated/models/ContractSubmissionUnknown.js +8 -0
  20. package/esm/generated/models/EventType.d.ts +5 -0
  21. package/esm/generated/models/EventType.js +6 -0
  22. package/esm/generated/models/GetChainResponse.d.ts +1 -0
  23. package/esm/generated/models/GetPrimaryNetworkBlockResponse.d.ts +1 -0
  24. package/esm/generated/models/HistoricalReward.d.ts +2 -2
  25. package/esm/generated/models/ListNftTokens.d.ts +12 -0
  26. package/esm/generated/models/ListValidatorDetailsResponse.d.ts +1 -1
  27. package/esm/generated/models/ListWebhooksResponse.d.ts +11 -0
  28. package/esm/generated/models/PChainBalance.d.ts +7 -7
  29. package/esm/generated/models/PChainSharedAsset.d.ts +22 -0
  30. package/esm/generated/models/PChainTransaction.d.ts +5 -4
  31. package/esm/generated/models/PChainTransactionType.d.ts +6 -4
  32. package/esm/generated/models/PChainTransactionType.js +6 -4
  33. package/esm/generated/models/PChainUtxo.d.ts +34 -14
  34. package/esm/generated/models/PendingDelegatorDetails.d.ts +1 -0
  35. package/esm/generated/models/PendingReward.d.ts +2 -2
  36. package/esm/generated/models/PendingValidatorDetails.d.ts +3 -1
  37. package/esm/generated/models/PrimaryNetworkBlock.d.ts +1 -0
  38. package/esm/generated/models/PrimaryNetworkTxType.d.ts +6 -4
  39. package/esm/generated/models/PrimaryNetworkTxType.js +6 -4
  40. package/esm/generated/models/RegisterWebhookRequest.d.ts +14 -0
  41. package/esm/generated/models/RewardType.d.ts +2 -1
  42. package/esm/generated/models/RewardType.js +1 -0
  43. package/esm/generated/models/Rewards.d.ts +2 -0
  44. package/esm/generated/models/SharedSecretsResponse.d.ts +5 -0
  45. package/esm/generated/models/UpdateContractResponse.d.ts +10 -0
  46. package/esm/generated/models/Utxo.d.ts +28 -28
  47. package/esm/generated/models/UtxoCredential.d.ts +2 -2
  48. package/esm/generated/models/ValidatorHealthDetails.d.ts +20 -0
  49. package/esm/generated/models/WebhookResponse.d.ts +15 -0
  50. package/esm/generated/models/WebhookStatus.d.ts +6 -0
  51. package/esm/generated/models/WebhookStatus.js +7 -0
  52. package/esm/generated/models/WebhookStatusType.d.ts +6 -0
  53. package/esm/generated/models/WebhookStatusType.js +7 -0
  54. package/esm/generated/models/XChainLinearTransaction.d.ts +2 -1
  55. package/esm/generated/models/XChainNonLinearTransaction.d.ts +2 -1
  56. package/esm/generated/models/XChainTransactionType.d.ts +10 -0
  57. package/esm/generated/models/XChainTransactionType.js +11 -0
  58. package/esm/generated/services/DefaultService.d.ts +67 -0
  59. package/esm/generated/services/DefaultService.js +55 -0
  60. package/esm/generated/services/EvmContractsService.d.ts +19 -0
  61. package/esm/generated/services/EvmContractsService.js +16 -0
  62. package/esm/generated/services/EvmTransactionsService.d.ts +42 -20
  63. package/esm/generated/services/EvmTransactionsService.js +1 -14
  64. package/esm/generated/services/NfTsService.d.ts +25 -0
  65. package/esm/generated/services/NfTsService.js +19 -0
  66. package/esm/generated/services/OperationsService.d.ts +11 -11
  67. package/esm/generated/services/OperationsService.js +10 -10
  68. package/esm/generated/services/PrimaryNetworkRewardsService.d.ts +12 -4
  69. package/esm/generated/services/PrimaryNetworkRewardsService.js +4 -0
  70. package/esm/generated/services/PrimaryNetworkService.d.ts +31 -7
  71. package/esm/generated/services/PrimaryNetworkService.js +16 -4
  72. package/esm/index.d.ts +18 -1
  73. package/esm/index.js +9 -0
  74. package/package.json +2 -2
  75. package/esm/generated/models/PChainAsset.d.ts +0 -6
package/dist/index.js CHANGED
@@ -345,6 +345,60 @@ class FetchHttpRequest extends BaseHttpRequest {
345
345
  }
346
346
  }
347
347
 
348
+ class DefaultService {
349
+ constructor(httpRequest) {
350
+ this.httpRequest = httpRequest;
351
+ }
352
+ mediaControllerUploadImage() {
353
+ return this.httpRequest.request({
354
+ method: "POST",
355
+ url: "/v1/media/uploadImage"
356
+ });
357
+ }
358
+ registerWebhook({
359
+ requestBody
360
+ }) {
361
+ return this.httpRequest.request({
362
+ method: "POST",
363
+ url: "/v1/webhooks",
364
+ body: requestBody,
365
+ mediaType: "application/json"
366
+ });
367
+ }
368
+ listWebhooks({
369
+ pageSize = 10,
370
+ pageToken,
371
+ status
372
+ }) {
373
+ return this.httpRequest.request({
374
+ method: "GET",
375
+ url: "/v1/webhooks",
376
+ query: {
377
+ "pageSize": pageSize,
378
+ "pageToken": pageToken,
379
+ "status": status
380
+ }
381
+ });
382
+ }
383
+ deactivateWebhook({
384
+ id
385
+ }) {
386
+ return this.httpRequest.request({
387
+ method: "DELETE",
388
+ url: "/v1/webhooks/{id}",
389
+ path: {
390
+ "id": id
391
+ }
392
+ });
393
+ }
394
+ generateSharedSecret() {
395
+ return this.httpRequest.request({
396
+ method: "POST",
397
+ url: "/v1/webhooks:generateSharedSecret"
398
+ });
399
+ }
400
+ }
401
+
348
402
  class EvmBalancesService {
349
403
  constructor(httpRequest) {
350
404
  this.httpRequest = httpRequest;
@@ -541,6 +595,22 @@ class EvmContractsService {
541
595
  }
542
596
  });
543
597
  }
598
+ updateContractInfo({
599
+ chainId,
600
+ address,
601
+ requestBody
602
+ }) {
603
+ return this.httpRequest.request({
604
+ method: "PATCH",
605
+ url: "/v1/chains/{chainId}/contracts/{address}",
606
+ path: {
607
+ "chainId": chainId,
608
+ "address": address
609
+ },
610
+ body: requestBody,
611
+ mediaType: "application/json"
612
+ });
613
+ }
544
614
  }
545
615
 
546
616
  class EvmTransactionsService {
@@ -572,7 +642,7 @@ class EvmTransactionsService {
572
642
  }) {
573
643
  return this.httpRequest.request({
574
644
  method: "GET",
575
- url: "/v1/chains/{chainId}/addresses/{address}/deployments",
645
+ url: "/v1/chains/{chainId}/contracts/{address}/deployments",
576
646
  path: {
577
647
  "chainId": chainId,
578
648
  "address": address
@@ -583,19 +653,6 @@ class EvmTransactionsService {
583
653
  }
584
654
  });
585
655
  }
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
- }
599
656
  listTransfers({
600
657
  chainId,
601
658
  address,
@@ -840,6 +897,25 @@ class NfTsService {
840
897
  }
841
898
  });
842
899
  }
900
+ listTokens({
901
+ chainId,
902
+ address,
903
+ pageSize = 10,
904
+ pageToken
905
+ }) {
906
+ return this.httpRequest.request({
907
+ method: "GET",
908
+ url: "/v1/chains/{chainId}/nfts/collections/{address}/tokens",
909
+ path: {
910
+ "chainId": chainId,
911
+ "address": address
912
+ },
913
+ query: {
914
+ "pageSize": pageSize,
915
+ "pageToken": pageToken
916
+ }
917
+ });
918
+ }
843
919
  getTokenDetails({
844
920
  chainId,
845
921
  address,
@@ -861,16 +937,6 @@ class OperationsService {
861
937
  constructor(httpRequest) {
862
938
  this.httpRequest = httpRequest;
863
939
  }
864
- postTransactionExportJob({
865
- requestBody
866
- }) {
867
- return this.httpRequest.request({
868
- method: "POST",
869
- url: "/v1/operations/transactions:export",
870
- body: requestBody,
871
- mediaType: "application/json"
872
- });
873
- }
874
940
  getOperationResult({
875
941
  operationId
876
942
  }) {
@@ -882,6 +948,16 @@ class OperationsService {
882
948
  }
883
949
  });
884
950
  }
951
+ postTransactionExportJob({
952
+ requestBody
953
+ }) {
954
+ return this.httpRequest.request({
955
+ method: "POST",
956
+ url: "/v1/operations/transactions:export",
957
+ body: requestBody,
958
+ mediaType: "application/json"
959
+ });
960
+ }
885
961
  }
886
962
 
887
963
  class PrimaryNetworkService {
@@ -974,7 +1050,13 @@ class PrimaryNetworkService {
974
1050
  nodeIds,
975
1051
  sortOrder,
976
1052
  validationStatus,
977
- minDelegationCapacity
1053
+ minDelegationCapacity,
1054
+ maxDelegationCapacity,
1055
+ minTimeRemaining,
1056
+ maxTimeRemaining,
1057
+ minFeePercentage,
1058
+ maxFeePercentage,
1059
+ subnetId
978
1060
  }) {
979
1061
  return this.httpRequest.request({
980
1062
  method: "GET",
@@ -988,7 +1070,13 @@ class PrimaryNetworkService {
988
1070
  "nodeIds": nodeIds,
989
1071
  "sortOrder": sortOrder,
990
1072
  "validationStatus": validationStatus,
991
- "minDelegationCapacity": minDelegationCapacity
1073
+ "minDelegationCapacity": minDelegationCapacity,
1074
+ "maxDelegationCapacity": maxDelegationCapacity,
1075
+ "minTimeRemaining": minTimeRemaining,
1076
+ "maxTimeRemaining": maxTimeRemaining,
1077
+ "minFeePercentage": minFeePercentage,
1078
+ "maxFeePercentage": maxFeePercentage,
1079
+ "subnetId": subnetId
992
1080
  }
993
1081
  });
994
1082
  }
@@ -1019,9 +1107,9 @@ class PrimaryNetworkService {
1019
1107
  network,
1020
1108
  pageSize = 10,
1021
1109
  pageToken,
1110
+ rewardAddresses,
1022
1111
  sortOrder,
1023
1112
  delegationStatus,
1024
- rewardAddresses,
1025
1113
  nodeIds
1026
1114
  }) {
1027
1115
  return this.httpRequest.request({
@@ -1033,9 +1121,9 @@ class PrimaryNetworkService {
1033
1121
  query: {
1034
1122
  "pageSize": pageSize,
1035
1123
  "pageToken": pageToken,
1124
+ "rewardAddresses": rewardAddresses,
1036
1125
  "sortOrder": sortOrder,
1037
1126
  "delegationStatus": delegationStatus,
1038
- "rewardAddresses": rewardAddresses,
1039
1127
  "nodeIds": nodeIds
1040
1128
  }
1041
1129
  });
@@ -1137,6 +1225,7 @@ class PrimaryNetworkRewardsService {
1137
1225
  addresses,
1138
1226
  pageSize = 10,
1139
1227
  pageToken,
1228
+ nodeIds,
1140
1229
  sortOrder
1141
1230
  }) {
1142
1231
  return this.httpRequest.request({
@@ -1149,6 +1238,7 @@ class PrimaryNetworkRewardsService {
1149
1238
  "addresses": addresses,
1150
1239
  "pageSize": pageSize,
1151
1240
  "pageToken": pageToken,
1241
+ "nodeIds": nodeIds,
1152
1242
  "sortOrder": sortOrder
1153
1243
  }
1154
1244
  });
@@ -1158,6 +1248,7 @@ class PrimaryNetworkRewardsService {
1158
1248
  addresses,
1159
1249
  pageSize = 10,
1160
1250
  pageToken,
1251
+ nodeIds,
1161
1252
  sortOrder
1162
1253
  }) {
1163
1254
  return this.httpRequest.request({
@@ -1170,6 +1261,7 @@ class PrimaryNetworkRewardsService {
1170
1261
  "addresses": addresses,
1171
1262
  "pageSize": pageSize,
1172
1263
  "pageToken": pageToken,
1264
+ "nodeIds": nodeIds,
1173
1265
  "sortOrder": sortOrder
1174
1266
  }
1175
1267
  });
@@ -1379,6 +1471,7 @@ class PrimaryNetworkVerticesService {
1379
1471
  }
1380
1472
 
1381
1473
  class Glacier {
1474
+ default;
1382
1475
  evmBalances;
1383
1476
  evmBlocks;
1384
1477
  evmChains;
@@ -1407,6 +1500,7 @@ class Glacier {
1407
1500
  HEADERS: config?.HEADERS,
1408
1501
  ENCODE_PATH: config?.ENCODE_PATH
1409
1502
  });
1503
+ this.default = new DefaultService(this.request);
1410
1504
  this.evmBalances = new EvmBalancesService(this.request);
1411
1505
  this.evmBlocks = new EvmBlocksService(this.request);
1412
1506
  this.evmChains = new EvmChainsService(this.request);
@@ -1506,6 +1600,34 @@ exports.CompletedValidatorDetails = void 0;
1506
1600
  })(CompletedValidatorDetails2.validationStatus || (CompletedValidatorDetails2.validationStatus = {}));
1507
1601
  })(exports.CompletedValidatorDetails || (exports.CompletedValidatorDetails = {}));
1508
1602
 
1603
+ exports.ContractSubmissionErc1155 = void 0;
1604
+ ((ContractSubmissionErc11552) => {
1605
+ ((ercType2) => {
1606
+ ercType2["ERC_1155"] = "ERC-1155";
1607
+ })(ContractSubmissionErc11552.ercType || (ContractSubmissionErc11552.ercType = {}));
1608
+ })(exports.ContractSubmissionErc1155 || (exports.ContractSubmissionErc1155 = {}));
1609
+
1610
+ exports.ContractSubmissionErc20 = void 0;
1611
+ ((ContractSubmissionErc202) => {
1612
+ ((ercType2) => {
1613
+ ercType2["ERC_20"] = "ERC-20";
1614
+ })(ContractSubmissionErc202.ercType || (ContractSubmissionErc202.ercType = {}));
1615
+ })(exports.ContractSubmissionErc20 || (exports.ContractSubmissionErc20 = {}));
1616
+
1617
+ exports.ContractSubmissionErc721 = void 0;
1618
+ ((ContractSubmissionErc7212) => {
1619
+ ((ercType2) => {
1620
+ ercType2["ERC_721"] = "ERC-721";
1621
+ })(ContractSubmissionErc7212.ercType || (ContractSubmissionErc7212.ercType = {}));
1622
+ })(exports.ContractSubmissionErc721 || (exports.ContractSubmissionErc721 = {}));
1623
+
1624
+ exports.ContractSubmissionUnknown = void 0;
1625
+ ((ContractSubmissionUnknown2) => {
1626
+ ((ercType2) => {
1627
+ ercType2["UNKNOWN"] = "UNKNOWN";
1628
+ })(ContractSubmissionUnknown2.ercType || (ContractSubmissionUnknown2.ercType = {}));
1629
+ })(exports.ContractSubmissionUnknown || (exports.ContractSubmissionUnknown = {}));
1630
+
1509
1631
  exports.CreateEvmTransactionExportRequest = void 0;
1510
1632
  ((CreateEvmTransactionExportRequest2) => {
1511
1633
  ((type2) => {
@@ -1608,6 +1730,11 @@ exports.Erc721TokenBalance = void 0;
1608
1730
  })(Erc721TokenBalance2.ercType || (Erc721TokenBalance2.ercType = {}));
1609
1731
  })(exports.Erc721TokenBalance || (exports.Erc721TokenBalance = {}));
1610
1732
 
1733
+ var EventType = /* @__PURE__ */ ((EventType2) => {
1734
+ EventType2["ADDRESS_ACTIVITY"] = "address_activity";
1735
+ return EventType2;
1736
+ })(EventType || {});
1737
+
1611
1738
  var InternalTransactionOpCall = /* @__PURE__ */ ((InternalTransactionOpCall2) => {
1612
1739
  InternalTransactionOpCall2["UNKNOWN"] = "UNKNOWN";
1613
1740
  InternalTransactionOpCall2["CALL"] = "CALL";
@@ -1675,16 +1802,18 @@ var PChainId = /* @__PURE__ */ ((PChainId2) => {
1675
1802
 
1676
1803
  var PChainTransactionType = /* @__PURE__ */ ((PChainTransactionType2) => {
1677
1804
  PChainTransactionType2["ADD_VALIDATOR_TX"] = "AddValidatorTx";
1678
- PChainTransactionType2["ADD_DELEGATOR_TX"] = "AddDelegatorTx";
1679
- PChainTransactionType2["ADD_PERMISSIONLESS_VALIDATOR_TX"] = "AddPermissionlessValidatorTx";
1680
1805
  PChainTransactionType2["ADD_SUBNET_VALIDATOR_TX"] = "AddSubnetValidatorTx";
1681
- PChainTransactionType2["REMOVE_SUBNET_VALIDATOR_TX"] = "RemoveSubnetValidatorTx";
1682
- PChainTransactionType2["REWARD_VALIDATOR_TX"] = "RewardValidatorTx";
1806
+ PChainTransactionType2["ADD_DELEGATOR_TX"] = "AddDelegatorTx";
1683
1807
  PChainTransactionType2["CREATE_CHAIN_TX"] = "CreateChainTx";
1684
1808
  PChainTransactionType2["CREATE_SUBNET_TX"] = "CreateSubnetTx";
1685
1809
  PChainTransactionType2["IMPORT_TX"] = "ImportTx";
1686
1810
  PChainTransactionType2["EXPORT_TX"] = "ExportTx";
1687
1811
  PChainTransactionType2["ADVANCE_TIME_TX"] = "AdvanceTimeTx";
1812
+ PChainTransactionType2["REWARD_VALIDATOR_TX"] = "RewardValidatorTx";
1813
+ PChainTransactionType2["REMOVE_SUBNET_VALIDATOR_TX"] = "RemoveSubnetValidatorTx";
1814
+ PChainTransactionType2["TRANSFORM_SUBNET_TX"] = "TransformSubnetTx";
1815
+ PChainTransactionType2["ADD_PERMISSIONLESS_VALIDATOR_TX"] = "AddPermissionlessValidatorTx";
1816
+ PChainTransactionType2["ADD_PERMISSIONLESS_DELEGATOR_TX"] = "AddPermissionlessDelegatorTx";
1688
1817
  PChainTransactionType2["UNKNOWN"] = "UNKNOWN";
1689
1818
  return PChainTransactionType2;
1690
1819
  })(PChainTransactionType || {});
@@ -1718,16 +1847,18 @@ var PrimaryNetworkChainName = /* @__PURE__ */ ((PrimaryNetworkChainName2) => {
1718
1847
 
1719
1848
  var PrimaryNetworkTxType = /* @__PURE__ */ ((PrimaryNetworkTxType2) => {
1720
1849
  PrimaryNetworkTxType2["ADD_VALIDATOR_TX"] = "AddValidatorTx";
1721
- PrimaryNetworkTxType2["ADD_DELEGATOR_TX"] = "AddDelegatorTx";
1722
- PrimaryNetworkTxType2["ADD_PERMISSIONLESS_VALIDATOR_TX"] = "AddPermissionlessValidatorTx";
1723
1850
  PrimaryNetworkTxType2["ADD_SUBNET_VALIDATOR_TX"] = "AddSubnetValidatorTx";
1724
- PrimaryNetworkTxType2["REMOVE_SUBNET_VALIDATOR_TX"] = "RemoveSubnetValidatorTx";
1725
- PrimaryNetworkTxType2["REWARD_VALIDATOR_TX"] = "RewardValidatorTx";
1851
+ PrimaryNetworkTxType2["ADD_DELEGATOR_TX"] = "AddDelegatorTx";
1726
1852
  PrimaryNetworkTxType2["CREATE_CHAIN_TX"] = "CreateChainTx";
1727
1853
  PrimaryNetworkTxType2["CREATE_SUBNET_TX"] = "CreateSubnetTx";
1728
1854
  PrimaryNetworkTxType2["IMPORT_TX"] = "ImportTx";
1729
1855
  PrimaryNetworkTxType2["EXPORT_TX"] = "ExportTx";
1730
1856
  PrimaryNetworkTxType2["ADVANCE_TIME_TX"] = "AdvanceTimeTx";
1857
+ PrimaryNetworkTxType2["REWARD_VALIDATOR_TX"] = "RewardValidatorTx";
1858
+ PrimaryNetworkTxType2["REMOVE_SUBNET_VALIDATOR_TX"] = "RemoveSubnetValidatorTx";
1859
+ PrimaryNetworkTxType2["TRANSFORM_SUBNET_TX"] = "TransformSubnetTx";
1860
+ PrimaryNetworkTxType2["ADD_PERMISSIONLESS_VALIDATOR_TX"] = "AddPermissionlessValidatorTx";
1861
+ PrimaryNetworkTxType2["ADD_PERMISSIONLESS_DELEGATOR_TX"] = "AddPermissionlessDelegatorTx";
1731
1862
  PrimaryNetworkTxType2["UNKNOWN"] = "UNKNOWN";
1732
1863
  PrimaryNetworkTxType2["BASE_TX"] = "BaseTx";
1733
1864
  PrimaryNetworkTxType2["CREATE_ASSET_TX"] = "CreateAssetTx";
@@ -1760,6 +1891,7 @@ var ResourceLinkType = /* @__PURE__ */ ((ResourceLinkType2) => {
1760
1891
  var RewardType = /* @__PURE__ */ ((RewardType2) => {
1761
1892
  RewardType2["VALIDATOR"] = "VALIDATOR";
1762
1893
  RewardType2["DELEGATOR"] = "DELEGATOR";
1894
+ RewardType2["VALIDATOR_FEE"] = "VALIDATOR_FEE";
1763
1895
  return RewardType2;
1764
1896
  })(RewardType || {});
1765
1897
 
@@ -1809,6 +1941,18 @@ var VmName = /* @__PURE__ */ ((VmName2) => {
1809
1941
  return VmName2;
1810
1942
  })(VmName || {});
1811
1943
 
1944
+ var WebhookStatus = /* @__PURE__ */ ((WebhookStatus2) => {
1945
+ WebhookStatus2["ACTIVE"] = "active";
1946
+ WebhookStatus2["INACTIVE"] = "inactive";
1947
+ return WebhookStatus2;
1948
+ })(WebhookStatus || {});
1949
+
1950
+ var WebhookStatusType = /* @__PURE__ */ ((WebhookStatusType2) => {
1951
+ WebhookStatusType2["ACTIVE"] = "active";
1952
+ WebhookStatusType2["INACTIVE"] = "inactive";
1953
+ return WebhookStatusType2;
1954
+ })(WebhookStatusType || {});
1955
+
1812
1956
  var XChainId = /* @__PURE__ */ ((XChainId2) => {
1813
1957
  XChainId2["_2O_YMBNV4E_NHYQK2FJJ_V5N_VQLDBTM_NJZQ5S3QS3LO6FTN_C6FBY_M"] = "2oYMBNV4eNHyqk2fjjV5nVQLDbtmNJzq5s3qs3Lo6ftnC6FByM";
1814
1958
  XChainId2["_2JVSBOINJ9C2J33VNTVZ_YT_VJNZD_N2NKIWW_KJCUM_HUWEB5DB_BRM"] = "2JVSBoinj9C2J33VntvzYtVJNZdN2NKiwwKjcumHUWEb5DbBrm";
@@ -1832,6 +1976,16 @@ exports.XChainNonLinearTransaction = void 0;
1832
1976
  })(XChainNonLinearTransaction2.chainFormat || (XChainNonLinearTransaction2.chainFormat = {}));
1833
1977
  })(exports.XChainNonLinearTransaction || (exports.XChainNonLinearTransaction = {}));
1834
1978
 
1979
+ var XChainTransactionType = /* @__PURE__ */ ((XChainTransactionType2) => {
1980
+ XChainTransactionType2["BASE_TX"] = "BaseTx";
1981
+ XChainTransactionType2["CREATE_ASSET_TX"] = "CreateAssetTx";
1982
+ XChainTransactionType2["OPERATION_TX"] = "OperationTx";
1983
+ XChainTransactionType2["IMPORT_TX"] = "ImportTx";
1984
+ XChainTransactionType2["EXPORT_TX"] = "ExportTx";
1985
+ XChainTransactionType2["UNKNOWN"] = "UNKNOWN";
1986
+ return XChainTransactionType2;
1987
+ })(XChainTransactionType || {});
1988
+
1835
1989
  exports.ApiError = ApiError;
1836
1990
  exports.BaseHttpRequest = BaseHttpRequest;
1837
1991
  exports.BlockchainId = BlockchainId;
@@ -1840,7 +1994,9 @@ exports.CancelError = CancelError;
1840
1994
  exports.CancelablePromise = CancelablePromise;
1841
1995
  exports.ChainStatus = ChainStatus;
1842
1996
  exports.CurrencyCode = CurrencyCode;
1997
+ exports.DefaultService = DefaultService;
1843
1998
  exports.DelegationStatusType = DelegationStatusType;
1999
+ exports.EventType = EventType;
1844
2000
  exports.EvmBalancesService = EvmBalancesService;
1845
2001
  exports.EvmBlocksService = EvmBlocksService;
1846
2002
  exports.EvmChainsService = EvmChainsService;
@@ -1878,4 +2034,7 @@ exports.TransactionStatus = TransactionStatus;
1878
2034
  exports.UtxoType = UtxoType;
1879
2035
  exports.ValidationStatusType = ValidationStatusType;
1880
2036
  exports.VmName = VmName;
2037
+ exports.WebhookStatus = WebhookStatus;
2038
+ exports.WebhookStatusType = WebhookStatusType;
1881
2039
  exports.XChainId = XChainId;
2040
+ exports.XChainTransactionType = XChainTransactionType;
@@ -1,5 +1,6 @@
1
1
  import { BaseHttpRequest } from './core/BaseHttpRequest.js';
2
2
  import { OpenAPIConfig } from './core/OpenAPI.js';
3
+ import { DefaultService } from './services/DefaultService.js';
3
4
  import { EvmBalancesService } from './services/EvmBalancesService.js';
4
5
  import { EvmBlocksService } from './services/EvmBlocksService.js';
5
6
  import { EvmChainsService } from './services/EvmChainsService.js';
@@ -18,6 +19,7 @@ import { PrimaryNetworkVerticesService } from './services/PrimaryNetworkVertices
18
19
 
19
20
  type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
20
21
  declare class Glacier {
22
+ readonly default: DefaultService;
21
23
  readonly evmBalances: EvmBalancesService;
22
24
  readonly evmBlocks: EvmBlocksService;
23
25
  readonly evmChains: EvmChainsService;
@@ -1,4 +1,5 @@
1
1
  import { FetchHttpRequest } from './core/FetchHttpRequest.js';
2
+ import { DefaultService } from './services/DefaultService.js';
2
3
  import { EvmBalancesService } from './services/EvmBalancesService.js';
3
4
  import { EvmBlocksService } from './services/EvmBlocksService.js';
4
5
  import { EvmChainsService } from './services/EvmChainsService.js';
@@ -16,6 +17,7 @@ import { PrimaryNetworkUtxOsService } from './services/PrimaryNetworkUtxOsServic
16
17
  import { PrimaryNetworkVerticesService } from './services/PrimaryNetworkVerticesService.js';
17
18
 
18
19
  class Glacier {
20
+ default;
19
21
  evmBalances;
20
22
  evmBlocks;
21
23
  evmChains;
@@ -44,6 +46,7 @@ class Glacier {
44
46
  HEADERS: config?.HEADERS,
45
47
  ENCODE_PATH: config?.ENCODE_PATH
46
48
  });
49
+ this.default = new DefaultService(this.request);
47
50
  this.evmBalances = new EvmBalancesService(this.request);
48
51
  this.evmBlocks = new EvmBlocksService(this.request);
49
52
  this.evmChains = new EvmChainsService(this.request);
@@ -1,5 +1,6 @@
1
1
  type ActiveDelegatorDetails = {
2
2
  txHash: string;
3
+ nodeId: string;
3
4
  rewardAddresses: Array<string>;
4
5
  amountDelegated: string;
5
6
  delegationFee: string;
@@ -1,19 +1,23 @@
1
1
  import { Rewards } from './Rewards.js';
2
+ import { ValidatorHealthDetails } from './ValidatorHealthDetails.js';
2
3
 
3
4
  type ActiveValidatorDetails = {
5
+ txHash: string;
4
6
  nodeId: string;
7
+ subnetId: string;
5
8
  amountStaked: string;
6
- delegationFee: string;
9
+ delegationFee?: string;
7
10
  startTimestamp: number;
8
11
  endTimestamp: number;
9
12
  stakePercentage: number;
10
13
  delegatorCount: number;
11
- amountDelegated: string;
14
+ amountDelegated?: string;
12
15
  uptimePerformance: number;
13
- avalancheGoVersion: string;
14
- delegationCapacity: string;
16
+ avalancheGoVersion?: string;
17
+ delegationCapacity?: string;
15
18
  potentialRewards: Rewards;
16
19
  validationStatus: ActiveValidatorDetails.validationStatus;
20
+ validatorHealth: ValidatorHealthDetails;
17
21
  };
18
22
  declare namespace ActiveValidatorDetails {
19
23
  enum validationStatus {
@@ -0,0 +1,12 @@
1
+ type AddressActivityMetadata = {
2
+ /**
3
+ * Ethereum address for the address_activity event type
4
+ */
5
+ address: string;
6
+ /**
7
+ * Array of hexadecimal strings of the event signatures.
8
+ */
9
+ eventSignatures?: Array<string>;
10
+ };
11
+
12
+ export { AddressActivityMetadata };
@@ -22,6 +22,7 @@ type ChainInfo = {
22
22
  utilityAddresses?: UtilityAddresses;
23
23
  networkToken: NetworkToken;
24
24
  chainLogoUri?: string;
25
+ private?: boolean;
25
26
  };
26
27
 
27
28
  export { ChainInfo };
@@ -1,5 +1,6 @@
1
1
  type CompletedDelegatorDetails = {
2
2
  txHash: string;
3
+ nodeId: string;
3
4
  rewardAddresses: Array<string>;
4
5
  amountDelegated: string;
5
6
  delegationFee: string;
@@ -1,9 +1,11 @@
1
1
  import { Rewards } from './Rewards.js';
2
2
 
3
3
  type CompletedValidatorDetails = {
4
+ txHash: string;
4
5
  nodeId: string;
6
+ subnetId: string;
5
7
  amountStaked: string;
6
- delegationFee: string;
8
+ delegationFee?: string;
7
9
  startTimestamp: number;
8
10
  endTimestamp: number;
9
11
  delegatorCount: number;
@@ -0,0 +1,10 @@
1
+ import { ContractSubmissionErc1155 } from './ContractSubmissionErc1155.js';
2
+ import { ContractSubmissionErc20 } from './ContractSubmissionErc20.js';
3
+ import { ContractSubmissionErc721 } from './ContractSubmissionErc721.js';
4
+ import { ContractSubmissionUnknown } from './ContractSubmissionUnknown.js';
5
+
6
+ type ContractSubmissionBody = {
7
+ contract: (ContractSubmissionErc1155 | ContractSubmissionErc20 | ContractSubmissionErc721 | ContractSubmissionUnknown);
8
+ };
9
+
10
+ export { ContractSubmissionBody };
@@ -0,0 +1,31 @@
1
+ import { ImageAsset } from './ImageAsset.js';
2
+ import { PricingProviders } from './PricingProviders.js';
3
+ import { ResourceLink } from './ResourceLink.js';
4
+
5
+ type ContractSubmissionErc1155 = {
6
+ description?: string;
7
+ officialSite?: string;
8
+ email?: string;
9
+ logoAsset?: ImageAsset;
10
+ bannerAsset?: ImageAsset;
11
+ color?: string;
12
+ resourceLinks?: Array<ResourceLink>;
13
+ tags?: Array<string>;
14
+ /**
15
+ * The contract name.
16
+ */
17
+ name: string;
18
+ ercType: ContractSubmissionErc1155.ercType;
19
+ /**
20
+ * The contract symbol.
21
+ */
22
+ symbol: string;
23
+ pricingProviders?: PricingProviders;
24
+ };
25
+ declare namespace ContractSubmissionErc1155 {
26
+ enum ercType {
27
+ ERC_1155 = "ERC-1155"
28
+ }
29
+ }
30
+
31
+ export { ContractSubmissionErc1155 };
@@ -0,0 +1,8 @@
1
+ var ContractSubmissionErc1155;
2
+ ((ContractSubmissionErc11552) => {
3
+ ((ercType2) => {
4
+ ercType2["ERC_1155"] = "ERC-1155";
5
+ })(ContractSubmissionErc11552.ercType || (ContractSubmissionErc11552.ercType = {}));
6
+ })(ContractSubmissionErc1155 || (ContractSubmissionErc1155 = {}));
7
+
8
+ export { ContractSubmissionErc1155 };
@@ -0,0 +1,31 @@
1
+ import { ImageAsset } from './ImageAsset.js';
2
+ import { PricingProviders } from './PricingProviders.js';
3
+ import { ResourceLink } from './ResourceLink.js';
4
+
5
+ type ContractSubmissionErc20 = {
6
+ description?: string;
7
+ officialSite?: string;
8
+ email?: string;
9
+ logoAsset?: ImageAsset;
10
+ bannerAsset?: ImageAsset;
11
+ color?: string;
12
+ resourceLinks?: Array<ResourceLink>;
13
+ tags?: Array<string>;
14
+ /**
15
+ * The contract name.
16
+ */
17
+ name: string;
18
+ ercType: ContractSubmissionErc20.ercType;
19
+ /**
20
+ * The contract symbol.
21
+ */
22
+ symbol: string;
23
+ pricingProviders?: PricingProviders;
24
+ };
25
+ declare namespace ContractSubmissionErc20 {
26
+ enum ercType {
27
+ ERC_20 = "ERC-20"
28
+ }
29
+ }
30
+
31
+ export { ContractSubmissionErc20 };
@@ -0,0 +1,8 @@
1
+ var ContractSubmissionErc20;
2
+ ((ContractSubmissionErc202) => {
3
+ ((ercType2) => {
4
+ ercType2["ERC_20"] = "ERC-20";
5
+ })(ContractSubmissionErc202.ercType || (ContractSubmissionErc202.ercType = {}));
6
+ })(ContractSubmissionErc20 || (ContractSubmissionErc20 = {}));
7
+
8
+ export { ContractSubmissionErc20 };
@@ -0,0 +1,29 @@
1
+ import { ImageAsset } from './ImageAsset.js';
2
+ import { ResourceLink } from './ResourceLink.js';
3
+
4
+ type ContractSubmissionErc721 = {
5
+ description?: string;
6
+ officialSite?: string;
7
+ email?: string;
8
+ logoAsset?: ImageAsset;
9
+ bannerAsset?: ImageAsset;
10
+ color?: string;
11
+ resourceLinks?: Array<ResourceLink>;
12
+ tags?: Array<string>;
13
+ /**
14
+ * The contract name.
15
+ */
16
+ name: string;
17
+ ercType: ContractSubmissionErc721.ercType;
18
+ /**
19
+ * The contract symbol.
20
+ */
21
+ symbol: string;
22
+ };
23
+ declare namespace ContractSubmissionErc721 {
24
+ enum ercType {
25
+ ERC_721 = "ERC-721"
26
+ }
27
+ }
28
+
29
+ export { ContractSubmissionErc721 };
@@ -0,0 +1,8 @@
1
+ var ContractSubmissionErc721;
2
+ ((ContractSubmissionErc7212) => {
3
+ ((ercType2) => {
4
+ ercType2["ERC_721"] = "ERC-721";
5
+ })(ContractSubmissionErc7212.ercType || (ContractSubmissionErc7212.ercType = {}));
6
+ })(ContractSubmissionErc721 || (ContractSubmissionErc721 = {}));
7
+
8
+ export { ContractSubmissionErc721 };