@avalabs/glacier-sdk 2.8.0-canary.ac27579.0 → 2.8.0-canary.ad23783.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 (56) hide show
  1. package/dist/index.d.ts +217 -372
  2. package/dist/index.js +110 -163
  3. package/esm/generated/Glacier.d.ts +0 -2
  4. package/esm/generated/Glacier.js +0 -3
  5. package/esm/generated/models/Asset.d.ts +3 -1
  6. package/esm/generated/models/AssetWithPriceInfo.d.ts +2 -1
  7. package/esm/generated/models/CChainSharedAssetBalance.d.ts +3 -1
  8. package/esm/generated/models/PChainSharedAsset.d.ts +3 -1
  9. package/esm/generated/models/PrimaryNetworkAssetCap.d.ts +6 -0
  10. package/esm/generated/models/PrimaryNetworkAssetCap.js +7 -0
  11. package/esm/generated/models/PrimaryNetworkAssetType.d.ts +6 -0
  12. package/esm/generated/models/PrimaryNetworkAssetType.js +7 -0
  13. package/esm/generated/models/WebhookResponse.d.ts +2 -0
  14. package/esm/generated/models/XChainAssetBalance.d.ts +3 -1
  15. package/esm/generated/models/XChainAssetDetails.d.ts +6 -3
  16. package/esm/generated/models/XChainSharedAssetBalance.d.ts +3 -1
  17. package/esm/generated/services/DefaultService.d.ts +12 -5
  18. package/esm/generated/services/DefaultService.js +9 -3
  19. package/esm/generated/services/EvmBalancesService.d.ts +25 -25
  20. package/esm/generated/services/EvmBalancesService.js +8 -8
  21. package/esm/generated/services/EvmBlocksService.d.ts +7 -7
  22. package/esm/generated/services/EvmBlocksService.js +4 -4
  23. package/esm/generated/services/EvmChainsService.d.ts +1 -1
  24. package/esm/generated/services/EvmContractsService.d.ts +2 -2
  25. package/esm/generated/services/EvmTransactionsService.d.ts +57 -57
  26. package/esm/generated/services/EvmTransactionsService.js +32 -32
  27. package/esm/generated/services/NfTsService.d.ts +8 -8
  28. package/esm/generated/services/NfTsService.js +4 -4
  29. package/esm/generated/services/PrimaryNetworkBlocksService.d.ts +10 -10
  30. package/esm/generated/services/PrimaryNetworkBlocksService.js +8 -8
  31. package/esm/generated/services/PrimaryNetworkRewardsService.d.ts +12 -12
  32. package/esm/generated/services/PrimaryNetworkRewardsService.js +4 -4
  33. package/esm/generated/services/PrimaryNetworkService.d.ts +31 -31
  34. package/esm/generated/services/PrimaryNetworkService.js +11 -11
  35. package/esm/generated/services/PrimaryNetworkTransactionsService.d.ts +16 -16
  36. package/esm/generated/services/PrimaryNetworkTransactionsService.js +8 -8
  37. package/esm/generated/services/PrimaryNetworkUtxOsService.d.ts +5 -5
  38. package/esm/generated/services/PrimaryNetworkUtxOsService.js +2 -2
  39. package/esm/generated/services/PrimaryNetworkVerticesService.d.ts +10 -10
  40. package/esm/generated/services/PrimaryNetworkVerticesService.js +6 -6
  41. package/esm/index.d.ts +2 -8
  42. package/esm/index.js +2 -5
  43. package/package.json +2 -2
  44. package/esm/generated/models/DeliveredSourceNotIndexedTeleporterMessage.d.ts +0 -24
  45. package/esm/generated/models/DeliveredSourceNotIndexedTeleporterMessage.js +0 -8
  46. package/esm/generated/models/DeliveredTeleporterMessage.d.ts +0 -26
  47. package/esm/generated/models/DeliveredTeleporterMessage.js +0 -8
  48. package/esm/generated/models/NextPageToken.d.ts +0 -8
  49. package/esm/generated/models/PendingTeleporterMessage.d.ts +0 -24
  50. package/esm/generated/models/PendingTeleporterMessage.js +0 -8
  51. package/esm/generated/models/TeleporterDestinationTransaction.d.ts +0 -9
  52. package/esm/generated/models/TeleporterRewardDetails.d.ts +0 -37
  53. package/esm/generated/models/TeleporterRewardDetails.js +0 -8
  54. package/esm/generated/models/TeleporterSourceTransaction.d.ts +0 -7
  55. package/esm/generated/services/TeleporterService.d.ts +0 -65
  56. package/esm/generated/services/TeleporterService.js +0 -43
package/dist/index.d.ts CHANGED
@@ -88,6 +88,8 @@ type WebhookResponse = {
88
88
  chainId: string;
89
89
  status: WebhookStatusType;
90
90
  createdAt: number;
91
+ name: string;
92
+ description: string;
91
93
  };
92
94
 
