@avalabs/glacier-sdk 2.8.0-canary.c69ce41.0 → 2.8.0-canary.c7cfc1b.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 (49) hide show
  1. package/dist/index.d.ts +359 -31
  2. package/dist/index.js +165 -12
  3. package/esm/generated/Glacier.d.ts +2 -0
  4. package/esm/generated/Glacier.js +3 -0
  5. package/esm/generated/models/ActiveValidatorDetails.d.ts +1 -0
  6. package/esm/generated/models/AddressActivityMetadata.d.ts +9 -0
  7. package/esm/generated/models/CompletedValidatorDetails.d.ts +1 -0
  8. package/esm/generated/models/ContractSubmissionBody.d.ts +10 -0
  9. package/esm/generated/models/ContractSubmissionErc1155.d.ts +31 -0
  10. package/esm/generated/models/ContractSubmissionErc1155.js +8 -0
  11. package/esm/generated/models/ContractSubmissionErc20.d.ts +31 -0
  12. package/esm/generated/models/ContractSubmissionErc20.js +8 -0
  13. package/esm/generated/models/ContractSubmissionErc721.d.ts +29 -0
  14. package/esm/generated/models/ContractSubmissionErc721.js +8 -0
  15. package/esm/generated/models/ContractSubmissionUnknown.d.ts +25 -0
  16. package/esm/generated/models/ContractSubmissionUnknown.js +8 -0
  17. package/esm/generated/models/EventType.d.ts +5 -0
  18. package/esm/generated/models/EventType.js +6 -0
  19. package/esm/generated/models/GetPrimaryNetworkBlockResponse.d.ts +1 -0
  20. package/esm/generated/models/ListNftTokens.d.ts +12 -0
  21. package/esm/generated/models/ListWebhooksResponse.d.ts +11 -0
  22. package/esm/generated/models/PendingValidatorDetails.d.ts +1 -0
  23. package/esm/generated/models/PrimaryNetworkBlock.d.ts +1 -0
  24. package/esm/generated/models/RegisterWebhookRequest.d.ts +14 -0
  25. package/esm/generated/models/SharedSecretsResponse.d.ts +5 -0
  26. package/esm/generated/models/UpdateContractResponse.d.ts +10 -0
  27. package/esm/generated/models/WebhookResponse.d.ts +15 -0
  28. package/esm/generated/models/WebhookStatus.d.ts +6 -0
  29. package/esm/generated/models/WebhookStatus.js +7 -0
  30. package/esm/generated/models/WebhookStatusType.d.ts +6 -0
  31. package/esm/generated/models/WebhookStatusType.js +7 -0
  32. package/esm/generated/models/XChainLinearTransaction.d.ts +2 -1
  33. package/esm/generated/models/XChainNonLinearTransaction.d.ts +2 -1
  34. package/esm/generated/models/XChainTransactionType.d.ts +10 -0
  35. package/esm/generated/models/XChainTransactionType.js +11 -0
  36. package/esm/generated/services/DefaultService.d.ts +67 -0
  37. package/esm/generated/services/DefaultService.js +55 -0
  38. package/esm/generated/services/EvmContractsService.d.ts +19 -0
  39. package/esm/generated/services/EvmContractsService.js +16 -0
  40. package/esm/generated/services/EvmTransactionsService.d.ts +42 -0
  41. package/esm/generated/services/NfTsService.d.ts +25 -0
  42. package/esm/generated/services/NfTsService.js +19 -0
  43. package/esm/generated/services/OperationsService.d.ts +11 -11
  44. package/esm/generated/services/OperationsService.js +10 -10
  45. package/esm/generated/services/PrimaryNetworkService.d.ts +9 -5
  46. package/esm/generated/services/PrimaryNetworkService.js +4 -2
  47. package/esm/index.d.ts +17 -0
  48. package/esm/index.js +9 -0
  49. package/package.json +2 -2
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 {
@@ -827,6 +897,25 @@ class NfTsService {
827
897
  }
828
898
  });
