@avalabs/glacier-sdk 3.1.0-canary.b1108b2.0 → 3.1.0-canary.c57360e.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 (48) hide show
  1. package/dist/index.d.ts +248 -97
  2. package/dist/index.js +1 -1
  3. package/esm/generated/Glacier.d.ts +2 -0
  4. package/esm/generated/Glacier.js +1 -1
  5. package/esm/generated/models/BlockchainId.d.ts +2 -0
  6. package/esm/generated/models/BlockchainId.js +1 -1
  7. package/esm/generated/models/BlockchainIds.d.ts +3 -1
  8. package/esm/generated/models/BlockchainIds.js +1 -1
  9. package/esm/generated/models/CreateEvmTransactionExportRequest.d.ts +4 -4
  10. package/esm/generated/models/CreatePrimaryNetworkTransactionExportRequest.d.ts +4 -4
  11. package/esm/generated/models/Network.d.ts +3 -1
  12. package/esm/generated/models/Network.js +1 -1
  13. package/esm/generated/models/PrimaryNetwork.d.ts +2 -1
  14. package/esm/generated/models/PrimaryNetwork.js +1 -1
  15. package/esm/generated/models/PrimaryNetworkOptions.d.ts +1 -1
  16. package/esm/generated/models/RpcMetrics.d.ts +14 -0
  17. package/esm/generated/models/RpcUsageMetricsResponseDTO.d.ts +18 -0
  18. package/esm/generated/models/RpcUsageMetricsValueAggregated.d.ts +47 -0
  19. package/esm/generated/models/RpcUsageMetricsValueAggregated.js +1 -0
  20. package/esm/generated/models/SignatureAggregationResponse.d.ts +5 -0
  21. package/esm/generated/models/SignatureAggregatorRequest.d.ts +14 -0
  22. package/esm/generated/models/XChainId.d.ts +1 -0
  23. package/esm/generated/models/XChainId.js +1 -1
  24. package/esm/generated/services/DataApiUsageMetricsService.d.ts +63 -18
  25. package/esm/generated/services/DataApiUsageMetricsService.js +1 -1
  26. package/esm/generated/services/EvmBalancesService.d.ts +5 -5
  27. package/esm/generated/services/EvmBlocksService.d.ts +2 -2
  28. package/esm/generated/services/EvmChainsService.d.ts +4 -4
  29. package/esm/generated/services/EvmContractsService.d.ts +2 -2
  30. package/esm/generated/services/EvmTransactionsService.d.ts +12 -12
  31. package/esm/generated/services/NfTsService.d.ts +3 -3
  32. package/esm/generated/services/PrimaryNetworkBalancesService.d.ts +1 -1
  33. package/esm/generated/services/PrimaryNetworkBlocksService.d.ts +3 -3
  34. package/esm/generated/services/PrimaryNetworkRewardsService.d.ts +2 -2
  35. package/esm/generated/services/PrimaryNetworkService.d.ts +9 -9
  36. package/esm/generated/services/PrimaryNetworkTransactionsService.d.ts +9 -9
  37. package/esm/generated/services/PrimaryNetworkTransactionsService.js +1 -1
  38. package/esm/generated/services/PrimaryNetworkUtxOsService.d.ts +1 -1
  39. package/esm/generated/services/PrimaryNetworkVerticesService.d.ts +3 -3
  40. package/esm/generated/services/RpcService.d.ts +1 -1
  41. package/esm/generated/services/SignatureAggregatorService.d.ts +20 -0
  42. package/esm/generated/services/SignatureAggregatorService.js +1 -0
  43. package/esm/generated/services/TeleporterService.d.ts +5 -5
  44. package/esm/index.d.ts +6 -1
  45. package/esm/index.js +1 -1
  46. package/package.json +2 -2
  47. package/esm/generated/models/NetworkType.d.ts +0 -6
  48. package/esm/generated/models/NetworkType.js +0 -1
package/dist/index.d.ts CHANGED
@@ -148,6 +148,78 @@ type LogsResponseDTO = {
148
148
  logs: Array<LogsFormat>;
149
149
  };
150
150
 
