@avalabs/glacier-sdk 3.1.0-canary.a3e15f5.0 → 3.1.0-canary.a7cd635.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +459 -214
- package/dist/index.js +1 -1
- package/esm/generated/models/CreateWebhookRequest.d.ts +1 -1
- package/esm/generated/models/Erc20TokenBalance.d.ts +11 -0
- package/esm/generated/models/Erc20TokenBalance.js +1 -1
- package/esm/generated/models/EvmBlock.d.ts +4 -0
- package/esm/generated/models/FullNativeTransactionDetails.d.ts +4 -0
- package/esm/generated/models/GetEvmBlockResponse.d.ts +4 -0
- package/esm/generated/models/GetPrimaryNetworkBlockResponse.d.ts +2 -2
- package/esm/generated/models/L1ValidatorDetailsFull.d.ts +33 -0
- package/esm/generated/models/L1ValidatorDetailsTransaction.d.ts +23 -0
- package/esm/generated/models/ListErc1155BalancesResponse.d.ts +5 -0
- package/esm/generated/models/ListErc20BalancesResponse.d.ts +5 -0
- package/esm/generated/models/ListErc721BalancesResponse.d.ts +5 -0
- package/esm/generated/models/{ListSubnetOnlyValidatorsResponse.d.ts → ListL1ValidatorsResponse.d.ts} +4 -4
- package/esm/generated/models/NativeTransaction.d.ts +4 -0
- package/esm/generated/models/PChainTransaction.d.ts +5 -5
- package/esm/generated/models/PChainTransactionType.d.ts +5 -5
- package/esm/generated/models/PChainTransactionType.js +1 -1
- package/esm/generated/models/PrimaryNetworkBlock.d.ts +2 -2
- package/esm/generated/models/PrimaryNetworkRpcMetricsGroupByEnum.d.ts +9 -0
- package/esm/generated/models/PrimaryNetworkRpcMetricsGroupByEnum.js +1 -0
- package/esm/generated/models/PrimaryNetworkTxType.d.ts +5 -5
- package/esm/generated/models/PrimaryNetworkTxType.js +1 -1
- package/esm/generated/models/RpcUsageMetricsGroupByEnum.d.ts +7 -0
- package/esm/generated/models/RpcUsageMetricsGroupByEnum.js +1 -0
- package/esm/generated/models/RpcUsageMetricsValueAggregated.d.ts +4 -0
- package/esm/generated/models/SignatureAggregatorRequest.d.ts +1 -7
- package/esm/generated/models/Subnet.d.ts +4 -0
- package/esm/generated/models/SubnetRpcTimeIntervalGranularity.d.ts +8 -0
- package/esm/generated/models/SubnetRpcTimeIntervalGranularity.js +1 -0
- package/esm/generated/models/{RpcUsageMetricsResponseDTO.d.ts → SubnetRpcUsageMetricsResponseDTO.d.ts} +6 -6
- package/esm/generated/models/UpdateWebhookRequest.d.ts +3 -0
- package/esm/generated/services/DataApiUsageMetricsService.d.ts +72 -22
- package/esm/generated/services/DataApiUsageMetricsService.js +1 -1
- package/esm/generated/services/EvmBlocksService.d.ts +21 -0
- package/esm/generated/services/EvmBlocksService.js +1 -1
- package/esm/generated/services/EvmChainsService.d.ts +67 -2
- package/esm/generated/services/EvmChainsService.js +1 -1
- package/esm/generated/services/EvmTransactionsService.d.ts +34 -1
- package/esm/generated/services/EvmTransactionsService.js +1 -1
- package/esm/generated/services/PrimaryNetworkBlocksService.d.ts +18 -2
- package/esm/generated/services/PrimaryNetworkBlocksService.js +1 -1
- package/esm/generated/services/PrimaryNetworkService.d.ts +9 -9
- package/esm/generated/services/PrimaryNetworkService.js +1 -1
- package/esm/generated/services/PrimaryNetworkTransactionsService.d.ts +3 -3
- package/esm/generated/services/PrimaryNetworkTransactionsService.js +1 -1
- package/esm/generated/services/SignatureAggregatorService.d.ts +6 -1
- package/esm/generated/services/SignatureAggregatorService.js +1 -1
- package/esm/index.d.ts +7 -4
- package/esm/index.js +1 -1
- package/package.json +2 -2
- package/esm/generated/models/SoVDetailsTransaction.d.ts +0 -23
- package/esm/generated/models/SovDetailsFull.d.ts +0 -33
package/dist/index.d.ts
CHANGED
|
@@ -148,6 +148,34 @@ type LogsResponseDTO = {
|
|
|
148
148
|
logs: Array<LogsFormat>;
|
|
149
149
|
};
|
|
150
150
|
|
|
151
|
+
declare enum Network {
|
|
152
|
+
MAINNET = "mainnet",
|
|
153
|
+
FUJI = "fuji",
|
|
154
|
+
TESTNET = "testnet",
|
|
155
|
+
DEVNET = "devnet"
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
declare enum PrimaryNetworkRpcMetricsGroupByEnum {
|
|
159
|
+
REQUEST_PATH = "requestPath",
|
|
160
|
+
RESPONSE_CODE = "responseCode",
|
|
161
|
+
COUNTRY = "country",
|
|
162
|
+
CONTINENT = "continent",
|
|
163
|
+
USER_AGENT = "userAgent"
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
declare enum RpcUsageMetricsGroupByEnum {
|
|
167
|
+
RPC_METHOD = "rpcMethod",
|
|
168
|
+
RESPONSE_CODE = "responseCode",
|
|
169
|
+
RL_BYPASS_TOKEN = "rlBypassToken"
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
declare enum SubnetRpcTimeIntervalGranularity {
|
|
173
|
+
HOURLY = "hourly",
|
|
174
|
+
DAILY = "daily",
|
|
175
|
+
WEEKLY = "weekly",
|
|
176
|
+
MONTHLY = "monthly"
|
|
177
|
+
}
|
|
178
|
+
|
|
151
179
|
type RpcUsageMetricsValueAggregated = {
|
|
152
180
|
/**
|
|
153
181
|
* The total number of requests
|
|
@@ -173,6 +201,10 @@ type RpcUsageMetricsValueAggregated = {
|
|
|
173
201
|
* The number of invalid requests
|
|
174
202
|
*/
|
|
175
203
|
invalidRequests: number;
|
|
204
|
+
/**
|
|
205
|
+
* The number of API credits wasted on invalid requests
|
|
206
|
+
*/
|
|
207
|
+
apiCreditsWasted: number;
|
|
176
208
|
/**
|
|
177
209
|
* Column name used for data aggregation
|
|
178
210
|
*/
|
|
@@ -205,19 +237,19 @@ type RpcMetrics = {
|
|
|
205
237
|
values: Array<RpcUsageMetricsValueAggregated>;
|
|
206
238
|
};
|
|
207
239
|
|
|
208
|
-
type
|
|
240
|
+
type SubnetRpcUsageMetricsResponseDTO = {
|
|
209
241
|
/**
|
|
210
242
|
* Duration in which the metrics value is aggregated
|
|
211
243
|
*/
|
|
212
244
|
aggregateDuration: string;
|
|
213
|
-
/**
|
|
214
|
-
* ChainId for which the metrics are aggregated
|
|
215
|
-
*/
|
|
216
|
-
chainId: string;
|
|
217
245
|
/**
|
|
218
246
|
* Metrics values
|
|
219
247
|
*/
|
|
220
248
|
metrics: Array<RpcMetrics>;
|
|
249
|
+
/**
|
|
250
|
+
* ChainId for which the metrics are aggregated
|
|
251
|
+
*/
|
|
252
|
+
chainId: string;
|
|
221
253
|
};
|
|
222
254
|
|
|
223
255
|
declare enum TimeIntervalGranularityExtended {
|
|
@@ -323,7 +355,7 @@ declare class DataApiUsageMetricsService {
|
|
|
323
355
|
* @returns UsageMetricsResponseDTO Successful response
|
|
324
356
|
* @throws ApiError
|
|
325
357
|
*/
|
|
326
|
-
getApiUsageMetrics({ orgId, startTimestamp, endTimestamp, timeInterval, groupBy, chainId,
|
|
358
|
+
getApiUsageMetrics({ orgId, startTimestamp, endTimestamp, timeInterval, groupBy, chainId, responseCode, requestType, apiKeyId, requestPath, }: {
|
|
327
359
|
/**
|
|
328
360
|
* Organization ID to fetch usage metrics for
|
|
329
361
|
*/
|
|
@@ -348,10 +380,6 @@ declare class DataApiUsageMetricsService {
|
|
|
348
380
|
* Filter data by chain ID.
|
|
349
381
|
*/
|
|
350
382
|
chainId?: string;
|
|
351
|
-
/**
|
|
352
|
-
* Filter data by request path.
|
|
353
|
-
*/
|
|
354
|
-
requestPath?: string;
|
|
355
383
|
/**
|
|
356
384
|
* Filter data by response status code.
|
|
357
385
|
*/
|
|
@@ -364,6 +392,10 @@ declare class DataApiUsageMetricsService {
|
|
|
364
392
|
* Filter data by API key ID.
|
|
365
393
|
*/
|
|
366
394
|
apiKeyId?: string;
|
|
395
|
+
/**
|
|
396
|
+
* Filter data by request path.
|
|
397
|
+
*/
|
|
398
|
+
requestPath?: string;
|
|
367
399
|
}): CancelablePromise<UsageMetricsResponseDTO>;
|
|
368
400
|
/**
|
|
369
401
|
* Get logs for requests made by client
|
|
@@ -371,7 +403,7 @@ declare class DataApiUsageMetricsService {
|
|
|
371
403
|
* @returns LogsResponseDTO Successful response
|
|
372
404
|
* @throws ApiError
|
|
373
405
|
*/
|
|
374
|
-
getApiLogs({ orgId, startTimestamp, endTimestamp, chainId,
|
|
406
|
+
getApiLogs({ orgId, startTimestamp, endTimestamp, chainId, responseCode, requestType, apiKeyId, requestPath, pageToken, pageSize, }: {
|
|
375
407
|
/**
|
|
376
408
|
* Organization ID to fetch usage metrics for
|
|
377
409
|
*/
|
|
@@ -388,10 +420,6 @@ declare class DataApiUsageMetricsService {
|
|
|
388
420
|
* Filter data by chain ID.
|
|
389
421
|
*/
|
|
390
422
|
chainId?: string;
|
|
391
|
-
/**
|
|
392
|
-
* Filter data by request path.
|
|
393
|
-
*/
|
|
394
|
-
requestPath?: string;
|
|
395
423
|
/**
|
|
396
424
|
* Filter data by response status code.
|
|
397
425
|
*/
|
|
@@ -404,6 +432,10 @@ declare class DataApiUsageMetricsService {
|
|
|
404
432
|
* Filter data by API key ID.
|
|
405
433
|
*/
|
|
406
434
|
apiKeyId?: string;
|
|
435
|
+
/**
|
|
436
|
+
* Filter data by request path.
|
|
437
|
+
*/
|
|
438
|
+
requestPath?: string;
|
|
407
439
|
/**
|
|
408
440
|
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
409
441
|
*/
|
|
@@ -415,15 +447,16 @@ declare class DataApiUsageMetricsService {
|
|
|
415
447
|
}): CancelablePromise<LogsResponseDTO>;
|
|
416
448
|
/**
|
|
417
449
|
* 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
|
|
450
|
+
* Gets metrics for public Subnet RPC usage over a specified time interval aggregated at the specified time-duration granularity.
|
|
451
|
+
* @returns SubnetRpcUsageMetricsResponseDTO Successful response
|
|
420
452
|
* @throws ApiError
|
|
421
453
|
*/
|
|
422
|
-
getRpcUsageMetrics({ timeInterval, startTimestamp, endTimestamp, groupBy, chainId,
|
|
454
|
+
getRpcUsageMetrics({ timeInterval, startTimestamp, endTimestamp, groupBy, chainId, responseCode, rpcMethod, rlBypassApiToken, }: {
|
|
423
455
|
/**
|
|
424
|
-
*
|
|
456
|
+
* Time interval granularity for data aggregation for subnet
|
|
457
|
+
* rpc metrics
|
|
425
458
|
*/
|
|
426
|
-
timeInterval?:
|
|
459
|
+
timeInterval?: SubnetRpcTimeIntervalGranularity;
|
|
427
460
|
/**
|
|
428
461
|
* 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
462
|
*/
|
|
@@ -435,15 +468,11 @@ declare class DataApiUsageMetricsService {
|
|
|
435
468
|
/**
|
|
436
469
|
* Query param for the criterion used for grouping metrics
|
|
437
470
|
*/
|
|
438
|
-
groupBy?:
|
|
471
|
+
groupBy?: RpcUsageMetricsGroupByEnum;
|
|
439
472
|
/**
|
|
440
473
|
* Filter data by chain ID.
|
|
441
474
|
*/
|
|
442
475
|
chainId?: string;
|
|
443
|
-
/**
|
|
444
|
-
* Filter data by request path.
|
|
445
|
-
*/
|
|
446
|
-
requestPath?: string;
|
|
447
476
|
/**
|
|
448
477
|
* Filter data by response status code.
|
|
449
478
|
*/
|
|
@@ -456,7 +485,56 @@ declare class DataApiUsageMetricsService {
|
|
|
456
485
|
* Filter data by Rl Bypass API Token.
|
|
457
486
|
*/
|
|
458
487
|
rlBypassApiToken?: string;
|
|
459
|
-
}): CancelablePromise<
|
|
488
|
+
}): CancelablePromise<SubnetRpcUsageMetricsResponseDTO>;
|
|
489
|
+
/**
|
|
490
|
+
* Get usage metrics for the Primary Network RPC
|
|
491
|
+
* Gets metrics for public Primary Network RPC usage over a specified time interval aggregated at the specified time-duration granularity.
|
|
492
|
+
* @returns SubnetRpcUsageMetricsResponseDTO Successful response
|
|
493
|
+
* @throws ApiError
|
|
494
|
+
*/
|
|
495
|
+
getPrimaryNetworkRpcUsageMetrics({ network, timeInterval, startTimestamp, endTimestamp, groupBy, responseCode, requestPath, country, continent, userAgent, }: {
|
|
496
|
+
/**
|
|
497
|
+
* Either mainnet or testnet/fuji.
|
|
498
|
+
*/
|
|
499
|
+
network: Network;
|
|
500
|
+
/**
|
|
501
|
+
* Time interval granularity for data aggregation for subnet
|
|
502
|
+
* rpc metrics
|
|
503
|
+
*/
|
|
504
|
+
timeInterval?: SubnetRpcTimeIntervalGranularity;
|
|
505
|
+
/**
|
|
506
|
+
* 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.
|
|
507
|
+
*/
|
|
508
|
+
startTimestamp?: number;
|
|
509
|
+
/**
|
|
510
|
+
* 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.
|
|
511
|
+
*/
|
|
512
|
+
endTimestamp?: number;
|
|
513
|
+
/**
|
|
514
|
+
* Query param for the criterion used for grouping metrics
|
|
515
|
+
*/
|
|
516
|
+
groupBy?: PrimaryNetworkRpcMetricsGroupByEnum;
|
|
517
|
+
/**
|
|
518
|
+
* Filter data by response status code.
|
|
519
|
+
*/
|
|
520
|
+
responseCode?: string;
|
|
521
|
+
/**
|
|
522
|
+
* Filter data by request path.
|
|
523
|
+
*/
|
|
524
|
+
requestPath?: string;
|
|
525
|
+
/**
|
|
526
|
+
* Filter data by Country.
|
|
527
|
+
*/
|
|
528
|
+
country?: string;
|
|
529
|
+
/**
|
|
530
|
+
* Filter data by Continent.
|
|
531
|
+
*/
|
|
532
|
+
continent?: string;
|
|
533
|
+
/**
|
|
534
|
+
* Filter data by User Agent.
|
|
535
|
+
*/
|
|
536
|
+
userAgent?: string;
|
|
537
|
+
}): CancelablePromise<SubnetRpcUsageMetricsResponseDTO>;
|
|
460
538
|
}
|
|
461
539
|
|
|
462
540
|
declare class DefaultService {
|
|
@@ -655,6 +733,10 @@ type ListErc1155BalancesResponse = {
|
|
|
655
733
|
* 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.
|
|
656
734
|
*/
|
|
657
735
|
nextPageToken?: string;
|
|
736
|
+
/**
|
|
737
|
+
* The native token balance for the address.
|
|
738
|
+
*/
|
|
739
|
+
nativeTokenBalance: NativeTokenBalance;
|
|
658
740
|
/**
|
|
659
741
|
* The list of ERC-1155 token balances for the address.
|
|
660
742
|
*/
|
|
@@ -699,11 +781,22 @@ type Erc20TokenBalance = {
|
|
|
699
781
|
* The monetary value of the balance, if a price is available for the token.
|
|
700
782
|
*/
|
|
701
783
|
balanceValue?: Money;
|
|
784
|
+
/**
|
|
785
|
+
* Indicates the reputation of the token based on a security analysis. 'Benign' suggests the token is likely safe, while 'Malicious' indicates potential security risks. This field is nullable and is only populated for tokens on the C-Chain. Possible values are 'Benign', 'Malicious', or null if the reputation is unknown.
|
|
786
|
+
*/
|
|
787
|
+
tokenReputation: Erc20TokenBalance.tokenReputation | null;
|
|
702
788
|
};
|
|
703
789
|
declare namespace Erc20TokenBalance {
|
|
704
790
|
enum ercType {
|
|
705
791
|
ERC_20 = "ERC-20"
|
|
706
792
|
}
|
|
793
|
+
/**
|
|
794
|
+
* Indicates the reputation of the token based on a security analysis. 'Benign' suggests the token is likely safe, while 'Malicious' indicates potential security risks. This field is nullable and is only populated for tokens on the C-Chain. Possible values are 'Benign', 'Malicious', or null if the reputation is unknown.
|
|
795
|
+
*/
|
|
796
|
+
enum tokenReputation {
|
|
797
|
+
MALICIOUS = "Malicious",
|
|
798
|
+
BENIGN = "Benign"
|
|
799
|
+
}
|
|
707
800
|
}
|
|
708
801
|
|
|
709
802
|
type ListErc20BalancesResponse = {
|
|
@@ -711,6 +804,10 @@ type ListErc20BalancesResponse = {
|
|
|
711
804
|
* 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.
|
|
712
805
|
*/
|
|
713
806
|
nextPageToken?: string;
|
|
807
|
+
/**
|
|
808
|
+
* The native token balance for the address.
|
|
809
|
+
*/
|
|
810
|
+
nativeTokenBalance: NativeTokenBalance;
|
|
714
811
|
/**
|
|
715
812
|
* The list of ERC-20 token balances for the address.
|
|
716
813
|
*/
|
|
@@ -722,6 +819,10 @@ type ListErc721BalancesResponse = {
|
|
|
722
819
|
* 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.
|
|
723
820
|
*/
|
|
724
821
|
nextPageToken?: string;
|
|
822
|
+
/**
|
|
823
|
+
* The native token balance for the address.
|
|
824
|
+
*/
|
|
825
|
+
nativeTokenBalance: NativeTokenBalance;
|
|
725
826
|
/**
|
|
726
827
|
* The list of ERC-721 token balances for the address.
|
|
727
828
|
*/
|
|
@@ -900,6 +1001,10 @@ declare class EvmBalancesService {
|
|
|
900
1001
|
}
|
|
901
1002
|
|
|
902
1003
|
type GetEvmBlockResponse = {
|
|
1004
|
+
/**
|
|
1005
|
+
* The EVM chain ID on which the block was created.
|
|
1006
|
+
*/
|
|
1007
|
+
chainId: string;
|
|
903
1008
|
/**
|
|
904
1009
|
* The block number on the chain.
|
|
905
1010
|
*/
|
|
@@ -944,6 +1049,10 @@ type GetEvmBlockResponse = {
|
|
|
944
1049
|
};
|
|
945
1050
|
|
|
946
1051
|
type EvmBlock = {
|
|
1052
|
+
/**
|
|
1053
|
+
* The EVM chain ID on which the block was created.
|
|
1054
|
+
*/
|
|
1055
|
+
chainId: string;
|
|
947
1056
|
/**
|
|
948
1057
|
* The block number on the chain.
|
|
949
1058
|
*/
|
|
@@ -998,6 +1107,26 @@ type ListEvmBlocksResponse = {
|
|
|
998
1107
|
declare class EvmBlocksService {
|
|
999
1108
|
readonly httpRequest: BaseHttpRequest;
|
|
1000
1109
|
constructor(httpRequest: BaseHttpRequest);
|
|
1110
|
+
/**
|
|
1111
|
+
* List latest blocks across all supported EVM chains
|
|
1112
|
+
* Lists the most recent blocks from all supported EVM-compatible chains. The results can be filtered by network.
|
|
1113
|
+
* @returns ListEvmBlocksResponse Successful response
|
|
1114
|
+
* @throws ApiError
|
|
1115
|
+
*/
|
|
1116
|
+
listLatestBlocksAllChains({ pageToken, pageSize, network, }: {
|
|
1117
|
+
/**
|
|
1118
|
+
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
1119
|
+
*/
|
|
1120
|
+
pageToken?: string;
|
|
1121
|
+
/**
|
|
1122
|
+
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
1123
|
+
*/
|
|
1124
|
+
pageSize?: number;
|
|
1125
|
+
/**
|
|
1126
|
+
* Either mainnet or testnet/fuji.
|
|
1127
|
+
*/
|
|
1128
|
+
network?: Network;
|
|
1129
|
+
}): CancelablePromise<ListEvmBlocksResponse>;
|
|
1001
1130
|
/**
|
|
1002
1131
|
* List latest blocks
|
|
1003
1132
|
* Lists the latest indexed blocks on the EVM-compatible chain sorted in descending order by block timestamp.
|
|
@@ -1129,16 +1258,133 @@ type ListChainsResponse = {
|
|
|
1129
1258
|
chains: Array<ChainInfo>;
|
|
1130
1259
|
};
|
|
1131
1260
|
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1261
|
+
/**
|
|
1262
|
+
* The contract call type. NATIVE_TRANSFER indicates a transfer of the native token without any smart-contract interaction. CONTRACT_CALL indicates a smart-contract interaction. CONTRACT_CREATION indicates a smart-contract creation.
|
|
1263
|
+
*/
|
|
1264
|
+
declare enum TransactionMethodType {
|
|
1265
|
+
NATIVE_TRANSFER = "NATIVE_TRANSFER",
|
|
1266
|
+
CONTRACT_CALL = "CONTRACT_CALL",
|
|
1267
|
+
CONTRACT_CREATION = "CONTRACT_CREATION"
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1270
|
+
type Method = {
|
|
1271
|
+
callType: TransactionMethodType;
|
|
1272
|
+
/**
|
|
1273
|
+
* The contract method hash identifier. The method hash is only set if the `callType` is `CONTRACT_CALL`.
|
|
1274
|
+
*/
|
|
1275
|
+
methodHash: string;
|
|
1276
|
+
/**
|
|
1277
|
+
* The contract method name including parameter types. If the `callType` is `NATIVE_TRANSFER` this is set to 'Native Transfer'. If the `callType` is `CONTRACT_CREATION` this is set to 'Contract Created'.
|
|
1278
|
+
*/
|
|
1279
|
+
methodName?: string;
|
|
1280
|
+
};
|
|
1281
|
+
|
|
1282
|
+
type RichAddress = {
|
|
1283
|
+
/**
|
|
1284
|
+
* The contract name.
|
|
1285
|
+
*/
|
|
1286
|
+
name?: string;
|
|
1287
|
+
/**
|
|
1288
|
+
* The contract symbol.
|
|
1289
|
+
*/
|
|
1290
|
+
symbol?: string;
|
|
1291
|
+
/**
|
|
1292
|
+
* The number of decimals the token uses. For example `6`, means to divide the token amount by `1000000` to get its user representation.
|
|
1293
|
+
*/
|
|
1294
|
+
decimals?: number;
|
|
1295
|
+
/**
|
|
1296
|
+
* The logo uri for the address.
|
|
1297
|
+
*/
|
|
1298
|
+
logoUri?: string;
|
|
1299
|
+
/**
|
|
1300
|
+
* A wallet or contract address in mixed-case checksum encoding.
|
|
1301
|
+
*/
|
|
1302
|
+
address: string;
|
|
1303
|
+
};
|
|
1304
|
+
|
|
1305
|
+
type NativeTransaction = {
|
|
1306
|
+
/**
|
|
1307
|
+
* The block number on the chain.
|
|
1308
|
+
*/
|
|
1309
|
+
blockNumber: string;
|
|
1310
|
+
/**
|
|
1311
|
+
* The block finality timestamp.
|
|
1312
|
+
*/
|
|
1313
|
+
blockTimestamp: number;
|
|
1314
|
+
/**
|
|
1315
|
+
* The block hash identifier.
|
|
1316
|
+
*/
|
|
1317
|
+
blockHash: string;
|
|
1318
|
+
/**
|
|
1319
|
+
* The EVM chain ID on which the transaction occured.
|
|
1320
|
+
*/
|
|
1321
|
+
chainId: string;
|
|
1322
|
+
/**
|
|
1323
|
+
* The index at which the transaction occured in the block (0-indexed).
|
|
1324
|
+
*/
|
|
1325
|
+
blockIndex: number;
|
|
1326
|
+
/**
|
|
1327
|
+
* The transaction hash identifier.
|
|
1328
|
+
*/
|
|
1329
|
+
txHash: string;
|
|
1330
|
+
/**
|
|
1331
|
+
* The transaction status, which is either 0 (failed) or 1 (successful).
|
|
1332
|
+
*/
|
|
1333
|
+
txStatus: string;
|
|
1334
|
+
/**
|
|
1335
|
+
* The transaction type.
|
|
1336
|
+
*/
|
|
1337
|
+
txType: number;
|
|
1338
|
+
/**
|
|
1339
|
+
* The gas limit set for the transaction.
|
|
1340
|
+
*/
|
|
1341
|
+
gasLimit: string;
|
|
1342
|
+
/**
|
|
1343
|
+
* The amount of gas used.
|
|
1344
|
+
*/
|
|
1345
|
+
gasUsed: string;
|
|
1346
|
+
/**
|
|
1347
|
+
* The gas price denominated by the number of decimals of the native token.
|
|
1348
|
+
*/
|
|
1349
|
+
gasPrice: string;
|
|
1350
|
+
/**
|
|
1351
|
+
* The nonce used by the sender of the transaction.
|
|
1352
|
+
*/
|
|
1353
|
+
nonce: string;
|
|
1354
|
+
from: RichAddress;
|
|
1355
|
+
to: RichAddress;
|
|
1356
|
+
method?: Method;
|
|
1357
|
+
value: string;
|
|
1358
|
+
};
|
|
1359
|
+
|
|
1360
|
+
type ListNativeTransactionsResponse = {
|
|
1361
|
+
/**
|
|
1362
|
+
* 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.
|
|
1363
|
+
*/
|
|
1364
|
+
nextPageToken?: string;
|
|
1365
|
+
transactions: Array<NativeTransaction>;
|
|
1366
|
+
};
|
|
1367
|
+
|
|
1368
|
+
declare enum TransactionStatus {
|
|
1369
|
+
FAILED = "failed",
|
|
1370
|
+
SUCCESS = "success"
|
|
1137
1371
|
}
|
|
1138
1372
|
|
|
1139
1373
|
declare class EvmChainsService {
|
|
1140
1374
|
readonly httpRequest: BaseHttpRequest;
|
|
1141
1375
|
constructor(httpRequest: BaseHttpRequest);
|
|
1376
|
+
/**
|
|
1377
|
+
* List all chains associated with a given address
|
|
1378
|
+
* Lists the chains where the specified address has participated in transactions or ERC token transfers, either as a sender or receiver. The data is refreshed every 15 minutes.
|
|
1379
|
+
* @returns ListAddressChainsResponse Successful response
|
|
1380
|
+
* @throws ApiError
|
|
1381
|
+
*/
|
|
1382
|
+
listAddressChains({ address, }: {
|
|
1383
|
+
/**
|
|
1384
|
+
* A wallet address.
|
|
1385
|
+
*/
|
|
1386
|
+
address: string;
|
|
1387
|
+
}): CancelablePromise<ListAddressChainsResponse>;
|
|
1142
1388
|
/**
|
|
1143
1389
|
* List chains
|
|
1144
1390
|
* Lists the supported EVM-compatible chains. Filterable by network.
|
|
@@ -1168,8 +1414,10 @@ declare class EvmChainsService {
|
|
|
1168
1414
|
chainId: string;
|
|
1169
1415
|
}): CancelablePromise<GetChainResponse>;
|
|
1170
1416
|
/**
|
|
1171
|
-
*
|
|
1172
|
-
* Gets
|
|
1417
|
+
* @deprecated
|
|
1418
|
+
* **[Deprecated]** Gets a list of all chains where the address was either a sender or receiver in a transaction or ERC transfer. The list is currently updated every 15 minutes.
|
|
1419
|
+
*
|
|
1420
|
+
* ⚠️ **This operation will be removed in a future release. Please use /v1/address/:address/chains endpoint instead** .
|
|
1173
1421
|
* @returns ListAddressChainsResponse Successful response
|
|
1174
1422
|
* @throws ApiError
|
|
1175
1423
|
*/
|
|
@@ -1179,6 +1427,54 @@ declare class EvmChainsService {
|
|
|
1179
1427
|
*/
|
|
1180
1428
|
address: string;
|
|
1181
1429
|
}): CancelablePromise<ListAddressChainsResponse>;
|
|
1430
|
+
/**
|
|
1431
|
+
* @deprecated
|
|
1432
|
+
* **[Deprecated]** Lists the latest transactions for all supported EVM chains. Filterable by status.
|
|
1433
|
+
*
|
|
1434
|
+
* ⚠️ **This operation will be removed in a future release. Please use /v1/transactions endpoint instead** .
|
|
1435
|
+
* @returns ListNativeTransactionsResponse Successful response
|
|
1436
|
+
* @throws ApiError
|
|
1437
|
+
*/
|
|
1438
|
+
listAllLatestTransactions({ pageToken, pageSize, network, status, }: {
|
|
1439
|
+
/**
|
|
1440
|
+
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
1441
|
+
*/
|
|
1442
|
+
pageToken?: string;
|
|
1443
|
+
/**
|
|
1444
|
+
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
1445
|
+
*/
|
|
1446
|
+
pageSize?: number;
|
|
1447
|
+
/**
|
|
1448
|
+
* Either mainnet or testnet/fuji.
|
|
1449
|
+
*/
|
|
1450
|
+
network?: Network;
|
|
1451
|
+
/**
|
|
1452
|
+
* A status filter for listed transactions.
|
|
1453
|
+
*/
|
|
1454
|
+
status?: TransactionStatus;
|
|
1455
|
+
}): CancelablePromise<ListNativeTransactionsResponse>;
|
|
1456
|
+
/**
|
|
1457
|
+
* @deprecated
|
|
1458
|
+
* **[Deprecated]** Lists the latest blocks for all supported EVM chains. Filterable by network.
|
|
1459
|
+
*
|
|
1460
|
+
* ⚠️ **This operation will be removed in a future release. Please use /v1/blocks endpoint instead** .
|
|
1461
|
+
* @returns ListEvmBlocksResponse Successful response
|
|
1462
|
+
* @throws ApiError
|
|
1463
|
+
*/
|
|
1464
|
+
listAllLatestBlocks({ pageToken, pageSize, network, }: {
|
|
1465
|
+
/**
|
|
1466
|
+
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
1467
|
+
*/
|
|
1468
|
+
pageToken?: string;
|
|
1469
|
+
/**
|
|
1470
|
+
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
1471
|
+
*/
|
|
1472
|
+
pageSize?: number;
|
|
1473
|
+
/**
|
|
1474
|
+
* Either mainnet or testnet/fuji.
|
|
1475
|
+
*/
|
|
1476
|
+
network?: Network;
|
|
1477
|
+
}): CancelablePromise<ListEvmBlocksResponse>;
|
|
1182
1478
|
}
|
|
1183
1479
|
|
|
1184
1480
|
type ImageAsset = {
|
|
@@ -1513,29 +1809,6 @@ declare namespace Erc1155Token {
|
|
|
1513
1809
|
}
|
|
1514
1810
|
}
|
|
1515
1811
|
|
|
1516
|
-
type RichAddress = {
|
|
1517
|
-
/**
|
|
1518
|
-
* The contract name.
|
|
1519
|
-
*/
|
|
1520
|
-
name?: string;
|
|
1521
|
-
/**
|
|
1522
|
-
* The contract symbol.
|
|
1523
|
-
*/
|
|
1524
|
-
symbol?: string;
|
|
1525
|
-
/**
|
|
1526
|
-
* The number of decimals the token uses. For example `6`, means to divide the token amount by `1000000` to get its user representation.
|
|
1527
|
-
*/
|
|
1528
|
-
decimals?: number;
|
|
1529
|
-
/**
|
|
1530
|
-
* The logo uri for the address.
|
|
1531
|
-
*/
|
|
1532
|
-
logoUri?: string;
|
|
1533
|
-
/**
|
|
1534
|
-
* A wallet or contract address in mixed-case checksum encoding.
|
|
1535
|
-
*/
|
|
1536
|
-
address: string;
|
|
1537
|
-
};
|
|
1538
|
-
|
|
1539
1812
|
type Erc1155TransferDetails = {
|
|
1540
1813
|
from: RichAddress;
|
|
1541
1814
|
to: RichAddress;
|
|
@@ -1620,27 +1893,6 @@ type Erc721TransferDetails = {
|
|
|
1620
1893
|
erc721Token: Erc721Token;
|
|
1621
1894
|
};
|
|
1622
1895
|
|
|
1623
|
-
/**
|
|
1624
|
-
* The contract call type. NATIVE_TRANSFER indicates a transfer of the native token without any smart-contract interaction. CONTRACT_CALL indicates a smart-contract interaction. CONTRACT_CREATION indicates a smart-contract creation.
|
|
1625
|
-
*/
|
|
1626
|
-
declare enum TransactionMethodType {
|
|
1627
|
-
NATIVE_TRANSFER = "NATIVE_TRANSFER",
|
|
1628
|
-
CONTRACT_CALL = "CONTRACT_CALL",
|
|
1629
|
-
CONTRACT_CREATION = "CONTRACT_CREATION"
|
|
1630
|
-
}
|
|
1631
|
-
|
|
1632
|
-
type Method = {
|
|
1633
|
-
callType: TransactionMethodType;
|
|
1634
|
-
/**
|
|
1635
|
-
* The contract method hash identifier. The method hash is only set if the `callType` is `CONTRACT_CALL`.
|
|
1636
|
-
*/
|
|
1637
|
-
methodHash: string;
|
|
1638
|
-
/**
|
|
1639
|
-
* The contract method name including parameter types. If the `callType` is `NATIVE_TRANSFER` this is set to 'Native Transfer'. If the `callType` is `CONTRACT_CREATION` this is set to 'Contract Created'.
|
|
1640
|
-
*/
|
|
1641
|
-
methodName?: string;
|
|
1642
|
-
};
|
|
1643
|
-
|
|
1644
1896
|
type FullNativeTransactionDetails = {
|
|
1645
1897
|
/**
|
|
1646
1898
|
* The block number on the chain.
|
|
@@ -1654,6 +1906,10 @@ type FullNativeTransactionDetails = {
|
|
|
1654
1906
|
* The block hash identifier.
|
|
1655
1907
|
*/
|
|
1656
1908
|
blockHash: string;
|
|
1909
|
+
/**
|
|
1910
|
+
* The EVM chain ID on which the transaction occured.
|
|
1911
|
+
*/
|
|
1912
|
+
chainId: string;
|
|
1657
1913
|
/**
|
|
1658
1914
|
* The index at which the transaction occured in the block (0-indexed).
|
|
1659
1915
|
*/
|
|
@@ -1917,65 +2173,6 @@ type ListInternalTransactionsResponse = {
|
|
|
1917
2173
|
transactions: Array<InternalTransaction>;
|
|
1918
2174
|
};
|
|
1919
2175
|
|
|
1920
|
-
type NativeTransaction = {
|
|
1921
|
-
/**
|
|
1922
|
-
* The block number on the chain.
|
|
1923
|
-
*/
|
|
1924
|
-
blockNumber: string;
|
|
1925
|
-
/**
|
|
1926
|
-
* The block finality timestamp.
|
|
1927
|
-
*/
|
|
1928
|
-
blockTimestamp: number;
|
|
1929
|
-
/**
|
|
1930
|
-
* The block hash identifier.
|
|
1931
|
-
*/
|
|
1932
|
-
blockHash: string;
|
|
1933
|
-
/**
|
|
1934
|
-
* The index at which the transaction occured in the block (0-indexed).
|
|
1935
|
-
*/
|
|
1936
|
-
blockIndex: number;
|
|
1937
|
-
/**
|
|
1938
|
-
* The transaction hash identifier.
|
|
1939
|
-
*/
|
|
1940
|
-
txHash: string;
|
|
1941
|
-
/**
|
|
1942
|
-
* The transaction status, which is either 0 (failed) or 1 (successful).
|
|
1943
|
-
*/
|
|
1944
|
-
txStatus: string;
|
|
1945
|
-
/**
|
|
1946
|
-
* The transaction type.
|
|
1947
|
-
*/
|
|
1948
|
-
txType: number;
|
|
1949
|
-
/**
|
|
1950
|
-
* The gas limit set for the transaction.
|
|
1951
|
-
*/
|
|
1952
|
-
gasLimit: string;
|
|
1953
|
-
/**
|
|
1954
|
-
* The amount of gas used.
|
|
1955
|
-
*/
|
|
1956
|
-
gasUsed: string;
|
|
1957
|
-
/**
|
|
1958
|
-
* The gas price denominated by the number of decimals of the native token.
|
|
1959
|
-
*/
|
|
1960
|
-
gasPrice: string;
|
|
1961
|
-
/**
|
|
1962
|
-
* The nonce used by the sender of the transaction.
|
|
1963
|
-
*/
|
|
1964
|
-
nonce: string;
|
|
1965
|
-
from: RichAddress;
|
|
1966
|
-
to: RichAddress;
|
|
1967
|
-
method?: Method;
|
|
1968
|
-
value: string;
|
|
1969
|
-
};
|
|
1970
|
-
|
|
1971
|
-
type ListNativeTransactionsResponse = {
|
|
1972
|
-
/**
|
|
1973
|
-
* 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.
|
|
1974
|
-
*/
|
|
1975
|
-
nextPageToken?: string;
|
|
1976
|
-
transactions: Array<NativeTransaction>;
|
|
1977
|
-
};
|
|
1978
|
-
|
|
1979
2176
|
type TransactionDetails = {
|
|
1980
2177
|
/**
|
|
1981
2178
|
* The native (top-level) transaction details.
|
|
@@ -2020,14 +2217,33 @@ declare enum SortOrder {
|
|
|
2020
2217
|
DESC = "desc"
|
|
2021
2218
|
}
|
|
2022
2219
|
|
|
2023
|
-
declare enum TransactionStatus {
|
|
2024
|
-
FAILED = "failed",
|
|
2025
|
-
SUCCESS = "success"
|
|
2026
|
-
}
|
|
2027
|
-
|
|
2028
2220
|
declare class EvmTransactionsService {
|
|
2029
2221
|
readonly httpRequest: BaseHttpRequest;
|
|
2030
2222
|
constructor(httpRequest: BaseHttpRequest);
|
|
2223
|
+
/**
|
|
2224
|
+
* List the latest transactions across all supported EVM chains
|
|
2225
|
+
* Lists the most recent transactions from all supported EVM-compatible chains. The results can be filtered based on transaction status.
|
|
2226
|
+
* @returns ListNativeTransactionsResponse Successful response
|
|
2227
|
+
* @throws ApiError
|
|
2228
|
+
*/
|
|
2229
|
+
listLatestTransactionsAllChains({ pageToken, pageSize, network, status, }: {
|
|
2230
|
+
/**
|
|
2231
|
+
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
2232
|
+
*/
|
|
2233
|
+
pageToken?: string;
|
|
2234
|
+
/**
|
|
2235
|
+
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
2236
|
+
*/
|
|
2237
|
+
pageSize?: number;
|
|
2238
|
+
/**
|
|
2239
|
+
* Either mainnet or testnet/fuji.
|
|
2240
|
+
*/
|
|
2241
|
+
network?: Network;
|
|
2242
|
+
/**
|
|
2243
|
+
* A status filter for listed transactions.
|
|
2244
|
+
*/
|
|
2245
|
+
status?: TransactionStatus;
|
|
2246
|
+
}): CancelablePromise<ListNativeTransactionsResponse>;
|
|
2031
2247
|
/**
|
|
2032
2248
|
* Get deployment transaction
|
|
2033
2249
|
* If the address is a smart contract, returns the transaction in which it was deployed.
|
|
@@ -2326,7 +2542,7 @@ declare class EvmTransactionsService {
|
|
|
2326
2542
|
* @returns ListNativeTransactionsResponse Successful response
|
|
2327
2543
|
* @throws ApiError
|
|
2328
2544
|
*/
|
|
2329
|
-
getTransactionsForBlock({ chainId, blockId, }: {
|
|
2545
|
+
getTransactionsForBlock({ chainId, blockId, pageToken, pageSize, }: {
|
|
2330
2546
|
/**
|
|
2331
2547
|
* A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
2332
2548
|
*/
|
|
@@ -2335,6 +2551,14 @@ declare class EvmTransactionsService {
|
|
|
2335
2551
|
* A block identifier which is either a block number or the block hash.
|
|
2336
2552
|
*/
|
|
2337
2553
|
blockId: string;
|
|
2554
|
+
/**
|
|
2555
|
+
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
2556
|
+
*/
|
|
2557
|
+
pageToken?: string;
|
|
2558
|
+
/**
|
|
2559
|
+
* The maximum number of items to return. The minimum page size is 0. The maximum pageSize is 100.
|
|
2560
|
+
*/
|
|
2561
|
+
pageSize?: number;
|
|
2338
2562
|
}): CancelablePromise<ListNativeTransactionsResponse>;
|
|
2339
2563
|
/**
|
|
2340
2564
|
* List latest transactions
|
|
@@ -2712,37 +2936,37 @@ type BalanceOwner = {
|
|
|
2712
2936
|
threshold: number;
|
|
2713
2937
|
};
|
|
2714
2938
|
|
|
2715
|
-
type
|
|
2939
|
+
type L1ValidatorDetailsFull = {
|
|
2716
2940
|
/**
|
|
2717
|
-
* Unique
|
|
2941
|
+
* Unique L1 validation ID used network-wide to identify L1 validation until its weight is reduced to 0 i.e. removed.
|
|
2718
2942
|
*/
|
|
2719
2943
|
validationId: string;
|
|
2720
2944
|
nodeId: string;
|
|
2721
2945
|
subnetId: string;
|
|
2722
2946
|
/**
|
|
2723
|
-
* Weight of the
|
|
2947
|
+
* Weight of the L1 validator used while sampling validators within the L1. A zero-weight L1 validator means it has been removed from the L1, and the validationID is no longer valid
|
|
2724
2948
|
*/
|
|
2725
2949
|
weight: number;
|
|
2726
2950
|
/**
|
|
2727
|
-
* Remaining
|
|
2951
|
+
* Remaining L1 validator balance in nAVAX until inactive. It can rejoin L1 sampling by increasing balance with IncreaseL1ValidatorBalanceTx
|
|
2728
2952
|
*/
|
|
2729
2953
|
remainingBalance: number;
|
|
2730
2954
|
/**
|
|
2731
|
-
* The timestamp of the transaction which created this
|
|
2955
|
+
* The timestamp of the transaction which created this L1 validator
|
|
2732
2956
|
*/
|
|
2733
2957
|
creationTimestamp: number;
|
|
2734
2958
|
blsCredentials: Record<string, any>;
|
|
2735
2959
|
/**
|
|
2736
|
-
* The
|
|
2960
|
+
* The L1 validator owner's balance, returned after it's disabled or removed
|
|
2737
2961
|
*/
|
|
2738
2962
|
remainingBalanceOwner: BalanceOwner;
|
|
2739
2963
|
/**
|
|
2740
|
-
* Owner ddresses details which can disable or remove the
|
|
2964
|
+
* Owner ddresses details which can disable or remove the L1 validator
|
|
2741
2965
|
*/
|
|
2742
2966
|
deactivationOwner: BalanceOwner;
|
|
2743
2967
|
};
|
|
2744
2968
|
|
|
2745
|
-
type
|
|
2969
|
+
type ListL1ValidatorsResponse = {
|
|
2746
2970
|
/**
|
|
2747
2971
|
* 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.
|
|
2748
2972
|
*/
|
|
@@ -2750,7 +2974,7 @@ type ListSubnetOnlyValidatorsResponse = {
|
|
|
2750
2974
|
/**
|
|
2751
2975
|
* The list of L1 validations for the given Subnet ID, NodeId or validationId
|
|
2752
2976
|
*/
|
|
2753
|
-
validators: Array<
|
|
2977
|
+
validators: Array<L1ValidatorDetailsFull>;
|
|
2754
2978
|
};
|
|
2755
2979
|
|
|
2756
2980
|
type BlockchainInfo = {
|
|
@@ -2804,6 +3028,10 @@ type Subnet = {
|
|
|
2804
3028
|
* Whether the subnet is an L1 or not.
|
|
2805
3029
|
*/
|
|
2806
3030
|
isL1: boolean;
|
|
3031
|
+
/**
|
|
3032
|
+
* Transaction hash of ConvertSubnetToL1Tx which converted this Subnet to L1.
|
|
3033
|
+
*/
|
|
3034
|
+
l1ConversionTransactionHash?: string;
|
|
2807
3035
|
/**
|
|
2808
3036
|
* L1 validator manager details.
|
|
2809
3037
|
*/
|
|
@@ -3275,12 +3503,12 @@ declare class PrimaryNetworkService {
|
|
|
3275
3503
|
nodeIds?: string;
|
|
3276
3504
|
}): CancelablePromise<ListDelegatorDetailsResponse>;
|
|
3277
3505
|
/**
|
|
3278
|
-
* List
|
|
3279
|
-
* Lists details for
|
|
3280
|
-
* @returns
|
|
3506
|
+
* List L1 validators
|
|
3507
|
+
* Lists details for L1 validators. By default, returns details for all active L1 validators. Filterable by validator node ids, subnet id, and validation id.
|
|
3508
|
+
* @returns ListL1ValidatorsResponse Successful response
|
|
3281
3509
|
* @throws ApiError
|
|
3282
3510
|
*/
|
|
3283
|
-
|
|
3511
|
+
listL1Validators({ network, pageToken, pageSize, l1ValidationId, includeInactiveL1Validators, nodeId, subnetId, }: {
|
|
3284
3512
|
/**
|
|
3285
3513
|
* Either mainnet or testnet/fuji.
|
|
3286
3514
|
*/
|
|
@@ -3294,10 +3522,10 @@ declare class PrimaryNetworkService {
|
|
|
3294
3522
|
*/
|
|
3295
3523
|
pageSize?: number;
|
|
3296
3524
|
/**
|
|
3297
|
-
* The
|
|
3525
|
+
* The L1 Validator's validation ID to filter by. If not provided, then all L1 Validators will be returned.
|
|
3298
3526
|
*/
|
|
3299
|
-
|
|
3300
|
-
|
|
3527
|
+
l1ValidationId?: any;
|
|
3528
|
+
includeInactiveL1Validators?: boolean;
|
|
3301
3529
|
/**
|
|
3302
3530
|
* A valid node ID in format 'NodeID-HASH'.
|
|
3303
3531
|
*/
|
|
@@ -3306,7 +3534,7 @@ declare class PrimaryNetworkService {
|
|
|
3306
3534
|
* The subnet ID to filter by. If not provided, then all subnets will be returned.
|
|
3307
3535
|
*/
|
|
3308
3536
|
subnetId?: any;
|
|
3309
|
-
}): CancelablePromise<
|
|
3537
|
+
}): CancelablePromise<ListL1ValidatorsResponse>;
|
|
3310
3538
|
}
|
|
3311
3539
|
|
|
3312
3540
|
declare enum BlockchainId {
|
|
@@ -3553,8 +3781,8 @@ type GetPrimaryNetworkBlockResponse = {
|
|
|
3553
3781
|
txCount: number;
|
|
3554
3782
|
transactions: Array<string>;
|
|
3555
3783
|
blockSizeBytes: number;
|
|
3556
|
-
|
|
3557
|
-
|
|
3784
|
+
l1ValidatorsAccruedFees?: number;
|
|
3785
|
+
activeL1Validators?: number;
|
|
3558
3786
|
currentSupply?: string;
|
|
3559
3787
|
proposerDetails?: ProposerDetails;
|
|
3560
3788
|
};
|
|
@@ -3568,8 +3796,8 @@ type PrimaryNetworkBlock = {
|
|
|
3568
3796
|
txCount: number;
|
|
3569
3797
|
transactions: Array<string>;
|
|
3570
3798
|
blockSizeBytes: number;
|
|
3571
|
-
|
|
3572
|
-
|
|
3799
|
+
l1ValidatorsAccruedFees?: number;
|
|
3800
|
+
activeL1Validators?: number;
|
|
3573
3801
|
currentSupply?: string;
|
|
3574
3802
|
proposerDetails?: ProposerDetails;
|
|
3575
3803
|
};
|
|
@@ -3612,7 +3840,7 @@ declare class PrimaryNetworkBlocksService {
|
|
|
3612
3840
|
* @returns ListPrimaryNetworkBlocksResponse Successful response
|
|
3613
3841
|
* @throws ApiError
|
|
3614
3842
|
*/
|
|
3615
|
-
listPrimaryNetworkBlocksByNodeId({ blockchainId, network, nodeId, pageToken, pageSize, }: {
|
|
3843
|
+
listPrimaryNetworkBlocksByNodeId({ blockchainId, network, nodeId, startTimestamp, endTimestamp, pageToken, pageSize, }: {
|
|
3616
3844
|
/**
|
|
3617
3845
|
* A primary network blockchain id or alias.
|
|
3618
3846
|
*/
|
|
@@ -3625,6 +3853,14 @@ declare class PrimaryNetworkBlocksService {
|
|
|
3625
3853
|
* A primary network (P or X chain) nodeId.
|
|
3626
3854
|
*/
|
|
3627
3855
|
nodeId: string;
|
|
3856
|
+
/**
|
|
3857
|
+
* Query param for retrieving items after a specific timestamp.
|
|
3858
|
+
*/
|
|
3859
|
+
startTimestamp?: number;
|
|
3860
|
+
/**
|
|
3861
|
+
* Query param for retrieving items before a specific timestamp.
|
|
3862
|
+
*/
|
|
3863
|
+
endTimestamp?: number;
|
|
3628
3864
|
/**
|
|
3629
3865
|
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
3630
3866
|
*/
|
|
@@ -3640,7 +3876,7 @@ declare class PrimaryNetworkBlocksService {
|
|
|
3640
3876
|
* @returns ListPrimaryNetworkBlocksResponse Successful response
|
|
3641
3877
|
* @throws ApiError
|
|
3642
3878
|
*/
|
|
3643
|
-
listLatestPrimaryNetworkBlocks({ blockchainId, network, pageToken, pageSize, }: {
|
|
3879
|
+
listLatestPrimaryNetworkBlocks({ blockchainId, network, startTimestamp, endTimestamp, pageToken, pageSize, }: {
|
|
3644
3880
|
/**
|
|
3645
3881
|
* A primary network blockchain id or alias.
|
|
3646
3882
|
*/
|
|
@@ -3649,6 +3885,14 @@ declare class PrimaryNetworkBlocksService {
|
|
|
3649
3885
|
* Either mainnet or testnet/fuji.
|
|
3650
3886
|
*/
|
|
3651
3887
|
network: Network;
|
|
3888
|
+
/**
|
|
3889
|
+
* Query param for retrieving items after a specific timestamp.
|
|
3890
|
+
*/
|
|
3891
|
+
startTimestamp?: number;
|
|
3892
|
+
/**
|
|
3893
|
+
* Query param for retrieving items before a specific timestamp.
|
|
3894
|
+
*/
|
|
3895
|
+
endTimestamp?: number;
|
|
3652
3896
|
/**
|
|
3653
3897
|
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
3654
3898
|
*/
|
|
@@ -4058,6 +4302,28 @@ type ListCChainAtomicTransactionsResponse = {
|
|
|
4058
4302
|
chainInfo: PrimaryNetworkChainInfo;
|
|
4059
4303
|
};
|
|
4060
4304
|
|
|
4305
|
+
type L1ValidatorDetailsTransaction = {
|
|
4306
|
+
/**
|
|
4307
|
+
* Unique L1 validation ID used network-wide to identify L1 validation until its weight is reduced to 0 i.e. removed.
|
|
4308
|
+
*/
|
|
4309
|
+
validationId: string;
|
|
4310
|
+
nodeId: string;
|
|
4311
|
+
subnetId: string;
|
|
4312
|
+
/**
|
|
4313
|
+
* Weight of the L1 validator used while sampling validators within the L1. A zero-weight L1 validator means it has been removed from the L1, and the validationID is no longer valid
|
|
4314
|
+
*/
|
|
4315
|
+
weight: number;
|
|
4316
|
+
/**
|
|
4317
|
+
* Remaining L1 validator balance in nAVAX until inactive. It can rejoin L1 sampling by increasing balance with IncreaseL1ValidatorBalanceTx
|
|
4318
|
+
*/
|
|
4319
|
+
remainingBalance: number;
|
|
4320
|
+
/**
|
|
4321
|
+
* The increase in L1 validator balance in the current transaction. When the balance is returned after the L1 validator is disabled or removed, this value is negative
|
|
4322
|
+
*/
|
|
4323
|
+
balanceChange?: number;
|
|
4324
|
+
blsCredentials?: Record<string, any>;
|
|
4325
|
+
};
|
|
4326
|
+
|
|
4061
4327
|
declare enum PChainTransactionType {
|
|
4062
4328
|
ADD_VALIDATOR_TX = "AddValidatorTx",
|
|
4063
4329
|
ADD_SUBNET_VALIDATOR_TX = "AddSubnetValidatorTx",
|
|
@@ -4074,11 +4340,11 @@ declare enum PChainTransactionType {
|
|
|
4074
4340
|
ADD_PERMISSIONLESS_DELEGATOR_TX = "AddPermissionlessDelegatorTx",
|
|
4075
4341
|
BASE_TX = "BaseTx",
|
|
4076
4342
|
TRANSFER_SUBNET_OWNERSHIP_TX = "TransferSubnetOwnershipTx",
|
|
4077
|
-
|
|
4078
|
-
|
|
4079
|
-
|
|
4080
|
-
|
|
4081
|
-
|
|
4343
|
+
CONVERT_SUBNET_TO_L1TX = "ConvertSubnetToL1Tx",
|
|
4344
|
+
REGISTER_L1VALIDATOR_TX = "RegisterL1ValidatorTx",
|
|
4345
|
+
SET_L1VALIDATOR_WEIGHT_TX = "SetL1ValidatorWeightTx",
|
|
4346
|
+
DISABLE_L1VALIDATOR_TX = "DisableL1ValidatorTx",
|
|
4347
|
+
INCREASE_L1VALIDATOR_BALANCE_TX = "IncreaseL1ValidatorBalanceTx",
|
|
4082
4348
|
UNKNOWN = "UNKNOWN"
|
|
4083
4349
|
}
|
|
4084
4350
|
|
|
@@ -4133,28 +4399,6 @@ type PChainUtxo = {
|
|
|
4133
4399
|
utxoType: UtxoType;
|
|
4134
4400
|
};
|
|
4135
4401
|
|
|
4136
|
-
type SoVDetailsTransaction = {
|
|
4137
|
-
/**
|
|
4138
|
-
* Unique SoV ID used network-wide to identify subnet-only validation until its weight is reduced to 0 i.e. removed.
|
|
4139
|
-
*/
|
|
4140
|
-
validationId: string;
|
|
4141
|
-
nodeId: string;
|
|
4142
|
-
subnetId: string;
|
|
4143
|
-
/**
|
|
4144
|
-
* Weight of the SoV used while sampling validators within the L1. A zero-weight SoV means it has been removed from the L1, and the validationID is no longer valid
|
|
4145
|
-
*/
|
|
4146
|
-
weight: number;
|
|
4147
|
-
/**
|
|
4148
|
-
* Remaining SoV balance in nAVAX until inactive. It can rejoin subnet sampling by increasing balance with IncreaseBalanceTx
|
|
4149
|
-
*/
|
|
4150
|
-
remainingBalance: number;
|
|
4151
|
-
/**
|
|
4152
|
-
* The increase in SoV balance in the current transaction. When the balance is returned after the SoV is disabled or removed, this value is negative
|
|
4153
|
-
*/
|
|
4154
|
-
balanceChange?: number;
|
|
4155
|
-
blsCredentials?: Record<string, any>;
|
|
4156
|
-
};
|
|
4157
|
-
|
|
4158
4402
|
type PChainTransaction = {
|
|
4159
4403
|
/**
|
|
4160
4404
|
* A P-Chain transaction hash.
|
|
@@ -4192,7 +4436,7 @@ type PChainTransaction = {
|
|
|
4192
4436
|
/**
|
|
4193
4437
|
* A list of objects containing P-chain Asset basic info and the amount of that Asset ID.
|
|
4194
4438
|
*/
|
|
4195
|
-
|
|
4439
|
+
amountL1ValidatorBalanceBurned: Array<AssetAmount>;
|
|
4196
4440
|
/**
|
|
4197
4441
|
* Present for AddValidatorTx, AddSubnetValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx
|
|
4198
4442
|
*/
|
|
@@ -4214,13 +4458,13 @@ type PChainTransaction = {
|
|
|
4214
4458
|
*/
|
|
4215
4459
|
subnetId?: string;
|
|
4216
4460
|
/**
|
|
4217
|
-
* Details of the L1's validator manager contract and blockchain. Present for the
|
|
4461
|
+
* Details of the L1's validator manager contract and blockchain. Present for the ConvertSubnetToL1Tx which transforms a subnet into L1
|
|
4218
4462
|
*/
|
|
4219
4463
|
l1ValidatorManagerDetails?: L1ValidatorManagerDetails;
|
|
4220
4464
|
/**
|
|
4221
|
-
* Details of
|
|
4465
|
+
* Details of L1 validators registered or changed in the current transaction. The details reflect the state at the time of the transaction, not in real-time
|
|
4222
4466
|
*/
|
|
4223
|
-
l1ValidatorDetails?: Array<
|
|
4467
|
+
l1ValidatorDetails?: Array<L1ValidatorDetailsTransaction>;
|
|
4224
4468
|
/**
|
|
4225
4469
|
* Present for AddValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx
|
|
4226
4470
|
*/
|
|
@@ -4422,11 +4666,11 @@ declare enum PrimaryNetworkTxType {
|
|
|
4422
4666
|
ADD_PERMISSIONLESS_DELEGATOR_TX = "AddPermissionlessDelegatorTx",
|
|
4423
4667
|
BASE_TX = "BaseTx",
|
|
4424
4668
|
TRANSFER_SUBNET_OWNERSHIP_TX = "TransferSubnetOwnershipTx",
|
|
4425
|
-
|
|
4426
|
-
|
|
4427
|
-
|
|
4428
|
-
|
|
4429
|
-
|
|
4669
|
+
CONVERT_SUBNET_TO_L1TX = "ConvertSubnetToL1Tx",
|
|
4670
|
+
REGISTER_L1VALIDATOR_TX = "RegisterL1ValidatorTx",
|
|
4671
|
+
SET_L1VALIDATOR_WEIGHT_TX = "SetL1ValidatorWeightTx",
|
|
4672
|
+
DISABLE_L1VALIDATOR_TX = "DisableL1ValidatorTx",
|
|
4673
|
+
INCREASE_L1VALIDATOR_BALANCE_TX = "IncreaseL1ValidatorBalanceTx",
|
|
4430
4674
|
UNKNOWN = "UNKNOWN",
|
|
4431
4675
|
CREATE_ASSET_TX = "CreateAssetTx",
|
|
4432
4676
|
OPERATION_TX = "OperationTx"
|
|
@@ -4461,13 +4705,13 @@ declare class PrimaryNetworkTransactionsService {
|
|
|
4461
4705
|
*
|
|
4462
4706
|
* 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.
|
|
4463
4707
|
*
|
|
4464
|
-
* For P-Chain, you can fetch all
|
|
4708
|
+
* For P-Chain, you can fetch all L1 validators related transactions like ConvertSubnetToL1Tx, IncreaseL1ValidatorBalanceTx etc. using the unique L1 validation ID. These transactions are further filterable by txTypes and timestamps as well.
|
|
4465
4709
|
*
|
|
4466
4710
|
* 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.
|
|
4467
4711
|
* @returns any Successful response
|
|
4468
4712
|
* @throws ApiError
|
|
4469
4713
|
*/
|
|
4470
|
-
listLatestPrimaryNetworkTransactions({ blockchainId, network, addresses,
|
|
4714
|
+
listLatestPrimaryNetworkTransactions({ blockchainId, network, addresses, l1ValidationId, txTypes, startTimestamp, endTimestamp, pageToken, pageSize, sortOrder, }: {
|
|
4471
4715
|
/**
|
|
4472
4716
|
* A primary network blockchain id or alias.
|
|
4473
4717
|
*/
|
|
@@ -4480,7 +4724,7 @@ declare class PrimaryNetworkTransactionsService {
|
|
|
4480
4724
|
* 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.
|
|
4481
4725
|
*/
|
|
4482
4726
|
addresses?: string;
|
|
4483
|
-
|
|
4727
|
+
l1ValidationId?: string;
|
|
4484
4728
|
/**
|
|
4485
4729
|
* Query param for filtering items based on transaction types.
|
|
4486
4730
|
*/
|
|
@@ -4761,13 +5005,7 @@ type SignatureAggregationResponse = {
|
|
|
4761
5005
|
};
|
|
4762
5006
|
|
|
4763
5007
|
type SignatureAggregatorRequest = {
|
|
4764
|
-
|
|
4765
|
-
* Must be defined if justification is not defined
|
|
4766
|
-
*/
|
|
4767
|
-
message?: string;
|
|
4768
|
-
/**
|
|
4769
|
-
* Must be defined if message is not defined
|
|
4770
|
-
*/
|
|
5008
|
+
message: string;
|
|
4771
5009
|
justification?: string;
|
|
4772
5010
|
signingSubnetId?: string;
|
|
4773
5011
|
quorumPercentage?: number;
|
|
@@ -4782,7 +5020,11 @@ declare class SignatureAggregatorService {
|
|
|
4782
5020
|
* @returns SignatureAggregationResponse Successful response
|
|
4783
5021
|
* @throws ApiError
|
|
4784
5022
|
*/
|
|
4785
|
-
aggregateSignatures({ requestBody, }: {
|
|
5023
|
+
aggregateSignatures({ network, requestBody, }: {
|
|
5024
|
+
/**
|
|
5025
|
+
* Either mainnet or testnet/fuji.
|
|
5026
|
+
*/
|
|
5027
|
+
network: Network;
|
|
4786
5028
|
requestBody: SignatureAggregatorRequest;
|
|
4787
5029
|
}): CancelablePromise<SignatureAggregationResponse>;
|
|
4788
5030
|
}
|
|
@@ -5032,7 +5274,7 @@ type CreateWebhookRequest = {
|
|
|
5032
5274
|
name?: string;
|
|
5033
5275
|
description?: string;
|
|
5034
5276
|
/**
|
|
5035
|
-
* Whether to include traces in the webhook payload.
|
|
5277
|
+
* Whether to include traces in the webhook payload. Traces are only available for C-Chain on chainId 43113 and 43114.
|
|
5036
5278
|
*/
|
|
5037
5279
|
includeInternalTxs?: boolean;
|
|
5038
5280
|
/**
|
|
@@ -5092,6 +5334,9 @@ type UpdateWebhookRequest = {
|
|
|
5092
5334
|
description?: string;
|
|
5093
5335
|
url?: string;
|
|
5094
5336
|
status?: WebhookStatusType;
|
|
5337
|
+
/**
|
|
5338
|
+
* Whether to include traces in the webhook payload. Traces are only available for C-Chain on chainId 43113 and 43114.
|
|
5339
|
+
*/
|
|
5095
5340
|
includeInternalTxs?: boolean;
|
|
5096
5341
|
includeLogs?: boolean;
|
|
5097
5342
|
};
|
|
@@ -5406,4 +5651,4 @@ type Unauthorized = {
|
|
|
5406
5651
|
error: string;
|
|
5407
5652
|
};
|
|
5408
5653
|
|
|
5409
|
-
export { ActiveDelegatorDetails, ActiveValidatorDetails, AddressActivityMetadata, AddressesChangeRequest, AggregatedAssetAmount, ApiError, ApiFeature, AssetAmount, AssetWithPriceInfo, BadGateway, BadRequest, BalanceOwner, 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, L1ValidatorManagerDetails, ListAddressChainsResponse, ListBlockchainsResponse, ListCChainAtomicBalancesResponse, ListCChainAtomicTransactionsResponse, ListChainsResponse, ListCollectibleBalancesResponse, ListContractsResponse, ListDelegatorDetailsResponse, ListErc1155BalancesResponse, ListErc1155TransactionsResponse, ListErc20BalancesResponse, ListErc20TransactionsResponse, ListErc721BalancesResponse, ListErc721TransactionsResponse, ListEvmBlocksResponse, ListHistoricalRewardsResponse, ListInternalTransactionsResponse, ListNativeTransactionsResponse, ListNftTokens, ListPChainBalancesResponse, ListPChainTransactionsResponse, ListPChainUtxosResponse, ListPendingRewardsResponse, ListPrimaryNetworkBlocksResponse,
|
|
5654
|
+
export { ActiveDelegatorDetails, ActiveValidatorDetails, AddressActivityMetadata, AddressesChangeRequest, AggregatedAssetAmount, ApiError, ApiFeature, AssetAmount, AssetWithPriceInfo, BadGateway, BadRequest, BalanceOwner, 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, L1ValidatorDetailsFull, L1ValidatorDetailsTransaction, L1ValidatorManagerDetails, ListAddressChainsResponse, ListBlockchainsResponse, ListCChainAtomicBalancesResponse, ListCChainAtomicTransactionsResponse, ListChainsResponse, ListCollectibleBalancesResponse, ListContractsResponse, ListDelegatorDetailsResponse, ListErc1155BalancesResponse, ListErc1155TransactionsResponse, ListErc20BalancesResponse, ListErc20TransactionsResponse, ListErc721BalancesResponse, ListErc721TransactionsResponse, ListEvmBlocksResponse, ListHistoricalRewardsResponse, ListInternalTransactionsResponse, ListL1ValidatorsResponse, 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, PrimaryNetworkAssetCap, PrimaryNetworkAssetType, PrimaryNetworkBalancesService, PrimaryNetworkBlock, PrimaryNetworkBlocksService, PrimaryNetworkChainInfo, PrimaryNetworkChainName, PrimaryNetworkOperationType, PrimaryNetworkOptions, PrimaryNetworkRewardsService, PrimaryNetworkRpcMetricsGroupByEnum, PrimaryNetworkService, PrimaryNetworkTransactionsService, PrimaryNetworkTxType, PrimaryNetworkUtxOsService, PrimaryNetworkVerticesService, ProposerDetails, RemovedValidatorDetails, RequestType, ResourceLink, ResourceLinkType, RewardType, Rewards, RichAddress, RpcMetrics, RpcUsageMetricsGroupByEnum, RpcUsageMetricsValueAggregated, ServiceUnavailable, SharedSecretsResponse, SignatureAggregationResponse, SignatureAggregatorRequest, SignatureAggregatorService, SortByOption, SortOrder, StakingDistribution, Subnet, SubnetOwnershipInfo, SubnetRpcTimeIntervalGranularity, SubnetRpcUsageMetricsResponseDTO, 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 };
|