829
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
+ }
830
919
  getTokenDetails({
831
920
  chainId,
832
921
  address,
@@ -848,16 +937,6 @@ class OperationsService {
848
937
  constructor(httpRequest) {
849
938
  this.httpRequest = httpRequest;
850
939
  }
851
- postTransactionExportJob({
852
- requestBody
853
- }) {
854
- return this.httpRequest.request({
855
- method: "POST",
856
- url: "/v1/operations/transactions:export",
857
- body: requestBody,
858
- mediaType: "application/json"
859
- });
860
- }
861
940
  getOperationResult({
862
941
  operationId
863
942
  }) {
@@ -869,6 +948,16 @@ class OperationsService {
869
948
  }
870
949
  });
871
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
+ }
872
961
  }
873
962
 
874
963
  class PrimaryNetworkService {
@@ -966,7 +1055,8 @@ class PrimaryNetworkService {
966
1055
  maxFeePercentage,
967
1056
  nodeIds,
968
1057
  sortOrder,
969
- validationStatus
1058
+ validationStatus,
1059
+ subnetId
970
1060
  }) {
971
1061
  return this.httpRequest.request({
972
1062
  method: "GET",
@@ -985,7 +1075,8 @@ class PrimaryNetworkService {
985
1075
  "maxFeePercentage": maxFeePercentage,
986
1076
  "nodeIds": nodeIds,
987
1077
  "sortOrder": sortOrder,
988
- "validationStatus": validationStatus
1078
+ "validationStatus": validationStatus,
1079
+ "subnetId": subnetId
989
1080
  }
990
1081
  });
991
1082
  }
@@ -1380,6 +1471,7 @@ class PrimaryNetworkVerticesService {
1380
1471
  }
1381
1472
 
1382
1473
  class Glacier {
1474
+ default;
1383
1475
  evmBalances;
1384
1476
  evmBlocks;
1385
1477
  evmChains;
@@ -1408,6 +1500,7 @@ class Glacier {
1408
1500
  HEADERS: config?.HEADERS,
1409
1501
  ENCODE_PATH: config?.ENCODE_PATH
1410
1502
  });
1503
+ this.default = new DefaultService(this.request);
1411
1504
  this.evmBalances = new EvmBalancesService(this.request);
1412
1505
  this.evmBlocks = new EvmBlocksService(this.request);
1413
1506
  this.evmChains = new EvmChainsService(this.request);
@@ -1507,6 +1600,34 @@ exports.CompletedValidatorDetails = void 0;
1507
1600
  })(CompletedValidatorDetails2.validationStatus || (CompletedValidatorDetails2.validationStatus = {}));
1508
1601
  })(exports.CompletedValidatorDetails || (exports.CompletedValidatorDetails = {}));
1509
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
+
1510
1631
  exports.CreateEvmTransactionExportRequest = void 0;
1511
1632
  ((CreateEvmTransactionExportRequest2) => {
1512
1633
  ((type2) => {
@@ -1609,6 +1730,11 @@ exports.Erc721TokenBalance = void 0;
1609
1730
  })(Erc721TokenBalance2.ercType || (Erc721TokenBalance2.ercType = {}));
1610
1731
  })(exports.Erc721TokenBalance || (exports.Erc721TokenBalance = {}));
1611
1732
 