93
95
  type ListWebhooksResponse = {
@@ -140,15 +142,15 @@ declare class DefaultService {
140
142
  * @returns ListWebhooksResponse
141
143
  * @throws ApiError
142
144
  */
143
- listWebhooks({ pageSize, pageToken, status, }: {
144
- /**
145
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
146
- */
147
- pageSize?: number;
145
+ listWebhooks({ pageToken, pageSize, status, }: {
148
146
  /**
149
147
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
150
148
  */
151
149
  pageToken?: string;
150
+ /**
151
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
152
+ */
153
+ pageSize?: number;
152
154
  /**
153
155
  * Status of the webhook. Use "active" to return only active webhooks, "inactive" to return only inactive webhooks. Else if no status is provided, all configured webhooks will be returned.
154
156
  */
@@ -173,6 +175,13 @@ declare class DefaultService {
173
175
  * @throws ApiError
174
176
  */
175
177
  generateSharedSecret(): CancelablePromise<SharedSecretsResponse>;
178
+ /**
179
+ * Get a shared secret
180
+ * Get a previously generated shared secret.
181
+ * @returns SharedSecretsResponse
182
+ * @throws ApiError
183
+ */
184
+ getSharedSecret(): CancelablePromise<SharedSecretsResponse>;
176
185
  }
177
186
 
178
187
  declare enum CurrencyCode {
@@ -450,7 +459,7 @@ declare class EvmBalancesService {
450
459
  */
451
460
  getNativeBalance({ chainId, address, blockNumber, currency, }: {
452
461
  /**
453
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
462
+ * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
454
463
  */
455
464
  chainId: string;
456
465
  /**
@@ -476,9 +485,9 @@ declare class EvmBalancesService {
476
485
  * @returns ListErc20BalancesResponse
477
486
  * @throws ApiError
478
487
  */
479
- listErc20Balances({ chainId, address, blockNumber, pageSize, pageToken, contractAddresses, currency, }: {
488
+ listErc20Balances({ chainId, address, blockNumber, pageToken, pageSize, contractAddresses, currency, }: {
480
489
  /**
481
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
490
+ * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
482
491
  */
483
492
  chainId: string;
484
493
  /**
@@ -489,14 +498,14 @@ declare class EvmBalancesService {
489
498
  * The block number, if not defined the block number will be the latest block.
490
499
  */
491
500
  blockNumber?: string;
492
- /**
493
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
494
- */
495
- pageSize?: number;
496
501
  /**
497
502
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
498
503
  */
499
504
  pageToken?: string;
505
+ /**
506
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
507
+ */
508
+ pageSize?: number;
500
509
  /**
501
510
  * A comma separated list of contract addresses to filter by.
502
511
  */
@@ -514,23 +523,23 @@ declare class EvmBalancesService {
514
523
  * @returns ListErc721BalancesResponse
515
524
  * @throws ApiError
516
525
  */
517
- listErc721Balances({ chainId, address, pageSize, pageToken, contractAddress, }: {
526
+ listErc721Balances({ chainId, address, pageToken, pageSize, contractAddress, }: {
518
527
  /**
519
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
528
+ * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
520
529
  */
521
530
  chainId: string;
522
531
  /**
523
532
  * A wallet address.
524
533
  */
525
534
  address: string;
526
- /**
527
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
528
- */
529
- pageSize?: number;
530
535
  /**
531
536
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
532
537
  */
533
538
  pageToken?: string;
539
+ /**
540
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
541
+ */
542
+ pageSize?: number;
534
543
  /**
535
544
  * A contract addresses to filter by.
536
545
  */
@@ -546,9 +555,9 @@ declare class EvmBalancesService {
546
555
  * @returns ListErc1155BalancesResponse
547
556
  * @throws ApiError
548
557
  */
549
- listErc1155Balances({ chainId, address, blockNumber, pageSize, pageToken, contractAddress, }: {
558
+ listErc1155Balances({ chainId, address, blockNumber, pageToken, pageSize, contractAddress, }: {
550
559
  /**
551
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
560
+ * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
552
561
  */
553
562
  chainId: string;
554
563
  /**
@@ -559,14 +568,14 @@ declare class EvmBalancesService {
559
568
  * The block number, if not defined the block number will be the latest block.
560
569
  */
561
570
  blockNumber?: string;
562
- /**
563
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
564
- */
565
- pageSize?: number;
566
571
  /**
567
572
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
568
573
  */
569
574
  pageToken?: string;
575
+ /**
576
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
577
+ */
578
+ pageSize?: number;
570
579
  /**
571
580
  * A contract addresses to filter by.
572
581
  */
@@ -580,23 +589,23 @@ declare class EvmBalancesService {
580
589
  * @returns ListCollectibleBalancesResponse
581
590
  * @throws ApiError
582
591
  */
583
- listCollectibleBalances({ chainId, address, pageSize, pageToken, contractAddress, }: {
592
+ listCollectibleBalances({ chainId, address, pageToken, pageSize, contractAddress, }: {
584
593
  /**
585
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
594
+ * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
586
595
  */
587
596
  chainId: string;
588
597
  /**
589
598
  * A wallet address.
590
599
  */
591
600
  address: string;
592
- /**
593
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
594
- */
595
- pageSize?: number;
596
601
  /**
597
602
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
598
603
  */
599
604
  pageToken?: string;
605
+ /**
606
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
607
+ */
608
+ pageSize?: number;
600
609
  /**
601
610
  * A contract addresses to filter by.
602
611
  */
@@ -709,19 +718,19 @@ declare class EvmBlocksService {
709
718
  * @returns ListEvmBlocksResponse
710
719
  * @throws ApiError
711
720
  */
712
- getLatestBlocks({ chainId, pageSize, pageToken, }: {
721
+ getLatestBlocks({ chainId, pageToken, pageSize, }: {
713
722
  /**
714
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
723
+ * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
715
724
  */
716
725
  chainId: string;
717
- /**
718
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
719
- */
720
- pageSize?: number;
721
726
  /**
722
727
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
723
728
  */
724
729
  pageToken?: string;
730
+ /**
731
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
732
+ */
733
+ pageSize?: number;
725
734
  }): CancelablePromise<ListEvmBlocksResponse>;
726
735
  /**
727
736
  * Get block
@@ -731,7 +740,7 @@ declare class EvmBlocksService {
731
740
  */
732
741
  getBlock({ chainId, blockId, }: {
733
742
  /**
734
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
743
+ * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
735
744
  */
736
745
  chainId: string;
737
746
  /**
@@ -852,7 +861,7 @@ declare class EvmChainsService {
852
861
  */
853
862
  getChainInfo({ chainId, }: {
854
863
  /**
855
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
864
+ * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
856
865
  */
857
866
  chainId: string;
858
867
  }): CancelablePromise<GetChainResponse>;
@@ -1147,7 +1156,7 @@ declare class EvmContractsService {
1147
1156
  */
1148
1157
  getContractMetadata({ chainId, address, }: {
1149
1158
  /**
1150
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
1159
+ * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
1151
1160
  */
1152
1161
  chainId: string;
1153
1162
  /**
@@ -1163,7 +1172,7 @@ declare class EvmContractsService {
1163
1172
  */
1164
1173
  updateContractInfo({ chainId, address, requestBody, }: {
1165
1174
  /**
1166
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
1175
+ * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
1167
1176
  */
1168
1177
  chainId: string;
1169
1178
  /**
@@ -1691,7 +1700,7 @@ declare class EvmTransactionsService {
1691
1700
  */
1692
1701
  getDeploymentTransaction({ chainId, address, currency, }: {
1693
1702
  /**
1694
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
1703
+ * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
1695
1704
  */
1696
1705
  chainId: string;
1697
1706
  /**
@@ -1709,23 +1718,23 @@ declare class EvmTransactionsService {
1709
1718
  * @returns ListContractsResponse
1710
1719
  * @throws ApiError
1711
1720
  */
1712
- listContractDeployments({ chainId, address, pageSize, pageToken, }: {
1721
+ listContractDeployments({ chainId, address, pageToken, pageSize, }: {
1713
1722
  /**
1714
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
1723
+ * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
1715
1724
  */
1716
1725
  chainId: string;
1717
1726
  /**
1718
1727
  * A wallet address.
1719
1728
  */
1720
1729
  address: string;
1721
- /**
1722
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
1723
- */
1724
- pageSize?: number;
1725
1730
  /**
1726
1731
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
1727
1732
  */
1728
1733
  pageToken?: string;
1734
+ /**
1735
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
1736
+ */
1737
+ pageSize?: number;
1729
1738
  }): CancelablePromise<ListContractsResponse>;
1730
1739
  /**
1731
1740
  * List ERC transfers
@@ -1733,9 +1742,9 @@ declare class EvmTransactionsService {
1733
1742
  * @returns ListTransfersResponse
1734
1743
  * @throws ApiError
1735
1744
  */
1736
- listTransfers({ chainId, address, startBlock, endBlock, pageSize, pageToken, }: {
1745
+ listTransfers({ chainId, address, startBlock, endBlock, pageToken, pageSize, }: {
1737
1746
  /**
1738
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
1747
+ * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
1739
1748
  */
1740
1749
  chainId: string;
1741
1750
  /**
@@ -1750,14 +1759,14 @@ declare class EvmTransactionsService {
1750
1759
  * The block range end number, exclusive. If startBlock is not defined when endBlock is defined, the start of the range will be the genesis block.
1751
1760
  */
1752
1761
  endBlock?: number;
1753
- /**
1754
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
1755
- */
1756
- pageSize?: number;
1757
1762
  /**
1758
1763
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
1759
1764
  */
1760
1765
  pageToken?: string;
1766
+ /**
1767
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
1768
+ */
1769
+ pageSize?: number;
1761
1770
  }): CancelablePromise<ListTransfersResponse>;
1762
1771
  /**
1763
1772
  * List transactions
@@ -1767,23 +1776,23 @@ declare class EvmTransactionsService {
1767
1776
  * @returns ListTransactionDetailsResponse
1768
1777
  * @throws ApiError
1769
1778
  */
1770
- listTransactions({ chainId, address, pageSize, pageToken, startBlock, endBlock, sortOrder, }: {
1779
+ listTransactions({ chainId, address, pageToken, pageSize, startBlock, endBlock, sortOrder, }: {
1771
1780
  /**
1772
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
1781
+ * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
1773
1782
  */
1774
1783
  chainId: string;
1775
1784
  /**
1776
1785
  * A wallet address.
1777
1786
  */
1778
1787
  address: string;
1779
- /**
1780
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
1781
- */
1782
- pageSize?: number;
1783
1788
  /**
1784
1789
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
1785
1790
  */
1786
1791
  pageToken?: string;
1792
+ /**
1793
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
1794
+ */
1795
+ pageSize?: number;
1787
1796
  /**
1788
1797
  * The block range start number, inclusive. If endBlock is not defined when startBlock is defined, the end of the range will be the most recent block.
1789
1798
  */
@@ -1803,9 +1812,9 @@ declare class EvmTransactionsService {
1803
1812
  * @returns ListNativeTransactionsResponse
1804
1813
  * @throws ApiError
1805
1814
  */
1806
- listNativeTransactions({ chainId, address, startBlock, endBlock, pageSize, pageToken, }: {
1815
+ listNativeTransactions({ chainId, address, startBlock, endBlock, pageToken, pageSize, }: {
1807
1816
  /**
1808
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
1817
+ * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
1809
1818
  */
1810
1819
  chainId: string;
1811
1820
  /**
@@ -1820,14 +1829,14 @@ declare class EvmTransactionsService {
1820
1829
  * The block range end number, exclusive. If startBlock is not defined when endBlock is defined, the start of the range will be the genesis block.
1821
1830
  */
1822
1831
  endBlock?: number;
1823
- /**
1824
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
1825
- */
1826
- pageSize?: number;
1827
1832
  /**
1828
1833
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
1829
1834
  */
1830
1835
  pageToken?: string;
1836
+ /**
1837
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
1838
+ */
1839
+ pageSize?: number;
1831
1840
  }): CancelablePromise<ListNativeTransactionsResponse>;
1832
1841
  /**
1833
1842
  * List ERC-20 transfers
@@ -1835,9 +1844,9 @@ declare class EvmTransactionsService {
1835
1844
  * @returns ListErc20TransactionsResponse
1836
1845
  * @throws ApiError
1837
1846
  */
1838
- listErc20Transactions({ chainId, address, startBlock, endBlock, pageSize, pageToken, }: {
1847
+ listErc20Transactions({ chainId, address, startBlock, endBlock, pageToken, pageSize, }: {
1839
1848
  /**
1840
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
1849
+ * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
1841
1850
  */
1842
1851
  chainId: string;
1843
1852
  /**
@@ -1852,14 +1861,14 @@ declare class EvmTransactionsService {
1852
1861
  * The block range end number, exclusive. If startBlock is not defined when endBlock is defined, the start of the range will be the genesis block.
1853
1862
  */
1854
1863
  endBlock?: number;
1855
- /**
1856
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
1857
- */
1858
- pageSize?: number;
1859
1864
  /**
1860
1865
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
1861
1866
  */
1862
1867
  pageToken?: string;
1868
+ /**
1869
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
1870
+ */
1871
+ pageSize?: number;
1863
1872
  }): CancelablePromise<ListErc20TransactionsResponse>;
1864
1873
  /**
1865
1874
  * List ERC-721 transfers
@@ -1867,9 +1876,9 @@ declare class EvmTransactionsService {
1867
1876
  * @returns ListErc721TransactionsResponse
1868
1877
  * @throws ApiError
1869
1878
  */
1870
- listErc721Transactions({ chainId, address, startBlock, endBlock, pageSize, pageToken, }: {
1879
+ listErc721Transactions({ chainId, address, startBlock, endBlock, pageToken, pageSize, }: {
1871
1880
  /**
1872
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
1881
+ * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
1873
1882
  */
1874
1883
  chainId: string;
1875
1884
  /**
@@ -1884,14 +1893,14 @@ declare class EvmTransactionsService {
1884
1893
  * The block range end number, exclusive. If startBlock is not defined when endBlock is defined, the start of the range will be the genesis block.
1885
1894
  */
1886
1895
  endBlock?: number;
1887
- /**
1888
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
1889
- */
1890
- pageSize?: number;
1891
1896
  /**
1892
1897
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
1893
1898
  */
1894
1899
  pageToken?: string;
1900
+ /**
1901
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
1902
+ */
1903
+ pageSize?: number;
1895
1904
  }): CancelablePromise<ListErc721TransactionsResponse>;
1896
1905
  /**
1897
1906
  * List ERC-1155 transfers
@@ -1899,9 +1908,9 @@ declare class EvmTransactionsService {
1899
1908
  * @returns ListErc1155TransactionsResponse
1900
1909
  * @throws ApiError
1901
1910
  */
1902
- listErc1155Transactions({ chainId, address, startBlock, endBlock, pageSize, pageToken, }: {
1911
+ listErc1155Transactions({ chainId, address, startBlock, endBlock, pageToken, pageSize, }: {
1903
1912
  /**
1904
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
1913
+ * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
1905
1914
  */
1906
1915
  chainId: string;
1907
1916
  /**
@@ -1916,14 +1925,14 @@ declare class EvmTransactionsService {
1916
1925
  * The block range end number, exclusive. If startBlock is not defined when endBlock is defined, the start of the range will be the genesis block.
1917
1926
  */
1918
1927
  endBlock?: number;
1919
- /**
1920
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
1921
- */
1922
- pageSize?: number;
1923
1928
  /**
1924
1929
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
1925
1930
  */
1926
1931
  pageToken?: string;
1932
+ /**
1933
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
1934
+ */
1935
+ pageSize?: number;
1927
1936
  }): CancelablePromise<ListErc1155TransactionsResponse>;
1928
1937
  /**
1929
1938
  * List internal transactions
@@ -1933,9 +1942,9 @@ declare class EvmTransactionsService {
1933
1942
  * @returns ListInternalTransactionsResponse
1934
1943
  * @throws ApiError
1935
1944
  */
1936
- listInternalTransactions({ chainId, address, startBlock, endBlock, pageSize, pageToken, }: {
1945
+ listInternalTransactions({ chainId, address, startBlock, endBlock, pageToken, pageSize, }: {
1937
1946
  /**
1938
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
1947
+ * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
1939
1948
  */
1940
1949
  chainId: string;
1941
1950
  /**
@@ -1950,14 +1959,14 @@ declare class EvmTransactionsService {
1950
1959
  * The block range end number, exclusive. If startBlock is not defined when endBlock is defined, the start of the range will be the genesis block.
1951
1960
  */
1952
1961
  endBlock?: number;
1953
- /**
1954
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
1955
- */
1956
- pageSize?: number;
1957
1962
  /**
1958
1963
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
1959
1964
  */
1960
1965
  pageToken?: string;
1966
+ /**
1967
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
1968
+ */
1969
+ pageSize?: number;
1961
1970
  }): CancelablePromise<ListInternalTransactionsResponse>;
1962
1971
  /**
1963
1972
  * Get transaction
@@ -1967,7 +1976,7 @@ declare class EvmTransactionsService {
1967
1976
  */
1968
1977
  getTransaction({ chainId, txHash, }: {
1969
1978
  /**
1970
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
1979
+ * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
1971
1980
  */
1972
1981
  chainId: string;
1973
1982
  /**
@@ -1983,7 +1992,7 @@ declare class EvmTransactionsService {
1983
1992
  */
1984
1993
  getTransactionsForBlock({ chainId, blockId, }: {
1985
1994
  /**
1986
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
1995
+ * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
1987
1996
  */
1988
1997
  chainId: string;
1989
1998
  /**
@@ -1997,19 +2006,19 @@ declare class EvmTransactionsService {
1997
2006
  * @returns ListNativeTransactionsResponse
1998
2007
  * @throws ApiError
1999
2008
  */
2000
- listLatestTransactions({ chainId, pageSize, pageToken, status, }: {
2009
+ listLatestTransactions({ chainId, pageToken, pageSize, status, }: {
2001
2010
  /**
2002
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
2011
+ * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2003
2012
  */
2004
2013
  chainId: string;
2005
- /**
2006
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
2007
- */
2008
- pageSize?: number;
2009
2014
  /**
2010
2015
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
2011
2016
  */
2012
2017
  pageToken?: string;
2018
+ /**
2019
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
2020
+ */
2021
+ pageSize?: number;
2013
2022
  /**
2014
2023
  * A status filter for listed transactions.
2015
2024
  */
@@ -2052,7 +2061,7 @@ declare class NfTsService {
2052
2061
  */
2053
2062
  reindexNft({ chainId, address, tokenId, }: {
2054
2063
  /**
2055
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
2064
+ * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2056
2065
  */
2057
2066
  chainId: string;
2058
2067
  /**
@@ -2070,23 +2079,23 @@ declare class NfTsService {
2070
2079
  * @returns ListNftTokens
2071
2080
  * @throws ApiError
2072
2081
  */
2073
- listTokens({ chainId, address, pageSize, pageToken, }: {
2082
+ listTokens({ chainId, address, pageToken, pageSize, }: {
2074
2083
  /**
2075
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
2084
+ * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2076
2085
  */
2077
2086
  chainId: string;
2078
2087
  /**
2079
2088
  * Contract address on the relevant chain.
2080
2089
  */
2081
2090
  address: string;
2082
- /**
2083
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
2084
- */
2085
- pageSize?: number;
2086
2091
  /**
2087
2092
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
2088
2093
  */
2089
2094
  pageToken?: string;
2095
+ /**
2096
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
2097
+ */
2098
+ pageSize?: number;
2090
2099
  }): CancelablePromise<ListNftTokens>;
2091
2100
  /**
2092
2101
  * Get token details
@@ -2096,7 +2105,7 @@ declare class NfTsService {
2096
2105
  */
2097
2106
  getTokenDetails({ chainId, address, tokenId, }: {
2098
2107
  /**
2099
- * A supported evm chain id. Use the `/chains` endpoint to get a list of supported chain ids.
2108
+ * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2100
2109
  */
2101
2110
  chainId: string;
2102
2111
  /**
@@ -2505,6 +2514,16 @@ declare enum ValidationStatusType {
2505
2514
  REMOVED = "removed"
2506
2515
  }
2507
2516
 
2517
+ declare enum PrimaryNetworkAssetCap {
2518
+ FIXED = "fixed",
2519
+ VARIABLE = "variable"
2520
+ }
2521
+
2522
+ declare enum PrimaryNetworkAssetType {
2523
+ SECP256K1 = "secp256k1",
2524
+ NFT = "nft"
2525
+ }
2526
+
2508
2527
  type XChainAssetDetails = {
2509
2528
  /**
2510
2529
  * Unique ID for an asset.
@@ -2525,15 +2544,15 @@ type XChainAssetDetails = {
2525
2544
  /**
2526
2545
  * Type of asset like SECP256K1 or NFT.
2527
2546
  */
2528
- type: string;
2547
+ type: PrimaryNetworkAssetType;
2529
2548
  /**
2530
2549
  * Timestamp in seconds this asset was created on.
2531
2550
  */
2532
2551
  createdAtTimestamp: number;
2533
2552
  /**
2534
- * Cap represents if an asset can be or is fixed cap.
2553
+ * Cap represents if an asset is a variable or fixed cap asset.
2535
2554
  */
2536
- cap: string;
2555
+ cap: PrimaryNetworkAssetCap;
2537
2556
  };
2538
2557
 
2539
2558
  declare enum XChainId {
@@ -2599,19 +2618,19 @@ declare class PrimaryNetworkService {
2599
2618
  * @returns ListBlockchainsResponse
2600
2619
  * @throws ApiError
2601
2620
  */
2602
- listBlockchains({ network, pageSize, pageToken, sortOrder, }: {
2621
+ listBlockchains({ network, pageToken, pageSize, sortOrder, }: {
2603
2622
  /**
2604
2623
  * Either mainnet or a testnet.
2605
2624
  */
2606
2625
  network: Network;
2607
- /**
2608
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
2609
- */
2610
- pageSize?: number;
2611
2626
  /**
2612
2627
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
2613
2628
  */
2614
2629
  pageToken?: string;
2630
+ /**
2631
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
2632
+ */
2633
+ pageSize?: number;
2615
2634
  /**
2616
2635
  * The order by which to sort results. Use "asc" for ascending order, "desc" for descending order. Sorted by timestamp or the `sortBy` query parameter, if provided.
2617
2636
  */
@@ -2623,19 +2642,19 @@ declare class PrimaryNetworkService {
2623
2642
  * @returns ListSubnetsResponse
2624
2643
  * @throws ApiError
2625
2644
  */
2626
- listSubnets({ network, pageSize, pageToken, sortOrder, }: {
2645
+ listSubnets({ network, pageToken, pageSize, sortOrder, }: {
2627
2646
  /**
2628
2647
  * Either mainnet or a testnet.
2629
2648
  */
2630
2649
  network: Network;
2631
- /**
2632
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
2633
- */
2634
- pageSize?: number;
2635
2650
  /**
2636
2651
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
2637
2652
  */
2638
2653
  pageToken?: string;
2654
+ /**
2655
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
2656
+ */
2657
+ pageSize?: number;
2639
2658
  /**
2640
2659
  * The order by which to sort results. Use "asc" for ascending order, "desc" for descending order. Sorted by timestamp or the `sortBy` query parameter, if provided.
2641
2660
  */
@@ -2647,19 +2666,19 @@ declare class PrimaryNetworkService {
2647
2666
  * @returns ListValidatorDetailsResponse
2648
2667
  * @throws ApiError
2649
2668
  */
2650
- listValidators({ network, pageSize, pageToken, nodeIds, sortOrder, validationStatus, minDelegationCapacity, maxDelegationCapacity, minTimeRemaining, maxTimeRemaining, minFeePercentage, maxFeePercentage, subnetId, }: {
2669
+ listValidators({ network, pageToken, pageSize, nodeIds, sortOrder, validationStatus, minDelegationCapacity, maxDelegationCapacity, minTimeRemaining, maxTimeRemaining, minFeePercentage, maxFeePercentage, subnetId, }: {
2651
2670
  /**
2652
2671
  * Either mainnet or a testnet.
2653
2672
  */
2654
2673
  network: Network;
2655
- /**
2656
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
2657
- */
2658
- pageSize?: number;
2659
2674
  /**
2660
2675
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
2661
2676
  */
2662
2677
  pageToken?: string;
2678
+ /**
2679
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
2680
+ */
2681
+ pageSize?: number;
2663
2682
  /**
2664
2683
  * A comma separated list of node ids to filter by.
2665
2684
  */
@@ -2675,27 +2694,27 @@ declare class PrimaryNetworkService {
2675
2694
  /**
2676
2695
  * The minimum delegation capacity, in nAVAX, used to filter the set of nodes being returned. Accepts values between 0 and 720,000,000,000,000,000
2677
2696
  */
2678
- minDelegationCapacity?: any;
2697
+ minDelegationCapacity?: string;
2679
2698
  /**
2680
2699
  * The maximum delegation capacity, in nAVAX, used to filter the set of nodes being returned. Accepts values between 0 and 720,000,000,000,000,000.
2681
2700
  */
2682
- maxDelegationCapacity?: any;
2701
+ maxDelegationCapacity?: string;
2683
2702
  /**
2684
2703
  * The minimum validation time remaining, in seconds, used to filter the set of nodes being returned.
2685
2704
  */
2686
- minTimeRemaining?: any;
2705
+ minTimeRemaining?: number;
2687
2706
  /**
2688
2707
  * The maximum validation time remaining, in seconds, used to filter the set of nodes being returned.
2689
2708
  */
2690
- maxTimeRemaining?: any;
2709
+ maxTimeRemaining?: number;
2691
2710
  /**
2692
2711
  * The minimum fee percentage, used to filter the set of nodes being returned.If this field is populated no subnet validations will be returned, as their fee percentage is null, since subnet delegations are not supported. Default is 2, as per the Avalanche spec.
2693
2712
  */
2694
- minFeePercentage?: any;
2713
+ minFeePercentage?: number;
2695
2714
  /**
2696
2715
  * The maximum fee percentage, used to filter the set of nodes being returned. If this field is populated no subnet validations will be returned, as their fee percentage is null, since subnet delegations are not supported. Default is 100.
2697
2716
  */
2698
- maxFeePercentage?: any;
2717
+ maxFeePercentage?: number;
2699
2718
  /**
2700
2719
  * The subnet ID to filter by. If not provided, then all subnets will be returned.
2701
2720
  */
@@ -2707,7 +2726,7 @@ declare class PrimaryNetworkService {
2707
2726
  * @returns ListValidatorDetailsResponse
2708
2727
  * @throws ApiError
2709
2728
  */
2710
- getSingleValidatorDetails({ network, nodeId, pageSize, pageToken, sortOrder, validationStatus, }: {
2729
+ getSingleValidatorDetails({ network, nodeId, pageToken, pageSize, sortOrder, validationStatus, }: {
2711
2730
  /**
2712
2731
  * Either mainnet or a testnet.
2713
2732
  */
@@ -2716,14 +2735,14 @@ declare class PrimaryNetworkService {
2716
2735
  * A primary network (P or X chain) nodeId.
2717
2736
  */
2718
2737
  nodeId: string;
2719
- /**
2720
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
2721
- */
2722
- pageSize?: number;
2723
2738
  /**
2724
2739
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
2725
2740
  */
2726
2741
  pageToken?: string;
2742
+ /**
2743
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
2744
+ */
2745
+ pageSize?: number;
2727
2746
  /**
2728
2747
  * The order by which to sort results. Use "asc" for ascending order, "desc" for descending order. Sorted by timestamp or the `sortBy` query parameter, if provided.
2729
2748
  */
@@ -2739,19 +2758,19 @@ declare class PrimaryNetworkService {
2739
2758
  * @returns ListDelegatorDetailsResponse
2740
2759
  * @throws ApiError
2741
2760
  */
2742
- listDelegators({ network, pageSize, pageToken, rewardAddresses, sortOrder, delegationStatus, nodeIds, }: {
2761
+ listDelegators({ network, pageToken, pageSize, rewardAddresses, sortOrder, delegationStatus, nodeIds, }: {
2743
2762
  /**
2744
2763
  * Either mainnet or a testnet.
2745
2764
  */
2746
2765
  network: Network;
2747
- /**
2748
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
2749
- */
2750
- pageSize?: number;
2751
2766
  /**
2752
2767
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
2753
2768
  */
2754
2769
  pageToken?: string;
2770
+ /**
2771
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
2772
+ */
2773
+ pageSize?: number;
2755
2774
  /**
2756
2775
  * A comma separated list of reward addresses to filter by.
2757
2776
  */
@@ -2802,7 +2821,7 @@ type CChainSharedAssetBalance = {
2802
2821
  /**
2803
2822
  * Type of asset like SECP256K1 or NFT.
2804
2823
  */
2805
- type: string;
2824
+ type: PrimaryNetworkAssetType;
2806
2825
  /**
2807
2826
  * Amount of the asset.
2808
2827
  */
@@ -2857,7 +2876,7 @@ type Asset = {
2857
2876
  /**
2858
2877
  * Type of asset like SECP256K1 or NFT.
2859
2878
  */
2860
- type: string;
2879
+ type: PrimaryNetworkAssetType;
2861
2880
  /**
2862
2881
  * Amount of the asset.
2863
2882
  */
@@ -2884,7 +2903,7 @@ type PChainSharedAsset = {
2884
2903
  /**
2885
2904
  * Type of asset like SECP256K1 or NFT.
2886
2905
  */
2887
- type: string;
2906
+ type: PrimaryNetworkAssetType;
2888
2907
  /**
2889
2908
  * Amount of the asset.
2890
2909
  */
@@ -2953,7 +2972,7 @@ type XChainAssetBalance = {
2953
2972
  /**
2954
2973
  * Type of asset like SECP256K1 or NFT.
2955
2974
  */
2956
- type: string;
2975
+ type: PrimaryNetworkAssetType;
2957
2976
  /**
2958
2977
  * Amount of the asset.
2959
2978
  */
@@ -2981,7 +3000,7 @@ type XChainSharedAssetBalance = {
2981
3000
  /**
2982
3001
  * Type of asset like SECP256K1 or NFT.
2983
3002
  */
2984
- type: string;
3003
+ type: PrimaryNetworkAssetType;
2985
3004
  /**
2986
3005
  * Amount of the asset.
2987
3006
  */
@@ -3111,7 +3130,7 @@ declare class PrimaryNetworkBlocksService {
3111
3130
  * @returns ListPrimaryNetworkBlocksResponse
3112
3131
  * @throws ApiError
3113
3132
  */
3114
- listPrimaryNetworkBlocksByNodeId({ blockchainId, network, nodeId, pageSize, pageToken, }: {
3133
+ listPrimaryNetworkBlocksByNodeId({ blockchainId, network, nodeId, pageToken, pageSize, }: {
3115
3134
  /**
3116
3135
  * A primary network blockchain id or alias.
3117
3136
  */
@@ -3124,14 +3143,14 @@ declare class PrimaryNetworkBlocksService {
3124
3143
  * A primary network (P or X chain) nodeId.
3125
3144
  */
3126
3145
  nodeId: string;
3127
- /**
3128
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
3129
- */
3130
- pageSize?: number;
3131
3146
  /**
3132
3147
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
3133
3148
  */
3134
3149
  pageToken?: string;
3150
+ /**
3151
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
3152
+ */
3153
+ pageSize?: number;
3135
3154
  }): CancelablePromise<ListPrimaryNetworkBlocksResponse>;
3136
3155
  /**
3137
3156
  * List latest blocks
@@ -3139,7 +3158,7 @@ declare class PrimaryNetworkBlocksService {
3139
3158
  * @returns ListPrimaryNetworkBlocksResponse
3140
3159
  * @throws ApiError
3141
3160
  */
3142
- listLatestPrimaryNetworkBlocks({ blockchainId, network, pageSize, pageToken, }: {
3161
+ listLatestPrimaryNetworkBlocks({ blockchainId, network, pageToken, pageSize, }: {
3143
3162
  /**
3144
3163
  * A primary network blockchain id or alias.
3145
3164
  */
@@ -3148,14 +3167,14 @@ declare class PrimaryNetworkBlocksService {
3148
3167
  * Either mainnet or a testnet.
3149
3168
  */
3150
3169
  network: Network;
3151
- /**
3152
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
3153
- */
3154
- pageSize?: number;
3155
3170
  /**
3156
3171
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
3157
3172
  */
3158
3173
  pageToken?: string;
3174
+ /**
3175
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
3176
+ */
3177
+ pageSize?: number;
3159
3178
  }): CancelablePromise<ListPrimaryNetworkBlocksResponse>;
3160
3179
  }
3161
3180
 
@@ -3179,7 +3198,7 @@ type AssetWithPriceInfo = {
3179
3198
  /**
3180
3199
  * Type of asset like SECP256K1 or NFT.
3181
3200
  */
3182
- type: string;
3201
+ type: PrimaryNetworkAssetType;
3183
3202
  /**
3184
3203
  * Amount of the asset.
3185
3204
  */
@@ -3256,25 +3275,25 @@ declare class PrimaryNetworkRewardsService {
3256
3275
  * @returns ListPendingRewardsResponse
3257
3276
  * @throws ApiError
3258
3277
  */
3259
- listPendingPrimaryNetworkRewards({ network, addresses, pageSize, pageToken, nodeIds, sortOrder, }: {
3278
+ listPendingPrimaryNetworkRewards({ network, addresses, pageToken, pageSize, nodeIds, sortOrder, }: {
3260
3279
  /**
3261
3280
  * Either mainnet or a testnet.
3262
3281
  */
3263
3282
  network: Network;
3264
3283
  /**
3265
- * A comma separated list of X-Chain or P-Chain wallet addresses, starting with "avax"/"fuji", "P-avax"/"P-fuji" or "X-avax"/"X-fuji". Optional, but at least one of addresses or nodeIds is required.
3284
+ * A comma separated list of X-Chain or P-Chain wallet addresses, starting with "avax"/"fuji", "P-avax"/"P-fuji" or "X-avax"/"X-fuji". One of addresses or nodeIds is required.
3266
3285
  */
3267
3286
  addresses?: string;
3268
- /**
3269
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
3270
- */
3271
- pageSize?: number;
3272
3287
  /**
3273
3288
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
3274
3289
  */
3275
3290
  pageToken?: string;
3276
3291
  /**
3277
- * A comma separated list of node ids to filter by. Optional, but at least one of addresses or nodeIds is required.
3292
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
3293
+ */
3294
+ pageSize?: number;
3295
+ /**
3296
+ * A comma separated list of node ids to filter by. One of addresses or nodeIds is required.
3278
3297
  */
3279
3298
  nodeIds?: string;
3280
3299
  /**
@@ -3288,7 +3307,7 @@ declare class PrimaryNetworkRewardsService {
3288
3307
  * @returns ListHistoricalRewardsResponse
3289
3308
  * @throws ApiError
3290
3309
  */
3291
- listHistoricalPrimaryNetworkRewards({ network, addresses, pageSize, pageToken, nodeIds, sortOrder, currency, }: {
3310
+ listHistoricalPrimaryNetworkRewards({ network, addresses, pageToken, pageSize, nodeIds, sortOrder, currency, }: {
3292
3311
  /**
3293
3312
  * Either mainnet or a testnet.
3294
3313
  */
@@ -3297,14 +3316,14 @@ declare class PrimaryNetworkRewardsService {
3297
3316
  * A comma separated list of X-Chain or P-Chain wallet addresses, starting with "avax"/"fuji", "P-avax"/"P-fuji" or "X-avax"/"X-fuji". Optional, but at least one of addresses or nodeIds is required.
3298
3317
  */
3299
3318
  addresses?: string;
3300
- /**
3301
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
3302
- */
3303
- pageSize?: number;
3304
3319
  /**
3305
3320
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
3306
3321
  */
3307
3322
  pageToken?: string;
3323
+ /**
3324
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
3325
+ */
3326
+ pageSize?: number;
3308
3327
  /**
3309
3328
  * A comma separated list of node ids to filter by. Optional, but at least one of addresses or nodeIds is required.
3310
3329
  */
@@ -3885,13 +3904,13 @@ declare class PrimaryNetworkTransactionsService {
3885
3904
  * List latest transactions
3886
3905
  * Lists the latest transactions on one of the Primary Network chains.
3887
3906
  *
3888
- * Transactions are filterable by addresses.
3907
+ * Transactions are filterable by addresses, txTypes, and timestamps. When querying for latest transactions without an address parameter, filtering by txTypes and timestamps is not supported. An address filter must be provided to utilize txTypes and timestamp filters.
3889
3908
  *
3890
3909
  * Given that each transaction may return a large number of UTXO objects, bounded only by the maximum transaction size, the query may return less transactions than the provided page size. The result will contain less results than the page size if the number of utxos contained in the resulting transactions reach a performance threshold.
3891
3910
  * @returns any
3892
3911
  * @throws ApiError
3893
3912
  */
3894
- listLatestPrimaryNetworkTransactions({ blockchainId, network, addresses, txTypes, startTimestamp, endTimestamp, pageSize, pageToken, sortOrder, }: {
3913
+ listLatestPrimaryNetworkTransactions({ blockchainId, network, addresses, txTypes, startTimestamp, endTimestamp, pageToken, pageSize, sortOrder, }: {
3895
3914
  /**
3896
3915
  * A primary network blockchain id or alias.
3897
3916
  */
@@ -3916,14 +3935,14 @@ declare class PrimaryNetworkTransactionsService {
3916
3935
  * Query param for retrieving items before a specific timestamp.
3917
3936
  */
3918
3937
  endTimestamp?: number;
3919
- /**
3920
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
3921
- */
3922
- pageSize?: number;
3923
3938
  /**
3924
3939
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
3925
3940
  */
3926
3941
  pageToken?: string;
3942
+ /**
3943
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
3944
+ */
3945
+ pageSize?: number;
3927
3946
  /**
3928
3947
  * The order by which to sort results. Use "asc" for ascending order, "desc" for descending order. Sorted by timestamp or the `sortBy` query parameter, if provided.
3929
3948
  */
@@ -3935,7 +3954,7 @@ declare class PrimaryNetworkTransactionsService {
3935
3954
  * @returns ListPChainTransactionsResponse
3936
3955
  * @throws ApiError
3937
3956
  */
3938
- listActivePrimaryNetworkStakingTransactions({ blockchainId, network, addresses, txTypes, startTimestamp, endTimestamp, pageSize, pageToken, sortOrder, }: {
3957
+ listActivePrimaryNetworkStakingTransactions({ blockchainId, network, addresses, txTypes, startTimestamp, endTimestamp, pageToken, pageSize, sortOrder, }: {
3939
3958
  /**
3940
3959
  * A primary network blockchain id or alias.
3941
3960
  */
@@ -3960,14 +3979,14 @@ declare class PrimaryNetworkTransactionsService {
3960
3979
  * Query param for retrieving items before a specific timestamp.
3961
3980
  */
3962
3981
  endTimestamp?: number;
3963
- /**
3964
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
3965
- */
3966
- pageSize?: number;
3967
3982
  /**
3968
3983
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
3969
3984
  */
3970
3985
  pageToken?: string;
3986
+ /**
3987
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
3988
+ */
3989
+ pageSize?: number;
3971
3990
  /**
3972
3991
  * The order by which to sort results. Use "asc" for ascending order, "desc" for descending order. Sorted by timestamp or the `sortBy` query parameter, if provided.
3973
3992
  */
@@ -3979,7 +3998,7 @@ declare class PrimaryNetworkTransactionsService {
3979
3998
  * @returns ListXChainTransactionsResponse
3980
3999
  * @throws ApiError
3981
4000
  */
3982
- listAssetTransactions({ blockchainId, network, assetId, txTypes, startTimestamp, endTimestamp, pageSize, pageToken, }: {
4001
+ listAssetTransactions({ blockchainId, network, assetId, txTypes, startTimestamp, endTimestamp, pageToken, pageSize, }: {
3983
4002
  /**
3984
4003
  * A primary network blockchain id or alias.
3985
4004
  */
@@ -4004,14 +4023,14 @@ declare class PrimaryNetworkTransactionsService {
4004
4023
  * Query param for retrieving items before a specific timestamp.
4005
4024
  */
4006
4025
  endTimestamp?: number;
4007
- /**
4008
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
4009
- */
4010
- pageSize?: number;
4011
4026
  /**
4012
4027
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
4013
4028
  */
4014
4029
  pageToken?: string;
4030
+ /**
4031
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
4032
+ */
4033
+ pageSize?: number;
4015
4034
  }): CancelablePromise<ListXChainTransactionsResponse>;
4016
4035
  }
4017
4036
 
@@ -4042,7 +4061,7 @@ declare class PrimaryNetworkUtxOsService {
4042
4061
  * @returns any
4043
4062
  * @throws ApiError
4044
4063
  */
4045
- getUtxosByAddresses({ blockchainId, network, addresses, pageSize, pageToken, assetId, includeSpent, sortOrder, }: {
4064
+ getUtxosByAddresses({ blockchainId, network, addresses, pageToken, pageSize, assetId, includeSpent, sortOrder, }: {
4046
4065
  /**
4047
4066
  * A primary network blockchain id or alias.
4048
4067
  */
@@ -4055,14 +4074,14 @@ declare class PrimaryNetworkUtxOsService {
4055
4074
  * A comma separated list of X-Chain or P-Chain wallet addresses, starting with "avax"/"fuji", "P-avax"/"P-fuji" or "X-avax"/"X-fuji".
4056
4075
  */
4057
4076
  addresses?: string;
4058
- /**
4059
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
4060
- */
4061
- pageSize?: number;
4062
4077
  /**
4063
4078
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
4064
4079
  */
4065
4080
  pageToken?: string;
4081
+ /**
4082
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
4083
+ */
4084
+ pageSize?: number;
4066
4085
  /**
4067
4086
  * Asset ID for any asset (only applicable X-Chain)
4068
4087
  */
@@ -4107,7 +4126,7 @@ declare class PrimaryNetworkVerticesService {
4107
4126
  * @returns ListXChainVerticesResponse
4108
4127
  * @throws ApiError
4109
4128
  */
4110
- listLatestXChainVertices({ blockchainId, network, pageSize, pageToken, }: {
4129
+ listLatestXChainVertices({ blockchainId, network, pageToken, pageSize, }: {
4111
4130
  /**
4112
4131
  * A primary network blockchain id or alias.
4113
4132
  */
@@ -4116,14 +4135,14 @@ declare class PrimaryNetworkVerticesService {
4116
4135
  * Either mainnet or a testnet.
4117
4136
  */
4118
4137
  network: Network;
4119
- /**
4120
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
4121
- */
4122
- pageSize?: number;
4123
4138
  /**
4124
4139
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
4125
4140
  */
4126
4141
  pageToken?: string;
4142
+ /**
4143
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
4144
+ */
4145
+ pageSize?: number;
4127
4146
  }): CancelablePromise<ListXChainVerticesResponse>;
4128
4147
  /**
4129
4148
  * Get vertex
@@ -4151,7 +4170,7 @@ declare class PrimaryNetworkVerticesService {
4151
4170
  * @returns ListXChainVerticesResponse
4152
4171
  * @throws ApiError
4153
4172
  */
4154
- getVertexByHeight({ vertexHeight, blockchainId, network, pageSize, pageToken, sortOrder, }: {
4173
+ getVertexByHeight({ vertexHeight, blockchainId, network, pageToken, pageSize, sortOrder, }: {
4155
4174
  /**
4156
4175
  * The height of a vertex.
4157
4176
  */
@@ -4164,192 +4183,19 @@ declare class PrimaryNetworkVerticesService {
4164
4183
  * Either mainnet or a testnet.
4165
4184
  */
4166
4185
  network: Network;
4167
- /**
4168
- * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
4169
- */
4170
- pageSize?: number;
4171
4186
  /**
4172
4187
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
4173
4188
  */
4174
4189
  pageToken?: string;
4175
- /**
4176
- * The order by which to sort results. Use "asc" for ascending order, "desc" for descending order. Sorted by timestamp or the `sortBy` query parameter, if provided.
4177
- */
4178
- sortOrder?: SortOrder;
4179
- }): CancelablePromise<ListXChainVerticesResponse>;
4180
- }
4181
-
4182
- type TeleporterDestinationTransaction = {
4183
- txHash: string;
4184
- timestamp: number;
4185
- gasSpent: string;
4186
- rewardRedeemer: string;
4187
- delivererAddress: string;
4188
- };
4189
-
4190
- type TeleporterRewardDetails = {
4191
- /**
4192
- * A wallet or contract address in mixed-case checksum encoding.
4193
- */
4194
- address: string;
4195
- /**
4196
- * The contract name.
4197
- */
4198
- name: string;
4199
- /**
4200
- * The contract symbol.
4201
- */
4202
- symbol: string;
4203
- /**
4204
- * The number of decimals the token uses. For example `6`, means to divide the token amount by `1000000` to get its user representation.
4205
- */
4206
- decimals: number;
4207
- /**
4208
- * The logo uri for the address.
4209
- */
4210
- logoUri?: string;
4211
- ercType: TeleporterRewardDetails.ercType;
4212
- /**
4213
- * The token price, if available.
4214
- */
4215
- price?: Money;
4216
- value: string;
4217
- };
4218
- declare namespace TeleporterRewardDetails {
4219
- enum ercType {
4220
- ERC_20 = "ERC-20"
4221
- }
4222
- }
4223
-
4224
- type DeliveredSourceNotIndexedTeleporterMessage = {
4225
- sourceBlockchainId: string;
4226
- destinationBlockchainId: string;
4227
- messageId: string;
4228
- from: string;
4229
- to: string;
4230
- data?: string;
4231
- messageExecuted: boolean;
4232
- receipts: Array<string>;
4233
- receiptDelivered: boolean;
4234
- rewardDetails: TeleporterRewardDetails;
4235
- destinationTransaction: TeleporterDestinationTransaction;
4236
- status: DeliveredSourceNotIndexedTeleporterMessage.status;
4237
- };
4238
- declare namespace DeliveredSourceNotIndexedTeleporterMessage {
4239
- enum status {
4240
- DELIVERED_SOURCE_NOT_INDEXED = "delivered_source_not_indexed"
4241
- }
4242
- }
4243
-
4244
- type TeleporterSourceTransaction = {
4245
- txHash: string;
4246
- timestamp: number;
4247
- gasSpent: string;
4248
- };
4249
-
4250
- type DeliveredTeleporterMessage = {
4251
- sourceBlockchainId: string;
4252
- destinationBlockchainId: string;
4253
- messageId: string;
4254
- from: string;
4255
- to: string;
4256
- data?: string;
4257
- messageExecuted: boolean;
4258
- receipts: Array<string>;
4259
- receiptDelivered: boolean;
4260
- rewardDetails: TeleporterRewardDetails;
4261
- sourceTransaction: TeleporterSourceTransaction;
4262
- destinationTransaction: TeleporterDestinationTransaction;
4263
- status: DeliveredTeleporterMessage.status;
4264
- };
4265
- declare namespace DeliveredTeleporterMessage {
4266
- enum status {
4267
- DELIVERED = "delivered"
4268
- }
4269
- }
4270
-
4271
- type NextPageToken = {
4272
- /**
4273
- * 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.
4274
- */
4275
- nextPageToken?: string;
4276
- };
4277
-
4278
- type PendingTeleporterMessage = {
4279
- sourceBlockchainId: string;
4280
- destinationBlockchainId: string;
4281
- messageId: string;
4282
- from: string;
4283
- to: string;
4284
- data?: string;
4285
- messageExecuted: boolean;
4286
- receipts: Array<string>;
4287
- receiptDelivered: boolean;
4288
- rewardDetails: TeleporterRewardDetails;
4289
- sourceTransaction: TeleporterSourceTransaction;
4290
- status: PendingTeleporterMessage.status;
4291
- };
4292
- declare namespace PendingTeleporterMessage {
4293
- enum status {
4294
- PENDING = "pending"
4295
- }
4296
- }
4297
-
4298
- declare class TeleporterService {
4299
- readonly httpRequest: BaseHttpRequest;
4300
- constructor(httpRequest: BaseHttpRequest);
4301
- /**
4302
- * Get a teleporter message
4303
- * Gets a teleporter message by source chain, destination chain, and message ID.
4304
- * @returns any
4305
- * @throws ApiError
4306
- */
4307
- getTeleporterMessage({ sourceBlockchainId, destinationBlockchainId, messageId, }: {
4308
- /**
4309
- * The base58 encoded blockchain ID of the source chain that the teleporter message was sent from.
4310
- */
4311
- sourceBlockchainId: any;
4312
- /**
4313
- * The base58 encoded blockchain ID of the destination chain that the teleporter message was sent to.
4314
- */
4315
- destinationBlockchainId: any;
4316
- /**
4317
- * The message ID of the teleporter message.
4318
- */
4319
- messageId: any;
4320
- }): CancelablePromise<(PendingTeleporterMessage | DeliveredTeleporterMessage | DeliveredSourceNotIndexedTeleporterMessage)>;
4321
- /**
4322
- * List teleporter messages
4323
- * Lists teleporter messages. Ordered by timestamp in descending order.
4324
- * @returns any
4325
- * @throws ApiError
4326
- */
4327
- listTeleporterMessages({ pageSize, pageToken, sourceBlockchainId, destinationBlockchainId, to, from, }: {
4328
4190
  /**
4329
4191
  * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
4330
4192
  */
4331
4193
  pageSize?: number;
4332
4194
  /**
4333
- * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
4334
- */
4335
- pageToken?: string;
4336
- /**
4337
- * The base58 encoded blockchain ID of the source chain that the teleporter message was sent from.
4338
- */
4339
- sourceBlockchainId?: any;
4340
- /**
4341
- * The base58 encoded blockchain ID of the destination chain that the teleporter message was sent to.
4342
- */
4343
- destinationBlockchainId?: any;
4344
- /**
4345
- * The address of the recipient of the teleporter message.
4346
- */
4347
- to?: any;
4348
- /**
4349
- * The address of the sender of the teleporter message.
4195
+ * The order by which to sort results. Use "asc" for ascending order, "desc" for descending order. Sorted by timestamp or the `sortBy` query parameter, if provided.
4350
4196
  */
4351
- from?: any;
4352
- }): CancelablePromise<NextPageToken>;
4197
+ sortOrder?: SortOrder;
4198
+ }): CancelablePromise<ListXChainVerticesResponse>;
4353
4199
  }
4354
4200
 
4355
4201
  type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
@@ -4370,7 +4216,6 @@ declare class Glacier {
4370
4216
  readonly primaryNetworkTransactions: PrimaryNetworkTransactionsService;
4371
4217
  readonly primaryNetworkUtxOs: PrimaryNetworkUtxOsService;
4372
4218
  readonly primaryNetworkVertices: PrimaryNetworkVerticesService;
4373
- readonly teleporter: TeleporterService;
4374
4219
  readonly request: BaseHttpRequest;
4375
4220
  constructor(config?: Partial<OpenAPIConfig>, HttpRequest?: HttpRequestConstructor);
4376
4221
  }
@@ -4392,4 +4237,4 @@ declare class ApiError extends Error {
4392
4237
  constructor(request: ApiRequestOptions, response: ApiResult, message: string);
4393
4238
  }
4394
4239
 
4395
- export { ActiveDelegatorDetails, ActiveValidatorDetails, AddressActivityMetadata, ApiError, Asset, AssetWithPriceInfo, BaseHttpRequest, Blockchain, BlockchainId, BlockchainIds, BlockchainInfo, CChainAtomicBalances, CChainExportTransaction, CChainImportTransaction, CChainSharedAssetBalance, CancelError, CancelablePromise, ChainAddressChainIdMap, ChainAddressChainIdMapListResponse, ChainInfo, ChainStatus, CompletedDelegatorDetails, CompletedValidatorDetails, ContractDeploymentDetails, ContractSubmissionBody, ContractSubmissionErc1155, ContractSubmissionErc20, ContractSubmissionErc721, ContractSubmissionUnknown, CreateEvmTransactionExportRequest, CreatePrimaryNetworkTransactionExportRequest, CurrencyCode, DefaultService, DelegationStatusType, DelegatorsDetails, DeliveredSourceNotIndexedTeleporterMessage, DeliveredTeleporterMessage, EVMInput, EVMOutput, Erc1155Contract, Erc1155Token, Erc1155TokenBalance, Erc1155TokenMetadata, Erc1155Transfer, Erc1155TransferDetails, Erc20Contract, Erc20Token, Erc20TokenBalance, Erc20Transfer, Erc20TransferDetails, Erc721Contract, Erc721Token, Erc721TokenBalance, Erc721TokenMetadata, Erc721Transfer, Erc721TransferDetails, EventType, EvmBalancesService, EvmBlock, EvmBlocksService, EvmChainsService, EvmContractsService, EvmNetworkOptions, EvmTransactionsService, FullNativeTransactionDetails, GetChainResponse, GetEvmBlockResponse, GetNativeBalanceResponse, GetNetworkDetailsResponse, GetPrimaryNetworkBlockResponse, GetTransactionResponse, Glacier, HealthCheckService, HistoricalReward, ImageAsset, InternalTransaction, InternalTransactionDetails, InternalTransactionOpCall, ListBlockchainsResponse, ListCChainAtomicBalancesResponse, ListCChainAtomicTransactionsResponse, ListChainsResponse, ListCollectibleBalancesResponse, ListContractsResponse, ListDelegatorDetailsResponse, ListErc1155BalancesResponse, ListErc1155TransactionsResponse, ListErc20BalancesResponse, ListErc20TransactionsResponse, ListErc721BalancesResponse, ListErc721TransactionsResponse, ListEvmBlocksResponse, ListHistoricalRewardsResponse, ListInternalTransactionsResponse, ListNativeTransactionsResponse, ListNftTokens, ListPChainBalancesResponse, ListPChainTransactionsResponse, ListPChainUtxosResponse, ListPendingRewardsResponse, ListPrimaryNetworkBlocksResponse, ListSubnetsResponse, ListTransactionDetailsResponse, ListTransfersResponse, ListUtxosResponse, ListValidatorDetailsResponse, ListWebhooksResponse, ListXChainBalancesResponse, ListXChainTransactionsResponse, ListXChainVerticesResponse, Method, Money, NativeTokenBalance, NativeTransaction, Network, NetworkToken, NetworkTokenDetails, NetworkType, NextPageToken, NfTsService, NftTokenMetadataStatus, OpenAPI, OpenAPIConfig, OperationStatus, OperationStatusCode, OperationStatusResponse, OperationType, OperationsService, PChainBalance, PChainId, PChainSharedAsset, PChainTransaction, PChainTransactionType, PChainUtxo, PendingDelegatorDetails, PendingReward, PendingTeleporterMessage, PendingValidatorDetails, PricingProviders, PrimaryNetwork, PrimaryNetworkBalancesService, PrimaryNetworkBlock, PrimaryNetworkBlocksService, PrimaryNetworkChainInfo, PrimaryNetworkChainName, PrimaryNetworkOptions, PrimaryNetworkRewardsService, PrimaryNetworkService, PrimaryNetworkTransactionsService, PrimaryNetworkTxType, PrimaryNetworkUtxOsService, PrimaryNetworkVerticesService, ProposerDetails, RegisterWebhookRequest, RemovedValidatorDetails, ResourceLink, ResourceLinkType, RewardType, Rewards, RichAddress, SharedSecretsResponse, SortOrder, StakingDistribution, Subnet, TeleporterDestinationTransaction, TeleporterRewardDetails, TeleporterService, TeleporterSourceTransaction, TransactionDetails, TransactionExportMetadata, TransactionMethodType, TransactionStatus, TransactionVertexDetail, UnknownContract, UpdateContractResponse, UtilityAddresses, Utxo, UtxoCredential, UtxoType, ValidationStatusType, ValidatorHealthDetails, ValidatorsDetails, VmName, WebhookResponse, WebhookStatus, WebhookStatusType, XChainAssetBalance, XChainAssetDetails, XChainBalances, XChainId, XChainLinearTransaction, XChainNonLinearTransaction, XChainSharedAssetBalance, XChainTransactionType, XChainVertex };
4240
+ export { ActiveDelegatorDetails, ActiveValidatorDetails, AddressActivityMetadata, ApiError, Asset, AssetWithPriceInfo, BaseHttpRequest, Blockchain, BlockchainId, BlockchainIds, BlockchainInfo, CChainAtomicBalances, CChainExportTransaction, CChainImportTransaction, CChainSharedAssetBalance, CancelError, CancelablePromise, ChainAddressChainIdMap, ChainAddressChainIdMapListResponse, ChainInfo, ChainStatus, CompletedDelegatorDetails, CompletedValidatorDetails, ContractDeploymentDetails, ContractSubmissionBody, ContractSubmissionErc1155, ContractSubmissionErc20, ContractSubmissionErc721, ContractSubmissionUnknown, CreateEvmTransactionExportRequest, CreatePrimaryNetworkTransactionExportRequest, CurrencyCode, DefaultService, DelegationStatusType, DelegatorsDetails, EVMInput, EVMOutput, Erc1155Contract, Erc1155Token, Erc1155TokenBalance, Erc1155TokenMetadata, Erc1155Transfer, Erc1155TransferDetails, Erc20Contract, Erc20Token, Erc20TokenBalance, Erc20Transfer, Erc20TransferDetails, Erc721Contract, Erc721Token, Erc721TokenBalance, Erc721TokenMetadata, Erc721Transfer, Erc721TransferDetails, EventType, EvmBalancesService, EvmBlock, EvmBlocksService, EvmChainsService, EvmContractsService, EvmNetworkOptions, EvmTransactionsService, FullNativeTransactionDetails, GetChainResponse, GetEvmBlockResponse, GetNativeBalanceResponse, GetNetworkDetailsResponse, GetPrimaryNetworkBlockResponse, GetTransactionResponse, Glacier, HealthCheckService, HistoricalReward, ImageAsset, InternalTransaction, InternalTransactionDetails, InternalTransactionOpCall, ListBlockchainsResponse, ListCChainAtomicBalancesResponse, ListCChainAtomicTransactionsResponse, ListChainsResponse, ListCollectibleBalancesResponse, ListContractsResponse, ListDelegatorDetailsResponse, ListErc1155BalancesResponse, ListErc1155TransactionsResponse, ListErc20BalancesResponse, ListErc20TransactionsResponse, ListErc721BalancesResponse, ListErc721TransactionsResponse, ListEvmBlocksResponse, ListHistoricalRewardsResponse, ListInternalTransactionsResponse, ListNativeTransactionsResponse, ListNftTokens, ListPChainBalancesResponse, ListPChainTransactionsResponse, ListPChainUtxosResponse, ListPendingRewardsResponse, ListPrimaryNetworkBlocksResponse, ListSubnetsResponse, ListTransactionDetailsResponse, ListTransfersResponse, ListUtxosResponse, ListValidatorDetailsResponse, ListWebhooksResponse, ListXChainBalancesResponse, ListXChainTransactionsResponse, ListXChainVerticesResponse, Method, Money, NativeTokenBalance, NativeTransaction, Network, NetworkToken, NetworkTokenDetails, NetworkType, NfTsService, NftTokenMetadataStatus, OpenAPI, OpenAPIConfig, OperationStatus, OperationStatusCode, OperationStatusResponse, OperationType, OperationsService, PChainBalance, PChainId, PChainSharedAsset, PChainTransaction, PChainTransactionType, PChainUtxo, PendingDelegatorDetails, PendingReward, PendingValidatorDetails, PricingProviders, PrimaryNetwork, PrimaryNetworkAssetCap, PrimaryNetworkAssetType, PrimaryNetworkBalancesService, PrimaryNetworkBlock, PrimaryNetworkBlocksService, PrimaryNetworkChainInfo, PrimaryNetworkChainName, PrimaryNetworkOptions, PrimaryNetworkRewardsService, PrimaryNetworkService, PrimaryNetworkTransactionsService, PrimaryNetworkTxType, PrimaryNetworkUtxOsService, PrimaryNetworkVerticesService, ProposerDetails, RegisterWebhookRequest, RemovedValidatorDetails, ResourceLink, ResourceLinkType, RewardType, Rewards, RichAddress, SharedSecretsResponse, SortOrder, StakingDistribution, Subnet, TransactionDetails, TransactionExportMetadata, TransactionMethodType, TransactionStatus, TransactionVertexDetail, UnknownContract, UpdateContractResponse, UtilityAddresses, Utxo, UtxoCredential, UtxoType, ValidationStatusType, ValidatorHealthDetails, ValidatorsDetails, VmName, WebhookResponse, WebhookStatus, WebhookStatusType, XChainAssetBalance, XChainAssetDetails, XChainBalances, XChainId, XChainLinearTransaction, XChainNonLinearTransaction, XChainSharedAssetBalance, XChainTransactionType, XChainVertex };