151
+ type RpcUsageMetricsValueAggregated = {
152
+ /**
153
+ * The total number of requests
154
+ */
155
+ totalRequests: number;
156
+ /**
157
+ * The number of API credits used
158
+ */
159
+ apiCreditsUsed: number;
160
+ /**
161
+ * The number of requests per second
162
+ */
163
+ requestsPerSecond: number;
164
+ /**
165
+ * The success rate percentage
166
+ */
167
+ successRatePercent: number;
168
+ /**
169
+ * The median response time in milliseconds
170
+ */
171
+ medianResponseTimeMsecs: number;
172
+ /**
173
+ * The number of invalid requests
174
+ */
175
+ invalidRequests: number;
176
+ /**
177
+ * Column name used for data aggregation
178
+ */
179
+ groupedBy: RpcUsageMetricsValueAggregated.groupedBy;
180
+ /**
181
+ * The value of the column used for data aggregation
182
+ */
183
+ groupValue?: (string | number);
184
+ };
185
+ declare namespace RpcUsageMetricsValueAggregated {
186
+ /**
187
+ * Column name used for data aggregation
188
+ */
189
+ enum groupedBy {
190
+ RPC_METHOD = "rpcMethod",
191
+ RESPONSE_CODE = "responseCode",
192
+ RL_BYPASS_TOKEN = "rlBypassToken",
193
+ NONE = "None"
194
+ }
195
+ }
196
+
197
+ type RpcMetrics = {
198
+ /**
199
+ * The timestamp of the metrics value
200
+ */
201
+ timestamp: number;
202
+ /**
203
+ * The metrics values for the timestamp
204
+ */
205
+ values: Array<RpcUsageMetricsValueAggregated>;
206
+ };
207
+
208
+ type RpcUsageMetricsResponseDTO = {
209
+ /**
210
+ * Duration in which the metrics value is aggregated
211
+ */
212
+ aggregateDuration: string;
213
+ /**
214
+ * ChainId for which the metrics are aggregated
215
+ */
216
+ chainId: string;
217
+ /**
218
+ * Metrics values
219
+ */
220
+ metrics: Array<RpcMetrics>;
221
+ };
222
+
151
223
  declare enum TimeIntervalGranularityExtended {
152
224
  MINUTE = "minute",
153
225
  HOURLY = "hourly",
@@ -251,17 +323,17 @@ declare class DataApiUsageMetricsService {
251
323
  * @returns UsageMetricsResponseDTO Successful response
252
324
  * @throws ApiError
253
325
  */
254
- getApiUsageMetrics({ orgId, startTimestamp, endTimestamp, timeInterval, groupBy, requestPath, requestType, responseCode, chainId, apiKeyId, }: {
326
+ getApiUsageMetrics({ orgId, startTimestamp, endTimestamp, timeInterval, groupBy, chainId, requestPath, responseCode, requestType, apiKeyId, }: {
255
327
  /**
256
328
  * Organization ID to fetch usage metrics for
257
329
  */
258
330
  orgId?: string;
259
331
  /**
260
- * Query param for retrieving items after a specific timestamp.
332
+ * The start time of the range as a UNIX timestamp. The requested start time will be rounded down to 0:00 UTC of the day.
261
333
  */
262
334
  startTimestamp?: number;
263
335
  /**
264
- * Query param for retrieving items before a specific timestamp.
336
+ * The end time of the range as a UNIX timestamp. The requested end time will be rounded down to 0:00 UTC of the day. `endTimestamp` must be no earlier than 0:00 UTC of the day after `startTimestamp`.
265
337
  */
266
338
  endTimestamp?: number;
267
339
  /**
@@ -273,21 +345,21 @@ declare class DataApiUsageMetricsService {
273
345
  */
274
346
  groupBy?: UsageMetricsGroupByEnum;
275
347
  /**
276
- * Filter data by request path.
348
+ * Filter data by chain ID.
277
349
  */
278
- requestPath?: string;
350
+ chainId?: string;
279
351
  /**
280
- * Filter data by request type.
352
+ * Filter data by request path.
281
353
  */
282
- requestType?: 'data' | 'rpc';
354
+ requestPath?: string;
283
355
  /**
284
356
  * Filter data by response status code.
285
357
  */
286
358
  responseCode?: string;
287
359
  /**
288
- * Filter data by chain ID.
360
+ * Filter data by request type.
289
361
  */
290
- chainId?: string;
362
+ requestType?: 'data' | 'rpc';
291
363
  /**
292
364
  * Filter data by API key ID.
293
365
  */
@@ -299,35 +371,35 @@ declare class DataApiUsageMetricsService {
299
371
  * @returns LogsResponseDTO Successful response
300
372
  * @throws ApiError
301
373
  */
302
- getApiLogs({ orgId, startTimestamp, endTimestamp, requestPath, requestType, responseCode, chainId, apiKeyId, pageToken, pageSize, }: {
374
+ getApiLogs({ orgId, startTimestamp, endTimestamp, chainId, requestPath, responseCode, requestType, apiKeyId, pageToken, pageSize, }: {
303
375
  /**
304
376
  * Organization ID to fetch usage metrics for
305
377
  */
306
378
  orgId?: string;
307
379
  /**
308
- * Query param for retrieving items after a specific timestamp.
380
+ * The start time of the range as a UNIX timestamp. The requested start time will be rounded down to 0:00 UTC of the day.
309
381
  */
310
382
  startTimestamp?: number;
311
383
  /**
312
- * Query param for retrieving items before a specific timestamp.
384
+ * The end time of the range as a UNIX timestamp. The requested end time will be rounded down to 0:00 UTC of the day. `endTimestamp` must be no earlier than 0:00 UTC of the day after `startTimestamp`.
313
385
  */
314
386
  endTimestamp?: number;
315
387
  /**
316
- * Filter data by request path.
388
+ * Filter data by chain ID.
317
389
  */
318
- requestPath?: string;
390
+ chainId?: string;
319
391
  /**
320
- * Filter data by request type.
392
+ * Filter data by request path.
321
393
  */
322
- requestType?: 'data' | 'rpc';
394
+ requestPath?: string;
323
395
  /**
324
396
  * Filter data by response status code.
325
397
  */
326
398
  responseCode?: string;
327
399
  /**
328
- * Filter data by chain ID.
400
+ * Filter data by request type.
329
401
  */
330
- chainId?: string;
402
+ requestType?: 'data' | 'rpc';
331
403
  /**
332
404
  * Filter data by API key ID.
333
405
  */
@@ -341,6 +413,50 @@ declare class DataApiUsageMetricsService {
341
413
  */
342
414
  pageSize?: number;
343
415
  }): CancelablePromise<LogsResponseDTO>;
416
+ /**
417
+ * Get usage metrics for the Subnet RPC
418
+ * Gets metrics for Subnet RPC usage over a specified time interval aggregated at the specified time-duration granularity.
419
+ * @returns RpcUsageMetricsResponseDTO Successful response
420
+ * @throws ApiError
421
+ */
422
+ getRpcUsageMetrics({ timeInterval, startTimestamp, endTimestamp, groupBy, chainId, requestPath, responseCode, rpcMethod, rlBypassApiToken, }: {
423
+ /**
424
+ * Query param for setting time interval of data aggregation.
425
+ */
426
+ timeInterval?: string;
427
+ /**
428
+ * The start time of the range as a UNIX timestamp. The requested start time will be rounded down to 0:00 UTC of the day.
429
+ */
430
+ startTimestamp?: number;
431
+ /**
432
+ * The end time of the range as a UNIX timestamp. The requested end time will be rounded down to 0:00 UTC of the day. `endTimestamp` must be no earlier than 0:00 UTC of the day after `startTimestamp`.
433
+ */
434
+ endTimestamp?: number;
435
+ /**
436
+ * Query param for the criterion used for grouping metrics
437
+ */
438
+ groupBy?: UsageMetricsGroupByEnum;
439
+ /**
440
+ * Filter data by chain ID.
441
+ */
442
+ chainId?: string;
443
+ /**
444
+ * Filter data by request path.
445
+ */
446
+ requestPath?: string;
447
+ /**
448
+ * Filter data by response status code.
449
+ */
450
+ responseCode?: string;
451
+ /**
452
+ * Filter data by RPC method.
453
+ */
454
+ rpcMethod?: string;
455
+ /**
456
+ * Filter data by Rl Bypass API Token.
457
+ */
458
+ rlBypassApiToken?: string;
459
+ }): CancelablePromise<RpcUsageMetricsResponseDTO>;
344
460
  }
345
461
 
346
462
  declare class DefaultService {
@@ -625,7 +741,7 @@ declare class EvmBalancesService {
625
741
  */
626
742
  getNativeBalance({ chainId, address, blockNumber, currency, }: {
627
743
  /**
628
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
744
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
629
745
  */
630
746
  chainId: string;
631
747
  /**
@@ -653,7 +769,7 @@ declare class EvmBalancesService {
653
769
  */
654
770
  listErc20Balances({ chainId, address, blockNumber, pageToken, pageSize, filterSpamTokens, contractAddresses, currency, }: {
655
771
  /**
656
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
772
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
657
773
  */
658
774
  chainId: string;
659
775
  /**
@@ -695,7 +811,7 @@ declare class EvmBalancesService {
695
811
  */
696
812
  listErc721Balances({ chainId, address, pageToken, pageSize, contractAddress, }: {
697
813
  /**
698
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
814
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
699
815
  */
700
816
  chainId: string;
701
817
  /**
@@ -727,7 +843,7 @@ declare class EvmBalancesService {
727
843
  */
728
844
  listErc1155Balances({ chainId, address, blockNumber, pageToken, pageSize, contractAddress, }: {
729
845
  /**
730
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
846
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
731
847
  */
732
848
  chainId: string;
733
849
  /**
@@ -761,7 +877,7 @@ declare class EvmBalancesService {
761
877
  */
762
878
  listCollectibleBalances({ chainId, address, pageToken, pageSize, contractAddress, }: {
763
879
  /**
764
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
880
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
765
881
  */
766
882
  chainId: string;
767
883
  /**
@@ -890,7 +1006,7 @@ declare class EvmBlocksService {
890
1006
  */
891
1007
  getLatestBlocks({ chainId, pageToken, pageSize, }: {
892
1008
  /**
893
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
1009
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
894
1010
  */
895
1011
  chainId: string;
896
1012
  /**
@@ -910,7 +1026,7 @@ declare class EvmBlocksService {
910
1026
  */
911
1027
  getBlock({ chainId, blockId, }: {
912
1028
  /**
913
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
1029
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
914
1030
  */
915
1031
  chainId: string;
916
1032
  /**
@@ -1008,9 +1124,11 @@ type ListChainsResponse = {
1008
1124
  chains: Array<ChainInfo>;
1009
1125
  };
1010
1126
 
1011
- declare enum NetworkType {
1127
+ declare enum Network {
1012
1128
  MAINNET = "mainnet",
1013
- TESTNET = "testnet"
1129
+ FUJI = "fuji",
1130
+ TESTNET = "testnet",
1131
+ DEVNET = "devnet"
1014
1132
  }
1015
1133
 
1016
1134
  declare class EvmChainsService {
@@ -1024,9 +1142,9 @@ declare class EvmChainsService {
1024
1142
  */
1025
1143
  supportedChains({ network, feature, }: {
1026
1144
  /**
1027
- * mainnet or testnet.
1145
+ * Either mainnet or testnet/fuji.
1028
1146
  */
1029
- network?: NetworkType;
1147
+ network?: Network;
1030
1148
  /**
1031
1149
  * Filter by feature.
1032
1150
  */
@@ -1040,7 +1158,7 @@ declare class EvmChainsService {
1040
1158
  */
1041
1159
  getChainInfo({ chainId, }: {
1042
1160
  /**
1043
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
1161
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
1044
1162
  */
1045
1163
  chainId: string;
1046
1164
  }): CancelablePromise<GetChainResponse>;
@@ -1335,7 +1453,7 @@ declare class EvmContractsService {
1335
1453
  */
1336
1454
  getContractMetadata({ chainId, address, }: {
1337
1455
  /**
1338
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
1456
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
1339
1457
  */
1340
1458
  chainId: string;
1341
1459
  /**
@@ -1351,7 +1469,7 @@ declare class EvmContractsService {
1351
1469
  */
1352
1470
  updateContractInfo({ chainId, address, requestBody, }: {
1353
1471
  /**
1354
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
1472
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
1355
1473
  */
1356
1474
  chainId: string;
1357
1475
  /**
@@ -1901,7 +2019,7 @@ declare class EvmTransactionsService {
1901
2019
  */
1902
2020
  getDeploymentTransaction({ chainId, address, currency, }: {
1903
2021
  /**
1904
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2022
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
1905
2023
  */
1906
2024
  chainId: string;
1907
2025
  /**
@@ -1921,7 +2039,7 @@ declare class EvmTransactionsService {
1921
2039
  */
1922
2040
  listContractDeployments({ chainId, address, pageToken, pageSize, }: {
1923
2041
  /**
1924
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2042
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
1925
2043
  */
1926
2044
  chainId: string;
1927
2045
  /**
@@ -1945,7 +2063,7 @@ declare class EvmTransactionsService {
1945
2063
  */
1946
2064
  listTransfers({ chainId, address, startBlock, endBlock, pageToken, pageSize, }: {
1947
2065
  /**
1948
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2066
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
1949
2067
  */
1950
2068
  chainId: string;
1951
2069
  /**
@@ -1979,7 +2097,7 @@ declare class EvmTransactionsService {
1979
2097
  */
1980
2098
  listTransactions({ chainId, address, pageToken, pageSize, startBlock, endBlock, sortOrder, }: {
1981
2099
  /**
1982
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2100
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
1983
2101
  */
1984
2102
  chainId: string;
1985
2103
  /**
@@ -2015,7 +2133,7 @@ declare class EvmTransactionsService {
2015
2133
  */
2016
2134
  listNativeTransactions({ chainId, address, startBlock, endBlock, pageToken, pageSize, }: {
2017
2135
  /**
2018
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2136
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2019
2137
  */
2020
2138
  chainId: string;
2021
2139
  /**
@@ -2047,7 +2165,7 @@ declare class EvmTransactionsService {
2047
2165
  */
2048
2166
  listErc20Transactions({ chainId, address, startBlock, endBlock, pageToken, pageSize, }: {
2049
2167
  /**
2050
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2168
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2051
2169
  */
2052
2170
  chainId: string;
2053
2171
  /**
@@ -2079,7 +2197,7 @@ declare class EvmTransactionsService {
2079
2197
  */
2080
2198
  listErc721Transactions({ chainId, address, startBlock, endBlock, pageToken, pageSize, }: {
2081
2199
  /**
2082
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2200
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2083
2201
  */
2084
2202
  chainId: string;
2085
2203
  /**
@@ -2111,7 +2229,7 @@ declare class EvmTransactionsService {
2111
2229
  */
2112
2230
  listErc1155Transactions({ chainId, address, startBlock, endBlock, pageToken, pageSize, }: {
2113
2231
  /**
2114
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2232
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2115
2233
  */
2116
2234
  chainId: string;
2117
2235
  /**
@@ -2145,7 +2263,7 @@ declare class EvmTransactionsService {
2145
2263
  */
2146
2264
  listInternalTransactions({ chainId, address, startBlock, endBlock, pageToken, pageSize, }: {
2147
2265
  /**
2148
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2266
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2149
2267
  */
2150
2268
  chainId: string;
2151
2269
  /**
@@ -2177,7 +2295,7 @@ declare class EvmTransactionsService {
2177
2295
  */
2178
2296
  getTransaction({ chainId, txHash, }: {
2179
2297
  /**
2180
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2298
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2181
2299
  */
2182
2300
  chainId: string;
2183
2301
  /**
@@ -2193,7 +2311,7 @@ declare class EvmTransactionsService {
2193
2311
  */
2194
2312
  getTransactionsForBlock({ chainId, blockId, }: {
2195
2313
  /**
2196
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2314
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2197
2315
  */
2198
2316
  chainId: string;
2199
2317
  /**
@@ -2209,7 +2327,7 @@ declare class EvmTransactionsService {
2209
2327
  */
2210
2328
  listLatestTransactions({ chainId, pageToken, pageSize, status, }: {
2211
2329
  /**
2212
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2330
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2213
2331
  */
2214
2332
  chainId: string;
2215
2333
  /**
@@ -2262,7 +2380,7 @@ declare class NfTsService {
2262
2380
  */
2263
2381
  reindexNft({ chainId, address, tokenId, }: {
2264
2382
  /**
2265
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2383
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2266
2384
  */
2267
2385
  chainId: string;
2268
2386
  /**
@@ -2282,7 +2400,7 @@ declare class NfTsService {
2282
2400
  */
2283
2401
  listTokens({ chainId, address, pageToken, pageSize, }: {
2284
2402
  /**
2285
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2403
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2286
2404
  */
2287
2405
  chainId: string;
2288
2406
  /**
@@ -2306,7 +2424,7 @@ declare class NfTsService {
2306
2424
  */
2307
2425
  getTokenDetails({ chainId, address, tokenId, }: {
2308
2426
  /**
2309
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2427
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2310
2428
  */
2311
2429
  chainId: string;
2312
2430
  /**
@@ -2331,16 +2449,16 @@ declare enum EVMOperationType {
2331
2449
 
2332
2450
  type CreateEvmTransactionExportRequest = {
2333
2451
  type: EVMOperationType;
2334
- firstDate: string;
2335
- lastDate: string;
2452
+ firstDate?: string;
2453
+ lastDate?: string;
2336
2454
  /**
2337
2455
  * @deprecated
2338
2456
  */
2339
- startDate: string;
2457
+ startDate?: string;
2340
2458
  /**
2341
2459
  * @deprecated
2342
2460
  */
2343
- endDate: string;
2461
+ endDate?: string;
2344
2462
  options: EvmNetworkOptions;
2345
2463
  };
2346
2464
 
@@ -2353,21 +2471,21 @@ declare enum PrimaryNetworkOperationType {
2353
2471
  type PrimaryNetworkOptions = {
2354
2472
  addresses?: Array<string>;
2355
2473
  cChainEvmAddresses?: Array<string>;
2356
- includeChains: Array<'11111111111111111111111111111111LpoYY' | '2oYMBNV4eNHyqk2fjjV5nVQLDbtmNJzq5s3qs3Lo6ftnC6FByM' | '2JVSBoinj9C2J33VntvzYtVJNZdN2NKiwwKjcumHUWEb5DbBrm' | '2q9e4r6Mu3U68nU1fYjgbR6JvwrRx36CohpAX5UQxse55x1Q5' | 'yH8D7ThNJkxmtkuv2jgBa4P1Rn3Qpr4pPr7QYNfcdoS6k6HWp' | 'p-chain' | 'x-chain' | 'c-chain'>;
2474
+ includeChains: Array<'11111111111111111111111111111111LpoYY' | '2oYMBNV4eNHyqk2fjjV5nVQLDbtmNJzq5s3qs3Lo6ftnC6FByM' | '2JVSBoinj9C2J33VntvzYtVJNZdN2NKiwwKjcumHUWEb5DbBrm' | '2piQ2AVHCjnduiWXsSY15DtbVuwHE2cwMHYnEXHsLL73BBkdbV' | '2q9e4r6Mu3U68nU1fYjgbR6JvwrRx36CohpAX5UQxse55x1Q5' | 'yH8D7ThNJkxmtkuv2jgBa4P1Rn3Qpr4pPr7QYNfcdoS6k6HWp' | 'vV3cui1DsEPC3nLCGH9rorwo8s6BYxM2Hz4QFE5gEYjwTqAu' | 'p-chain' | 'x-chain' | 'c-chain'>;
2357
2475
  };
2358
2476
 
2359
2477
  type CreatePrimaryNetworkTransactionExportRequest = {
2360
2478
  type: PrimaryNetworkOperationType;
2361
- firstDate: string;
2362
- lastDate: string;
2479
+ firstDate?: string;
2480
+ lastDate?: string;
2363
2481
  /**
2364
2482
  * @deprecated
2365
2483
  */
2366
- startDate: string;
2484
+ startDate?: string;
2367
2485
  /**
2368
2486
  * @deprecated
2369
2487
  */
2370
- endDate: string;
2488
+ endDate?: string;
2371
2489
  options: PrimaryNetworkOptions;
2372
2490
  };
2373
2491
 
@@ -2445,8 +2563,10 @@ declare enum BlockchainIds {
2445
2563
  _11111111111111111111111111111111LPO_YY = "11111111111111111111111111111111LpoYY",
2446
2564
  _2O_YMBNV4E_NHYQK2FJJ_V5N_VQLDBTM_NJZQ5S3QS3LO6FTN_C6FBY_M = "2oYMBNV4eNHyqk2fjjV5nVQLDbtmNJzq5s3qs3Lo6ftnC6FByM",
2447
2565
  _2JVSBOINJ9C2J33VNTVZ_YT_VJNZD_N2NKIWW_KJCUM_HUWEB5DB_BRM = "2JVSBoinj9C2J33VntvzYtVJNZdN2NKiwwKjcumHUWEb5DbBrm",
2566
+ _2PI_Q2AVHCJNDUI_WXS_SY15DTB_VUW_HE2CW_MHYN_EXHS_LL73BBKDB_V = "2piQ2AVHCjnduiWXsSY15DtbVuwHE2cwMHYnEXHsLL73BBkdbV",
2448
2567
  _2Q9E4R6MU3U68N_U1F_YJGB_R6JVWR_RX36COHP_AX5UQXSE55X1Q5 = "2q9e4r6Mu3U68nU1fYjgbR6JvwrRx36CohpAX5UQxse55x1Q5",
2449
- Y_H8D7TH_NJKXMTKUV2JG_BA4P1RN3QPR4P_PR7QYNFCDO_S6K6HWP = "yH8D7ThNJkxmtkuv2jgBa4P1Rn3Qpr4pPr7QYNfcdoS6k6HWp"
2568
+ Y_H8D7TH_NJKXMTKUV2JG_BA4P1RN3QPR4P_PR7QYNFCDO_S6K6HWP = "yH8D7ThNJkxmtkuv2jgBa4P1Rn3Qpr4pPr7QYNfcdoS6k6HWp",
2569
+ V_V3CUI1DS_EPC3N_LCGH9RORWO8S6BYX_M2HZ4QFE5G_EYJW_TQ_AU = "vV3cui1DsEPC3nLCGH9rorwo8s6BYxM2Hz4QFE5gEYjwTqAu"
2450
2570
  }
2451
2571
 
2452
2572
  type ChainAddressChainIdMap = {
@@ -2758,11 +2878,6 @@ type ListValidatorDetailsResponse = {
2758
2878
  validators: Array<(CompletedValidatorDetails | ActiveValidatorDetails | PendingValidatorDetails | RemovedValidatorDetails)>;
2759
2879
  };
2760
2880
 
2761
- declare enum Network {
2762
- MAINNET = "mainnet",
2763
- FUJI = "fuji"
2764
- }
2765
-
2766
2881
  declare enum SortByOption {
2767
2882
  BLOCK_INDEX = "blockIndex",
2768
2883
  DELEGATION_CAPACITY = "delegationCapacity",
@@ -2822,6 +2937,7 @@ type XChainAssetDetails = {
2822
2937
  declare enum XChainId {
2823
2938
  _2O_YMBNV4E_NHYQK2FJJ_V5N_VQLDBTM_NJZQ5S3QS3LO6FTN_C6FBY_M = "2oYMBNV4eNHyqk2fjjV5nVQLDbtmNJzq5s3qs3Lo6ftnC6FByM",
2824
2939
  _2JVSBOINJ9C2J33VNTVZ_YT_VJNZD_N2NKIWW_KJCUM_HUWEB5DB_BRM = "2JVSBoinj9C2J33VntvzYtVJNZdN2NKiwwKjcumHUWEb5DbBrm",
2940
+ _2PI_Q2AVHCJNDUI_WXS_SY15DTB_VUW_HE2CW_MHYN_EXHS_LL73BBKDB_V = "2piQ2AVHCjnduiWXsSY15DtbVuwHE2cwMHYnEXHsLL73BBkdbV",
2825
2941
  X_CHAIN = "x-chain"
2826
2942
  }
2827
2943
 
@@ -2840,7 +2956,7 @@ declare class PrimaryNetworkService {
2840
2956
  */
2841
2957
  blockchainId: XChainId;
2842
2958
  /**
2843
- * Either mainnet or a testnet.
2959
+ * Either mainnet or testnet/fuji.
2844
2960
  */
2845
2961
  network: Network;
2846
2962
  /**
@@ -2860,7 +2976,7 @@ declare class PrimaryNetworkService {
2860
2976
  */
2861
2977
  addresses: string;
2862
2978
  /**
2863
- * Either mainnet or a testnet.
2979
+ * Either mainnet or testnet/fuji.
2864
2980
  */
2865
2981
  network: Network;
2866
2982
  }): CancelablePromise<ChainAddressChainIdMapListResponse>;
@@ -2872,7 +2988,7 @@ declare class PrimaryNetworkService {
2872
2988
  */
2873
2989
  getNetworkDetails({ network, }: {
2874
2990
  /**
2875
- * Either mainnet or a testnet.
2991
+ * Either mainnet or testnet/fuji.
2876
2992
  */
2877
2993
  network: Network;
2878
2994
  }): CancelablePromise<GetNetworkDetailsResponse>;
@@ -2884,7 +3000,7 @@ declare class PrimaryNetworkService {
2884
3000
  */
2885
3001
  listBlockchains({ network, pageToken, pageSize, sortOrder, }: {
2886
3002
  /**
2887
- * Either mainnet or a testnet.
3003
+ * Either mainnet or testnet/fuji.
2888
3004
  */
2889
3005
  network: Network;
2890
3006
  /**
@@ -2908,7 +3024,7 @@ declare class PrimaryNetworkService {
2908
3024
  */
2909
3025
  listSubnets({ network, pageToken, pageSize, sortOrder, }: {
2910
3026
  /**
2911
- * Either mainnet or a testnet.
3027
+ * Either mainnet or testnet/fuji.
2912
3028
  */
2913
3029
  network: Network;
2914
3030
  /**
@@ -2932,7 +3048,7 @@ declare class PrimaryNetworkService {
2932
3048
  */
2933
3049
  getSubnetById({ network, subnetId, }: {
2934
3050
  /**
2935
- * Either mainnet or a testnet.
3051
+ * Either mainnet or testnet/fuji.
2936
3052
  */
2937
3053
  network: Network;
2938
3054
  /**
@@ -2948,7 +3064,7 @@ declare class PrimaryNetworkService {
2948
3064
  */
2949
3065
  listValidators({ network, pageToken, pageSize, nodeIds, sortBy, sortOrder, validationStatus, minDelegationCapacity, maxDelegationCapacity, minTimeRemaining, maxTimeRemaining, minFeePercentage, maxFeePercentage, minUptimePerformance, maxUptimePerformance, subnetId, }: {
2950
3066
  /**
2951
- * Either mainnet or a testnet.
3067
+ * Either mainnet or testnet/fuji.
2952
3068
  */
2953
3069
  network: Network;
2954
3070
  /**
@@ -3022,7 +3138,7 @@ declare class PrimaryNetworkService {
3022
3138
  */
3023
3139
  getSingleValidatorDetails({ network, nodeId, pageToken, pageSize, validationStatus, sortOrder, }: {
3024
3140
  /**
3025
- * Either mainnet or a testnet.
3141
+ * Either mainnet or testnet/fuji.
3026
3142
  */
3027
3143
  network: Network;
3028
3144
  /**
@@ -3054,7 +3170,7 @@ declare class PrimaryNetworkService {
3054
3170
  */
3055
3171
  listDelegators({ network, pageToken, pageSize, rewardAddresses, sortOrder, delegationStatus, nodeIds, }: {
3056
3172
  /**
3057
- * Either mainnet or a testnet.
3173
+ * Either mainnet or testnet/fuji.
3058
3174
  */
3059
3175
  network: Network;
3060
3176
  /**
@@ -3088,8 +3204,10 @@ declare enum BlockchainId {
3088
3204
  _11111111111111111111111111111111LPO_YY = "11111111111111111111111111111111LpoYY",
3089
3205
  _2O_YMBNV4E_NHYQK2FJJ_V5N_VQLDBTM_NJZQ5S3QS3LO6FTN_C6FBY_M = "2oYMBNV4eNHyqk2fjjV5nVQLDbtmNJzq5s3qs3Lo6ftnC6FByM",
3090
3206
  _2JVSBOINJ9C2J33VNTVZ_YT_VJNZD_N2NKIWW_KJCUM_HUWEB5DB_BRM = "2JVSBoinj9C2J33VntvzYtVJNZdN2NKiwwKjcumHUWEb5DbBrm",
3207
+ _2PI_Q2AVHCJNDUI_WXS_SY15DTB_VUW_HE2CW_MHYN_EXHS_LL73BBKDB_V = "2piQ2AVHCjnduiWXsSY15DtbVuwHE2cwMHYnEXHsLL73BBkdbV",
3091
3208
  _2Q9E4R6MU3U68N_U1F_YJGB_R6JVWR_RX36COHP_AX5UQXSE55X1Q5 = "2q9e4r6Mu3U68nU1fYjgbR6JvwrRx36CohpAX5UQxse55x1Q5",
3092
3209
  Y_H8D7TH_NJKXMTKUV2JG_BA4P1RN3QPR4P_PR7QYNFCDO_S6K6HWP = "yH8D7ThNJkxmtkuv2jgBa4P1Rn3Qpr4pPr7QYNfcdoS6k6HWp",
3210
+ V_V3CUI1DS_EPC3N_LCGH9RORWO8S6BYX_M2HZ4QFE5G_EYJW_TQ_AU = "vV3cui1DsEPC3nLCGH9rorwo8s6BYxM2Hz4QFE5gEYjwTqAu",
3093
3211
  P_CHAIN = "p-chain",
3094
3212
  X_CHAIN = "x-chain",
3095
3213
  C_CHAIN = "c-chain"
@@ -3128,7 +3246,8 @@ type CChainAtomicBalances = {
3128
3246
 
3129
3247
  declare enum PrimaryNetwork {
3130
3248
  MAINNET = "mainnet",
3131
- FUJI = "fuji"
3249
+ FUJI = "fuji",
3250
+ DEVNET = "devnet"
3132
3251
  }
3133
3252
 
3134
3253
  declare enum PrimaryNetworkChainName {
@@ -3300,7 +3419,7 @@ declare class PrimaryNetworkBalancesService {
3300
3419
  */
3301
3420
  blockchainId: BlockchainId;
3302
3421
  /**
3303
- * Either mainnet or a testnet.
3422
+ * Either mainnet or testnet/fuji.
3304
3423
  */
3305
3424
  network: Network;
3306
3425
  /**
@@ -3372,7 +3491,7 @@ declare class PrimaryNetworkBlocksService {
3372
3491
  */
3373
3492
  blockchainId: BlockchainId;
3374
3493
  /**
3375
- * Either mainnet or a testnet.
3494
+ * Either mainnet or testnet/fuji.
3376
3495
  */
3377
3496
  network: Network;
3378
3497
  /**
@@ -3392,7 +3511,7 @@ declare class PrimaryNetworkBlocksService {
3392
3511
  */
3393
3512
  blockchainId: BlockchainId;
3394
3513
  /**
3395
- * Either mainnet or a testnet.
3514
+ * Either mainnet or testnet/fuji.
3396
3515
  */
3397
3516
  network: Network;
3398
3517
  /**
@@ -3420,7 +3539,7 @@ declare class PrimaryNetworkBlocksService {
3420
3539
  */
3421
3540
  blockchainId: BlockchainId;
3422
3541
  /**
3423
- * Either mainnet or a testnet.
3542
+ * Either mainnet or testnet/fuji.
3424
3543
  */
3425
3544
  network: Network;
3426
3545
  /**
@@ -3554,7 +3673,7 @@ declare class PrimaryNetworkRewardsService {
3554
3673
  */
3555
3674
  listPendingPrimaryNetworkRewards({ network, addresses, pageToken, pageSize, nodeIds, sortOrder, }: {
3556
3675
  /**
3557
- * Either mainnet or a testnet.
3676
+ * Either mainnet or testnet/fuji.
3558
3677
  */
3559
3678
  network: Network;
3560
3679
  /**
@@ -3586,7 +3705,7 @@ declare class PrimaryNetworkRewardsService {
3586
3705
  */
3587
3706
  listHistoricalPrimaryNetworkRewards({ network, addresses, pageToken, pageSize, nodeIds, sortOrder, currency, }: {
3588
3707
  /**
3589
- * Either mainnet or a testnet.
3708
+ * Either mainnet or testnet/fuji.
3590
3709
  */
3591
3710
  network: Network;
3592
3711
  /**
@@ -4177,7 +4296,7 @@ declare class PrimaryNetworkTransactionsService {
4177
4296
  */
4178
4297
  blockchainId: BlockchainId;
4179
4298
  /**
4180
- * Either mainnet or a testnet.
4299
+ * Either mainnet or testnet/fuji.
4181
4300
  */
4182
4301
  network: Network;
4183
4302
  /**
@@ -4195,19 +4314,19 @@ declare class PrimaryNetworkTransactionsService {
4195
4314
  * @returns any Successful response
4196
4315
  * @throws ApiError
4197
4316
  */
4198
- listLatestPrimaryNetworkTransactions({ addresses, blockchainId, network, txTypes, startTimestamp, endTimestamp, pageToken, pageSize, sortOrder, }: {
4199
- /**
4200
- * 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". Also accepts EVM formatted addresses starting with "0x" for C-Chain-related atomic transaction lookups.
4201
- */
4202
- addresses: string;
4317
+ listLatestPrimaryNetworkTransactions({ blockchainId, network, addresses, txTypes, startTimestamp, endTimestamp, pageToken, pageSize, sortOrder, }: {
4203
4318
  /**
4204
4319
  * A primary network blockchain id or alias.
4205
4320
  */
4206
4321
  blockchainId: BlockchainId;
4207
4322
  /**
4208
- * Either mainnet or a testnet.
4323
+ * Either mainnet or testnet/fuji.
4209
4324
  */
4210
4325
  network: Network;
4326
+ /**
4327
+ * 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". Also accepts EVM formatted addresses starting with "0x" for C-Chain-related atomic transaction lookups.
4328
+ */
4329
+ addresses?: string;
4211
4330
  /**
4212
4331
  * Query param for filtering items based on transaction types.
4213
4332
  */
@@ -4245,7 +4364,7 @@ declare class PrimaryNetworkTransactionsService {
4245
4364
  */
4246
4365
  blockchainId: PChainId;
4247
4366
  /**
4248
- * Either mainnet or a testnet.
4367
+ * Either mainnet or testnet/fuji.
4249
4368
  */
4250
4369
  network: Network;
4251
4370
  /**
@@ -4289,7 +4408,7 @@ declare class PrimaryNetworkTransactionsService {
4289
4408
  */
4290
4409
  blockchainId: XChainId;
4291
4410
  /**
4292
- * Either mainnet or a testnet.
4411
+ * Either mainnet or testnet/fuji.
4293
4412
  */
4294
4413
  network: Network;
4295
4414
  /**
@@ -4352,7 +4471,7 @@ declare class PrimaryNetworkUtxOsService {
4352
4471
  */
4353
4472
  blockchainId: BlockchainId;
4354
4473
  /**
4355
- * Either mainnet or a testnet.
4474
+ * Either mainnet or testnet/fuji.
4356
4475
  */
4357
4476
  network: Network;
4358
4477
  /**
@@ -4417,7 +4536,7 @@ declare class PrimaryNetworkVerticesService {
4417
4536
  */
4418
4537
  blockchainId: XChainId;
4419
4538
  /**
4420
- * Either mainnet or a testnet.
4539
+ * Either mainnet or testnet/fuji.
4421
4540
  */
4422
4541
  network: Network;
4423
4542
  /**
@@ -4445,7 +4564,7 @@ declare class PrimaryNetworkVerticesService {
4445
4564
  */
4446
4565
  blockchainId: XChainId;
4447
4566
  /**
4448
- * Either mainnet or a testnet.
4567
+ * Either mainnet or testnet/fuji.
4449
4568
  */
4450
4569
  network: Network;
4451
4570
  }): CancelablePromise<XChainVertex>;
@@ -4465,7 +4584,7 @@ declare class PrimaryNetworkVerticesService {
4465
4584
  */
4466
4585
  blockchainId: XChainId;
4467
4586
  /**
4468
- * Either mainnet or a testnet.
4587
+ * Either mainnet or testnet/fuji.
4469
4588
  */
4470
4589
  network: Network;
4471
4590
  /**
@@ -4519,13 +4638,44 @@ declare class RpcService {
4519
4638
  */
4520
4639
  rpc({ chainId, requestBody, }: {
4521
4640
  /**
4522
- * A supported evm chain id, chain alias or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
4641
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
4523
4642
  */
4524
4643
  chainId: string;
4525
4644
  requestBody: (RpcRequestBodyDto | Array<RpcRequestBodyDto>);
4526
4645
  }): CancelablePromise<(RpcSuccessResponseDto | RpcErrorResponseDto)>;
4527
4646
  }
4528
4647
 
4648
+ type SignatureAggregationResponse = {
4649
+ signedMessage: string;
4650
+ };
4651
+
4652
+ type SignatureAggregatorRequest = {
4653
+ /**
4654
+ * Must be defined if justification is not defined
4655
+ */
4656
+ message?: string;
4657
+ /**
4658
+ * Must be defined if message is not defined
4659
+ */
4660
+ justification?: string;
4661
+ signingSubnetId?: string;
4662
+ quorumPercentage?: number;
4663
+ };
4664
+
4665
+ declare class SignatureAggregatorService {
4666
+ readonly httpRequest: BaseHttpRequest;
4667
+ constructor(httpRequest: BaseHttpRequest);
4668
+ /**
4669
+ * Aggregate Signatures
4670
+ * Aggregates Signatures for a Warp message from Subnet validators.
4671
+ * @returns SignatureAggregationResponse Successful response
4672
+ * @throws ApiError
4673
+ */
4674
+ aggregateSignatures({ requestBody, }: {
4675
+ requestBody: SignatureAggregatorRequest;
4676
+ }): CancelablePromise<SignatureAggregationResponse>;
4677
+ }
4678
+
4529
4679
  type TeleporterDestinationTransaction = {
4530
4680
  txHash: string;
4531
4681
  timestamp: number;
@@ -4711,9 +4861,9 @@ declare class TeleporterService {
4711
4861
  */
4712
4862
  from?: string;
4713
4863
  /**
4714
- * mainnet or testnet.
4864
+ * Either mainnet or testnet/fuji.
4715
4865
  */
4716
- network?: NetworkType;
4866
+ network?: Network;
4717
4867
  }): CancelablePromise<ListTeleporterMessagesResponse>;
4718
4868
  /**
4719
4869
  * List teleporter messages by address
@@ -4735,9 +4885,9 @@ declare class TeleporterService {
4735
4885
  */
4736
4886
  pageSize?: number;
4737
4887
  /**
4738
- * mainnet or testnet.
4888
+ * Either mainnet or testnet/fuji.
4739
4889
  */
4740
- network?: NetworkType;
4890
+ network?: Network;
4741
4891
  }): CancelablePromise<ListTeleporterMessagesResponse>;
4742
4892
  }
4743
4893
 
@@ -4991,6 +5141,7 @@ declare class Glacier {
4991
5141
  readonly primaryNetworkUtxOs: PrimaryNetworkUtxOsService;
4992
5142
  readonly primaryNetworkVertices: PrimaryNetworkVerticesService;
4993
5143
  readonly rpc: RpcService;
5144
+ readonly signatureAggregator: SignatureAggregatorService;
4994
5145
  readonly teleporter: TeleporterService;
4995
5146
  readonly webhooks: WebhooksService;
4996
5147
  readonly request: BaseHttpRequest;
@@ -5145,4 +5296,4 @@ type Unauthorized = {
5145
5296
  error: string;
5146
5297
  };
5147
5298
 
5148
- export { ActiveDelegatorDetails, ActiveValidatorDetails, AddressActivityMetadata, AddressesChangeRequest, AggregatedAssetAmount, ApiError, ApiFeature, AssetAmount, AssetWithPriceInfo, BadGateway, BadRequest, BaseHttpRequest, Blockchain, BlockchainId, BlockchainIds, BlockchainInfo, BlsCredentials, CChainAtomicBalances, CChainExportTransaction, CChainImportTransaction, CChainSharedAssetBalance, CancelError, CancelablePromise, ChainAddressChainIdMap, ChainAddressChainIdMapListResponse, ChainInfo, ChainStatus, CompletedDelegatorDetails, CompletedValidatorDetails, ContractDeploymentDetails, ContractSubmissionBody, ContractSubmissionErc1155, ContractSubmissionErc20, ContractSubmissionErc721, ContractSubmissionUnknown, CreateEvmTransactionExportRequest, CreatePrimaryNetworkTransactionExportRequest, CreateWebhookRequest, CurrencyCode, DataApiUsageMetricsService, DataListChainsResponse, DefaultService, DelegationStatusType, DelegatorsDetails, DeliveredSourceNotIndexedTeleporterMessage, DeliveredTeleporterMessage, EVMInput, EVMOperationType, 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, Forbidden, FullNativeTransactionDetails, GetChainResponse, GetEvmBlockResponse, GetNativeBalanceResponse, GetNetworkDetailsResponse, GetPrimaryNetworkBlockResponse, GetTransactionResponse, Glacier, HealthCheckService, HistoricalReward, ImageAsset, InternalServerError, 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, ListTeleporterMessagesResponse, ListTransactionDetailsResponse, ListTransfersResponse, ListUtxosResponse, ListValidatorDetailsResponse, ListWebhookAddressesResponse, ListWebhooksResponse, ListXChainBalancesResponse, ListXChainTransactionsResponse, ListXChainVerticesResponse, LogsFormat, LogsFormatMetadata, LogsResponseDTO, Method, Metric, Money, NativeTokenBalance, NativeTransaction, Network, NetworkToken, NetworkTokenDetails, NetworkType, NextPageToken, NfTsService, NftTokenMetadataStatus, NotFound, OpenAPI, OpenAPIConfig, OperationStatus, OperationStatusCode, OperationStatusResponse, OperationType, OperationsService, PChainBalance, PChainId, PChainSharedAsset, PChainTransaction, PChainTransactionType, PChainUtxo, PendingDelegatorDetails, PendingReward, PendingTeleporterMessage, PendingValidatorDetails, PricingProviders, PrimaryNetwork, PrimaryNetworkAssetCap, PrimaryNetworkAssetType, PrimaryNetworkBalancesService, PrimaryNetworkBlock, PrimaryNetworkBlocksService, PrimaryNetworkChainInfo, PrimaryNetworkChainName, PrimaryNetworkOperationType, PrimaryNetworkOptions, PrimaryNetworkRewardsService, PrimaryNetworkService, PrimaryNetworkTransactionsService, PrimaryNetworkTxType, PrimaryNetworkUtxOsService, PrimaryNetworkVerticesService, ProposerDetails, RemovedValidatorDetails, RequestType, ResourceLink, ResourceLinkType, RewardType, Rewards, RichAddress, RpcErrorDto, RpcErrorResponseDto, RpcRequestBodyDto, RpcService, RpcSuccessResponseDto, ServiceUnavailable, SharedSecretsResponse, SortByOption, SortOrder, StakingDistribution, Subnet, SubnetOwnershipInfo, TeleporterDestinationTransaction, TeleporterMessageInfo, TeleporterReceipt, TeleporterRewardDetails, TeleporterService, TeleporterSourceTransaction, TimeIntervalGranularityExtended, TooManyRequests, TransactionDetails, TransactionDirectionType, TransactionExportMetadata, TransactionMethodType, TransactionStatus, TransactionVertexDetail, Unauthorized, UnknownContract, UpdateContractResponse, UpdateWebhookRequest, UsageMetricsGroupByEnum, UsageMetricsResponseDTO, UsageMetricsValueDTO, UtilityAddresses, Utxo, UtxoCredential, UtxoType, ValidationStatusType, ValidatorHealthDetails, ValidatorsDetails, VmName, WebhookResponse, WebhookStatus, WebhookStatusType, WebhooksService, XChainAssetDetails, XChainBalances, XChainId, XChainLinearTransaction, XChainNonLinearTransaction, XChainSharedAssetBalance, XChainTransactionType, XChainVertex };
5299
+ export { ActiveDelegatorDetails, ActiveValidatorDetails, AddressActivityMetadata, AddressesChangeRequest, AggregatedAssetAmount, ApiError, ApiFeature, AssetAmount, AssetWithPriceInfo, BadGateway, BadRequest, BaseHttpRequest, Blockchain, BlockchainId, BlockchainIds, BlockchainInfo, BlsCredentials, CChainAtomicBalances, CChainExportTransaction, CChainImportTransaction, CChainSharedAssetBalance, CancelError, CancelablePromise, ChainAddressChainIdMap, ChainAddressChainIdMapListResponse, ChainInfo, ChainStatus, CompletedDelegatorDetails, CompletedValidatorDetails, ContractDeploymentDetails, ContractSubmissionBody, ContractSubmissionErc1155, ContractSubmissionErc20, ContractSubmissionErc721, ContractSubmissionUnknown, CreateEvmTransactionExportRequest, CreatePrimaryNetworkTransactionExportRequest, CreateWebhookRequest, CurrencyCode, DataApiUsageMetricsService, DataListChainsResponse, DefaultService, DelegationStatusType, DelegatorsDetails, DeliveredSourceNotIndexedTeleporterMessage, DeliveredTeleporterMessage, EVMInput, EVMOperationType, 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, Forbidden, FullNativeTransactionDetails, GetChainResponse, GetEvmBlockResponse, GetNativeBalanceResponse, GetNetworkDetailsResponse, GetPrimaryNetworkBlockResponse, GetTransactionResponse, Glacier, HealthCheckService, HistoricalReward, ImageAsset, InternalServerError, 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, ListTeleporterMessagesResponse, ListTransactionDetailsResponse, ListTransfersResponse, ListUtxosResponse, ListValidatorDetailsResponse, ListWebhookAddressesResponse, ListWebhooksResponse, ListXChainBalancesResponse, ListXChainTransactionsResponse, ListXChainVerticesResponse, LogsFormat, LogsFormatMetadata, LogsResponseDTO, Method, Metric, Money, NativeTokenBalance, NativeTransaction, Network, NetworkToken, NetworkTokenDetails, NextPageToken, NfTsService, NftTokenMetadataStatus, NotFound, OpenAPI, OpenAPIConfig, OperationStatus, OperationStatusCode, OperationStatusResponse, OperationType, OperationsService, PChainBalance, PChainId, PChainSharedAsset, PChainTransaction, PChainTransactionType, PChainUtxo, PendingDelegatorDetails, PendingReward, PendingTeleporterMessage, PendingValidatorDetails, PricingProviders, PrimaryNetwork, PrimaryNetworkAssetCap, PrimaryNetworkAssetType, PrimaryNetworkBalancesService, PrimaryNetworkBlock, PrimaryNetworkBlocksService, PrimaryNetworkChainInfo, PrimaryNetworkChainName, PrimaryNetworkOperationType, PrimaryNetworkOptions, PrimaryNetworkRewardsService, PrimaryNetworkService, PrimaryNetworkTransactionsService, PrimaryNetworkTxType, PrimaryNetworkUtxOsService, PrimaryNetworkVerticesService, ProposerDetails, RemovedValidatorDetails, RequestType, ResourceLink, ResourceLinkType, RewardType, Rewards, RichAddress, RpcErrorDto, RpcErrorResponseDto, RpcMetrics, RpcRequestBodyDto, RpcService, RpcSuccessResponseDto, RpcUsageMetricsResponseDTO, RpcUsageMetricsValueAggregated, ServiceUnavailable, SharedSecretsResponse, SignatureAggregationResponse, SignatureAggregatorRequest, SignatureAggregatorService, SortByOption, SortOrder, StakingDistribution, Subnet, SubnetOwnershipInfo, TeleporterDestinationTransaction, TeleporterMessageInfo, TeleporterReceipt, TeleporterRewardDetails, TeleporterService, TeleporterSourceTransaction, TimeIntervalGranularityExtended, TooManyRequests, TransactionDetails, TransactionDirectionType, TransactionExportMetadata, TransactionMethodType, TransactionStatus, TransactionVertexDetail, Unauthorized, UnknownContract, UpdateContractResponse, UpdateWebhookRequest, UsageMetricsGroupByEnum, UsageMetricsResponseDTO, UsageMetricsValueDTO, UtilityAddresses, Utxo, UtxoCredential, UtxoType, ValidationStatusType, ValidatorHealthDetails, ValidatorsDetails, VmName, WebhookResponse, WebhookStatus, WebhookStatusType, WebhooksService, XChainAssetDetails, XChainBalances, XChainId, XChainLinearTransaction, XChainNonLinearTransaction, XChainSharedAssetBalance, XChainTransactionType, XChainVertex };