1733
+ var EventType = /* @__PURE__ */ ((EventType2) => {
1734
+ EventType2["ADDRESS_ACTIVITY"] = "address_activity";
1735
+ return EventType2;
1736
+ })(EventType || {});
1737
+
1612
1738
  var InternalTransactionOpCall = /* @__PURE__ */ ((InternalTransactionOpCall2) => {
1613
1739
  InternalTransactionOpCall2["UNKNOWN"] = "UNKNOWN";
1614
1740
  InternalTransactionOpCall2["CALL"] = "CALL";
@@ -1813,6 +1939,18 @@ var VmName = /* @__PURE__ */ ((VmName2) => {
1813
1939
  return VmName2;
1814
1940
  })(VmName || {});
1815
1941
 
1942
+ var WebhookStatus = /* @__PURE__ */ ((WebhookStatus2) => {
1943
+ WebhookStatus2["ACTIVE"] = "active";
1944
+ WebhookStatus2["INACTIVE"] = "inactive";
1945
+ return WebhookStatus2;
1946
+ })(WebhookStatus || {});
1947
+
1948
+ var WebhookStatusType = /* @__PURE__ */ ((WebhookStatusType2) => {
1949
+ WebhookStatusType2["ACTIVE"] = "active";
1950
+ WebhookStatusType2["INACTIVE"] = "inactive";
1951
+ return WebhookStatusType2;
1952
+ })(WebhookStatusType || {});
1953
+
1816
1954
  var XChainId = /* @__PURE__ */ ((XChainId2) => {
1817
1955
  XChainId2["_2O_YMBNV4E_NHYQK2FJJ_V5N_VQLDBTM_NJZQ5S3QS3LO6FTN_C6FBY_M"] = "2oYMBNV4eNHyqk2fjjV5nVQLDbtmNJzq5s3qs3Lo6ftnC6FByM";
1818
1956
  XChainId2["_2JVSBOINJ9C2J33VNTVZ_YT_VJNZD_N2NKIWW_KJCUM_HUWEB5DB_BRM"] = "2JVSBoinj9C2J33VntvzYtVJNZdN2NKiwwKjcumHUWEb5DbBrm";
@@ -1836,6 +1974,16 @@ exports.XChainNonLinearTransaction = void 0;
1836
1974
  })(XChainNonLinearTransaction2.chainFormat || (XChainNonLinearTransaction2.chainFormat = {}));
1837
1975
  })(exports.XChainNonLinearTransaction || (exports.XChainNonLinearTransaction = {}));
1838
1976
 
1977
+ var XChainTransactionType = /* @__PURE__ */ ((XChainTransactionType2) => {
1978
+ XChainTransactionType2["BASE_TX"] = "BaseTx";
1979
+ XChainTransactionType2["CREATE_ASSET_TX"] = "CreateAssetTx";
1980
+ XChainTransactionType2["OPERATION_TX"] = "OperationTx";
1981
+ XChainTransactionType2["IMPORT_TX"] = "ImportTx";
1982
+ XChainTransactionType2["EXPORT_TX"] = "ExportTx";
1983
+ XChainTransactionType2["UNKNOWN"] = "UNKNOWN";
1984
+ return XChainTransactionType2;
1985
+ })(XChainTransactionType || {});
1986
+
1839
1987
  exports.ApiError = ApiError;
1840
1988
  exports.BaseHttpRequest = BaseHttpRequest;
1841
1989
  exports.BlockchainId = BlockchainId;
@@ -1844,7 +1992,9 @@ exports.CancelError = CancelError;
1844
1992
  exports.CancelablePromise = CancelablePromise;
1845
1993
  exports.ChainStatus = ChainStatus;
1846
1994
  exports.CurrencyCode = CurrencyCode;
1995
+ exports.DefaultService = DefaultService;
1847
1996
  exports.DelegationStatusType = DelegationStatusType;
1997
+ exports.EventType = EventType;
1848
1998
  exports.EvmBalancesService = EvmBalancesService;
1849
1999
  exports.EvmBlocksService = EvmBlocksService;
1850
2000
  exports.EvmChainsService = EvmChainsService;
@@ -1882,4 +2032,7 @@ exports.TransactionStatus = TransactionStatus;
1882
2032
  exports.UtxoType = UtxoType;
1883
2033
  exports.ValidationStatusType = ValidationStatusType;
1884
2034
  exports.VmName = VmName;
2035
+ exports.WebhookStatus = WebhookStatus;
2036
+ exports.WebhookStatusType = WebhookStatusType;
1885
2037
  exports.XChainId = XChainId;
2038
+ 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);
@@ -2,6 +2,7 @@ import { Rewards } from './Rewards.js';
2
2
  import { ValidatorHealthDetails } from './ValidatorHealthDetails.js';
3
3
 
4
4
  type ActiveValidatorDetails = {
5
+ txHash: string;
5
6
  nodeId: string;
6
7
  subnetId: string;
7
8
  amountStaked: string;
@@ -0,0 +1,9 @@
1
+ type AddressActivityMetadata = {
2
+ /**
3
+ * Ethereum address for the address_activity event type
4
+ */
5
+ address: string;
6
+ topic0?: string;
7
+ };
8
+
9
+ export { AddressActivityMetadata };
@@ -1,6 +1,7 @@
1
1
  import { Rewards } from './Rewards.js';
2
2
 
3
3
  type CompletedValidatorDetails = {
4
+ txHash: string;
4
5
  nodeId: string;
5
6
  subnetId: string;
6
7
  amountStaked: string;
@@ -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 };
@@ -0,0 +1,25 @@
1
+ import { ImageAsset } from './ImageAsset.js';
2
+ import { ResourceLink } from './ResourceLink.js';
3
+
4
+ type ContractSubmissionUnknown = {
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: ContractSubmissionUnknown.ercType;
18
+ };
19
+ declare namespace ContractSubmissionUnknown {
20
+ enum ercType {
21
+ UNKNOWN = "UNKNOWN"
22
+ }
23
+ }
24
+
25
+ export { ContractSubmissionUnknown };
@@ -0,0 +1,8 @@
1
+ var ContractSubmissionUnknown;
2
+ ((ContractSubmissionUnknown2) => {
3
+ ((ercType2) => {
4
+ ercType2["UNKNOWN"] = "UNKNOWN";
5
+ })(ContractSubmissionUnknown2.ercType || (ContractSubmissionUnknown2.ercType = {}));
6
+ })(ContractSubmissionUnknown || (ContractSubmissionUnknown = {}));
7
+
8
+ export { ContractSubmissionUnknown };
@@ -0,0 +1,5 @@
1
+ declare enum EventType {
2
+ ADDRESS_ACTIVITY = "address_activity"
3
+ }
4
+
5
+ export { EventType };
@@ -0,0 +1,6 @@
1
+ var EventType = /* @__PURE__ */ ((EventType2) => {
2
+ EventType2["ADDRESS_ACTIVITY"] = "address_activity";
3
+ return EventType2;
4
+ })(EventType || {});
5
+
6
+ export { EventType };
@@ -9,6 +9,7 @@ type GetPrimaryNetworkBlockResponse = {
9
9
  txCount: number;
10
10
  transactions: Array<string>;
11
11
  blockSizeBytes: number;
12
+ currentSupply?: string;
12
13
  proposerDetails?: ProposerDetails;
13
14
  };
14
15
 
@@ -0,0 +1,12 @@
1
+ import { Erc1155Token } from './Erc1155Token.js';
2
+ import { Erc721Token } from './Erc721Token.js';
3
+
4
+ type ListNftTokens = {
5
+ /**
6
+ * A token, which can be sent as `pageToken` to retrieve the next page. If this field is omitted or empty, there are no subsequent pages.
7
+ */
8
+ nextPageToken?: string;
9
+ tokens: (Array<Erc721Token> | Array<Erc1155Token>);
10
+ };
11
+
12
+ export { ListNftTokens };
@@ -0,0 +1,11 @@
1
+ import { WebhookResponse } from './WebhookResponse.js';
2
+
3
+ type ListWebhooksResponse = {
4
+ /**
5
+ * A token, which can be sent as `pageToken` to retrieve the next page. If this field is omitted or empty, there are no subsequent pages.
6
+ */
7
+ nextPageToken?: string;
8
+ webhooks: Array<WebhookResponse>;
9
+ };
10
+
11
+ export { ListWebhooksResponse };
@@ -1,4 +1,5 @@
1
1
  type PendingValidatorDetails = {
2
+ txHash: string;
2
3
  nodeId: string;
3
4
  subnetId: string;
4
5
  amountStaked: string;
@@ -9,6 +9,7 @@ type PrimaryNetworkBlock = {
9
9
  txCount: number;
10
10
  transactions: Array<string>;
11
11
  blockSizeBytes: number;
12
+ currentSupply?: string;
12
13
  proposerDetails?: ProposerDetails;
13
14
  };
14
15
 
@@ -0,0 +1,14 @@
1
+ import { AddressActivityMetadata } from './AddressActivityMetadata.js';
2
+ import { EventType } from './EventType.js';
3
+
4
+ type RegisterWebhookRequest = {
5
+ url: string;
6
+ chainId: string;
7
+ /**
8
+ * The type of event for the webhook
9
+ */
10
+ eventType: EventType;
11
+ metadata: AddressActivityMetadata;
12
+ };
13
+
14
+ export { RegisterWebhookRequest };
@@ -0,0 +1,5 @@
1
+ type SharedSecretsResponse = {
2
+ secret: string;
3
+ };
4
+
5
+ export { SharedSecretsResponse };
@@ -0,0 +1,10 @@
1
+ import { Erc1155Contract } from './Erc1155Contract.js';
2
+ import { Erc20Contract } from './Erc20Contract.js';
3
+ import { Erc721Contract } from './Erc721Contract.js';
4
+ import { UnknownContract } from './UnknownContract.js';
5
+
6
+ type UpdateContractResponse = {
7
+ contract: (UnknownContract | Erc20Contract | Erc721Contract | Erc1155Contract);
8
+ };
9
+
10
+ export { UpdateContractResponse };
@@ -0,0 +1,15 @@
1
+ import { AddressActivityMetadata } from './AddressActivityMetadata.js';
2
+ import { EventType } from './EventType.js';
3
+ import { WebhookStatusType } from './WebhookStatusType.js';
4
+
5
+ type WebhookResponse = {
6
+ id: string;
7
+ eventType: EventType;
8
+ metadata: AddressActivityMetadata;
9
+ url: string;
10
+ chainId: string;
11
+ status: WebhookStatusType;
12
+ createdAt: number;
13
+ };
14
+
15
+ export { WebhookResponse };
@@ -0,0 +1,6 @@
1
+ declare enum WebhookStatus {
2
+ ACTIVE = "active",
3
+ INACTIVE = "inactive"
4
+ }
5
+
6
+ export { WebhookStatus };
@@ -0,0 +1,7 @@
1
+ var WebhookStatus = /* @__PURE__ */ ((WebhookStatus2) => {
2
+ WebhookStatus2["ACTIVE"] = "active";
3
+ WebhookStatus2["INACTIVE"] = "inactive";
4
+ return WebhookStatus2;
5
+ })(WebhookStatus || {});
6
+
7
+ export { WebhookStatus };
@@ -0,0 +1,6 @@
1
+ declare enum WebhookStatusType {
2
+ ACTIVE = "active",
3
+ INACTIVE = "inactive"
4
+ }
5
+
6
+ export { WebhookStatusType };
@@ -0,0 +1,7 @@
1
+ var WebhookStatusType = /* @__PURE__ */ ((WebhookStatusType2) => {
2
+ WebhookStatusType2["ACTIVE"] = "active";
3
+ WebhookStatusType2["INACTIVE"] = "inactive";
4
+ return WebhookStatusType2;
5
+ })(WebhookStatusType || {});
6
+
7
+ export { WebhookStatusType };