@avalabs/glacier-sdk 3.1.0-canary.3390d8f.0 → 3.1.0-canary.35e0827.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 +387 -40
- package/dist/index.js +1 -1
- package/esm/generated/Glacier.d.ts +2 -0
- package/esm/generated/Glacier.js +1 -1
- package/esm/generated/models/AccessRequest.d.ts +12 -0
- package/esm/generated/models/ActiveValidatorDetails.d.ts +21 -0
- package/esm/generated/models/CompletedDelegatorDetails.d.ts +6 -0
- package/esm/generated/models/CompletedValidatorDetails.d.ts +3 -0
- package/esm/generated/models/L1ValidatorDetailsTransaction.d.ts +1 -1
- 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/NotificationsResponse.d.ts +5 -0
- package/esm/generated/models/PChainTransaction.d.ts +20 -8
- package/esm/generated/models/PChainUtxo.d.ts +27 -0
- package/esm/generated/models/PendingDelegatorDetails.d.ts +6 -0
- package/esm/generated/models/PendingValidatorDetails.d.ts +3 -0
- package/esm/generated/models/PrimaryNetworkRpcMetricsGroupByEnum.d.ts +9 -0
- package/esm/generated/models/PrimaryNetworkRpcMetricsGroupByEnum.js +1 -0
- package/esm/generated/models/RemovedValidatorDetails.d.ts +9 -0
- package/esm/generated/models/StakingDistribution.d.ts +9 -0
- package/esm/generated/models/Subnet.d.ts +4 -0
- package/esm/generated/models/{RpcUsageMetricsResponseDTO.d.ts → SubnetRpcUsageMetricsResponseDTO.d.ts} +6 -6
- package/esm/generated/models/SubscribeRequest.d.ts +16 -0
- package/esm/generated/models/SubscriptionsRequest.d.ts +8 -0
- package/esm/generated/models/SubscriptionsResponse.d.ts +14 -0
- package/esm/generated/models/UnsubscribeRequest.d.ts +12 -0
- package/esm/generated/models/UtxoType.d.ts +3 -0
- package/esm/generated/models/ValidatorsDetails.d.ts +6 -0
- package/esm/generated/services/DataApiUsageMetricsService.d.ts +54 -3
- 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 +26 -8
- package/esm/generated/services/EvmChainsService.js +1 -1
- package/esm/generated/services/EvmTransactionsService.d.ts +25 -0
- package/esm/generated/services/EvmTransactionsService.js +1 -1
- package/esm/generated/services/NotificationsService.d.ts +51 -0
- package/esm/generated/services/NotificationsService.js +1 -0
- package/esm/generated/services/SignatureAggregatorService.d.ts +6 -1
- package/esm/generated/services/SignatureAggregatorService.js +1 -1
- package/esm/index.d.ts +9 -1
- package/esm/index.js +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -148,12 +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
|
+
|
|
151
166
|
declare enum RpcUsageMetricsGroupByEnum {
|
|
152
167
|
RPC_METHOD = "rpcMethod",
|
|
153
168
|
RESPONSE_CODE = "responseCode",
|
|
154
169
|
RL_BYPASS_TOKEN = "rlBypassToken"
|
|
155
170
|
}
|
|
156
171
|
|
|
172
|
+
declare enum SubnetRpcTimeIntervalGranularity {
|
|
173
|
+
HOURLY = "hourly",
|
|
174
|
+
DAILY = "daily",
|
|
175
|
+
WEEKLY = "weekly",
|
|
176
|
+
MONTHLY = "monthly"
|
|
177
|
+
}
|
|
178
|
+
|
|
157
179
|
type RpcUsageMetricsValueAggregated = {
|
|
158
180
|
/**
|
|
159
181
|
* The total number of requests
|
|
@@ -215,28 +237,21 @@ type RpcMetrics = {
|
|
|
215
237
|
values: Array<RpcUsageMetricsValueAggregated>;
|
|
216
238
|
};
|
|
217
239
|
|
|
218
|
-
type
|
|
240
|
+
type SubnetRpcUsageMetricsResponseDTO = {
|
|
219
241
|
/**
|
|
220
242
|
* Duration in which the metrics value is aggregated
|
|
221
243
|
*/
|
|
222
244
|
aggregateDuration: string;
|
|
223
|
-
/**
|
|
224
|
-
* ChainId for which the metrics are aggregated
|
|
225
|
-
*/
|
|
226
|
-
chainId: string;
|
|
227
245
|
/**
|
|
228
246
|
* Metrics values
|
|
229
247
|
*/
|
|
230
248
|
metrics: Array<RpcMetrics>;
|
|
249
|
+
/**
|
|
250
|
+
* ChainId for which the metrics are aggregated
|
|
251
|
+
*/
|
|
252
|
+
chainId: string;
|
|
231
253
|
};
|
|
232
254
|
|
|
233
|
-
declare enum SubnetRpcTimeIntervalGranularity {
|
|
234
|
-
HOURLY = "hourly",
|
|
235
|
-
DAILY = "daily",
|
|
236
|
-
WEEKLY = "weekly",
|
|
237
|
-
MONTHLY = "monthly"
|
|
238
|
-
}
|
|
239
|
-
|
|
240
255
|
declare enum TimeIntervalGranularityExtended {
|
|
241
256
|
MINUTE = "minute",
|
|
242
257
|
HOURLY = "hourly",
|
|
@@ -433,7 +448,7 @@ declare class DataApiUsageMetricsService {
|
|
|
433
448
|
/**
|
|
434
449
|
* Get usage metrics for the Subnet RPC
|
|
435
450
|
* Gets metrics for public Subnet RPC usage over a specified time interval aggregated at the specified time-duration granularity.
|
|
436
|
-
* @returns
|
|
451
|
+
* @returns SubnetRpcUsageMetricsResponseDTO Successful response
|
|
437
452
|
* @throws ApiError
|
|
438
453
|
*/
|
|
439
454
|
getRpcUsageMetrics({ timeInterval, startTimestamp, endTimestamp, groupBy, chainId, responseCode, rpcMethod, rlBypassApiToken, }: {
|
|
@@ -470,7 +485,56 @@ declare class DataApiUsageMetricsService {
|
|
|
470
485
|
* Filter data by Rl Bypass API Token.
|
|
471
486
|
*/
|
|
472
487
|
rlBypassApiToken?: string;
|
|
473
|
-
}): 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>;
|
|
474
538
|
}
|
|
475
539
|
|
|
476
540
|
declare class DefaultService {
|
|
@@ -669,6 +733,10 @@ type ListErc1155BalancesResponse = {
|
|
|
669
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.
|
|
670
734
|
*/
|
|
671
735
|
nextPageToken?: string;
|
|
736
|
+
/**
|
|
737
|
+
* The native token balance for the address.
|
|
738
|
+
*/
|
|
739
|
+
nativeTokenBalance: NativeTokenBalance;
|
|
672
740
|
/**
|
|
673
741
|
* The list of ERC-1155 token balances for the address.
|
|
674
742
|
*/
|
|
@@ -736,6 +804,10 @@ type ListErc20BalancesResponse = {
|
|
|
736
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.
|
|
737
805
|
*/
|
|
738
806
|
nextPageToken?: string;
|
|
807
|
+
/**
|
|
808
|
+
* The native token balance for the address.
|
|
809
|
+
*/
|
|
810
|
+
nativeTokenBalance: NativeTokenBalance;
|
|
739
811
|
/**
|
|
740
812
|
* The list of ERC-20 token balances for the address.
|
|
741
813
|
*/
|
|
@@ -747,6 +819,10 @@ type ListErc721BalancesResponse = {
|
|
|
747
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.
|
|
748
820
|
*/
|
|
749
821
|
nextPageToken?: string;
|
|
822
|
+
/**
|
|
823
|
+
* The native token balance for the address.
|
|
824
|
+
*/
|
|
825
|
+
nativeTokenBalance: NativeTokenBalance;
|
|
750
826
|
/**
|
|
751
827
|
* The list of ERC-721 token balances for the address.
|
|
752
828
|
*/
|
|
@@ -1031,6 +1107,26 @@ type ListEvmBlocksResponse = {
|
|
|
1031
1107
|
declare class EvmBlocksService {
|
|
1032
1108
|
readonly httpRequest: BaseHttpRequest;
|
|
1033
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>;
|
|
1034
1130
|
/**
|
|
1035
1131
|
* List latest blocks
|
|
1036
1132
|
* Lists the latest indexed blocks on the EVM-compatible chain sorted in descending order by block timestamp.
|
|
@@ -1269,13 +1365,6 @@ type ListNativeTransactionsResponse = {
|
|
|
1269
1365
|
transactions: Array<NativeTransaction>;
|
|
1270
1366
|
};
|
|
1271
1367
|
|
|
1272
|
-
declare enum Network {
|
|
1273
|
-
MAINNET = "mainnet",
|
|
1274
|
-
FUJI = "fuji",
|
|
1275
|
-
TESTNET = "testnet",
|
|
1276
|
-
DEVNET = "devnet"
|
|
1277
|
-
}
|
|
1278
|
-
|
|
1279
1368
|
declare enum TransactionStatus {
|
|
1280
1369
|
FAILED = "failed",
|
|
1281
1370
|
SUCCESS = "success"
|
|
@@ -1284,9 +1373,21 @@ declare enum TransactionStatus {
|
|
|
1284
1373
|
declare class EvmChainsService {
|
|
1285
1374
|
readonly httpRequest: BaseHttpRequest;
|
|
1286
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>;
|
|
1287
1388
|
/**
|
|
1288
1389
|
* List chains
|
|
1289
|
-
* Lists the supported EVM-compatible chains. Filterable by network.
|
|
1390
|
+
* Lists the AvaCloud supported EVM-compatible chains. Filterable by network.
|
|
1290
1391
|
* @returns ListChainsResponse Successful response
|
|
1291
1392
|
* @throws ApiError
|
|
1292
1393
|
*/
|
|
@@ -1302,7 +1403,7 @@ declare class EvmChainsService {
|
|
|
1302
1403
|
}): CancelablePromise<ListChainsResponse>;
|
|
1303
1404
|
/**
|
|
1304
1405
|
* Get chain information
|
|
1305
|
-
* Gets chain information for the EVM-compatible chain if supported by
|
|
1406
|
+
* Gets chain information for the EVM-compatible chain if supported by AvaCloud.
|
|
1306
1407
|
* @returns GetChainResponse Successful response
|
|
1307
1408
|
* @throws ApiError
|
|
1308
1409
|
*/
|
|
@@ -1313,8 +1414,10 @@ declare class EvmChainsService {
|
|
|
1313
1414
|
chainId: string;
|
|
1314
1415
|
}): CancelablePromise<GetChainResponse>;
|
|
1315
1416
|
/**
|
|
1316
|
-
*
|
|
1317
|
-
* 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.
|
|
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** .
|
|
1318
1421
|
* @returns ListAddressChainsResponse Successful response
|
|
1319
1422
|
* @throws ApiError
|
|
1320
1423
|
*/
|
|
@@ -1325,8 +1428,10 @@ declare class EvmChainsService {
|
|
|
1325
1428
|
address: string;
|
|
1326
1429
|
}): CancelablePromise<ListAddressChainsResponse>;
|
|
1327
1430
|
/**
|
|
1328
|
-
*
|
|
1329
|
-
* Lists the latest transactions for all supported EVM chains. Filterable by status.
|
|
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** .
|
|
1330
1435
|
* @returns ListNativeTransactionsResponse Successful response
|
|
1331
1436
|
* @throws ApiError
|
|
1332
1437
|
*/
|
|
@@ -1349,8 +1454,10 @@ declare class EvmChainsService {
|
|
|
1349
1454
|
status?: TransactionStatus;
|
|
1350
1455
|
}): CancelablePromise<ListNativeTransactionsResponse>;
|
|
1351
1456
|
/**
|
|
1352
|
-
*
|
|
1353
|
-
* Lists the latest blocks for all supported EVM chains. Filterable by network.
|
|
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** .
|
|
1354
1461
|
* @returns ListEvmBlocksResponse Successful response
|
|
1355
1462
|
* @throws ApiError
|
|
1356
1463
|
*/
|
|
@@ -2113,6 +2220,30 @@ declare enum SortOrder {
|
|
|
2113
2220
|
declare class EvmTransactionsService {
|
|
2114
2221
|
readonly httpRequest: BaseHttpRequest;
|
|
2115
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>;
|
|
2116
2247
|
/**
|
|
2117
2248
|
* Get deployment transaction
|
|
2118
2249
|
* If the address is a smart contract, returns the transaction in which it was deployed.
|
|
@@ -2548,6 +2679,108 @@ declare class NfTsService {
|
|
|
2548
2679
|
}): CancelablePromise<(Erc721Token | Erc1155Token)>;
|
|
2549
2680
|
}
|
|
2550
2681
|
|
|
2682
|
+
type AccessRequest = {
|
|
2683
|
+
/**
|
|
2684
|
+
* The email address to send the access token to
|
|
2685
|
+
*/
|
|
2686
|
+
email: string;
|
|
2687
|
+
/**
|
|
2688
|
+
* The captcha to verify the user
|
|
2689
|
+
*/
|
|
2690
|
+
captcha: string;
|
|
2691
|
+
};
|
|
2692
|
+
|
|
2693
|
+
type NotificationsResponse = {
|
|
2694
|
+
message: string;
|
|
2695
|
+
};
|
|
2696
|
+
|
|
2697
|
+
type SubscribeRequest = {
|
|
2698
|
+
/**
|
|
2699
|
+
* The access token to use for authentication
|
|
2700
|
+
*/
|
|
2701
|
+
accessToken: string;
|
|
2702
|
+
/**
|
|
2703
|
+
* The node ID to subscribe to
|
|
2704
|
+
*/
|
|
2705
|
+
nodeId: string;
|
|
2706
|
+
/**
|
|
2707
|
+
* The notification types to subscribe to. If not provided, all notification types will be subscribed to
|
|
2708
|
+
*/
|
|
2709
|
+
notifications?: Array<'connectivity' | 'ports' | 'version'>;
|
|
2710
|
+
};
|
|
2711
|
+
|
|
2712
|
+
type SubscriptionsRequest = {
|
|
2713
|
+
/**
|
|
2714
|
+
* The access token to use for authentication
|
|
2715
|
+
*/
|
|
2716
|
+
accessToken: string;
|
|
2717
|
+
};
|
|
2718
|
+
|
|
2719
|
+
type SubscriptionsResponse = {
|
|
2720
|
+
/**
|
|
2721
|
+
* The email address of the user
|
|
2722
|
+
*/
|
|
2723
|
+
email: string;
|
|
2724
|
+
/**
|
|
2725
|
+
* The subscriptions of the user
|
|
2726
|
+
*/
|
|
2727
|
+
subscriptions: Record<string, {
|
|
2728
|
+
notifications?: Array<'connectivity' | 'ports' | 'version'>;
|
|
2729
|
+
}>;
|
|
2730
|
+
};
|
|
2731
|
+
|
|
2732
|
+
type UnsubscribeRequest = {
|
|
2733
|
+
/**
|
|
2734
|
+
* The access token to use for authentication
|
|
2735
|
+
*/
|
|
2736
|
+
accessToken: string;
|
|
2737
|
+
/**
|
|
2738
|
+
* The node ID to subscribe to
|
|
2739
|
+
*/
|
|
2740
|
+
nodeId: string;
|
|
2741
|
+
};
|
|
2742
|
+
|
|
2743
|
+
declare class NotificationsService {
|
|
2744
|
+
readonly httpRequest: BaseHttpRequest;
|
|
2745
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
2746
|
+
/**
|
|
2747
|
+
* Access Notifications
|
|
2748
|
+
* Access notifications.
|
|
2749
|
+
* @returns NotificationsResponse Successful response
|
|
2750
|
+
* @throws ApiError
|
|
2751
|
+
*/
|
|
2752
|
+
access({ requestBody, }: {
|
|
2753
|
+
requestBody: AccessRequest;
|
|
2754
|
+
}): CancelablePromise<NotificationsResponse>;
|
|
2755
|
+
/**
|
|
2756
|
+
* Subscribe to Notifications
|
|
2757
|
+
* Subscribe to receive notifications.
|
|
2758
|
+
* @returns NotificationsResponse Successful response
|
|
2759
|
+
* @throws ApiError
|
|
2760
|
+
*/
|
|
2761
|
+
subscribe({ requestBody, }: {
|
|
2762
|
+
requestBody: SubscribeRequest;
|
|
2763
|
+
}): CancelablePromise<NotificationsResponse>;
|
|
2764
|
+
/**
|
|
2765
|
+
* Unsubscribe from Notifications
|
|
2766
|
+
* Unsubscribe from receiving notifications.
|
|
2767
|
+
* @returns NotificationsResponse Successful response
|
|
2768
|
+
* @throws ApiError
|
|
2769
|
+
*/
|
|
2770
|
+
unsubscribe({ requestBody, }: {
|
|
2771
|
+
requestBody: UnsubscribeRequest;
|
|
2772
|
+
}): CancelablePromise<NotificationsResponse>;
|
|
2773
|
+
/**
|
|
2774
|
+
* Get Subscriptions
|
|
2775
|
+
* Get subscriptions.
|
|
2776
|
+
* @returns SubscriptionsResponse Successful response
|
|
2777
|
+
* @throws ApiError
|
|
2778
|
+
*/
|
|
2779
|
+
subscriptions({ requestBody, }: {
|
|
2780
|
+
requestBody: SubscriptionsRequest;
|
|
2781
|
+
}): CancelablePromise<SubscriptionsResponse>;
|
|
2782
|
+
}
|
|
2783
|
+
|
|
2551
2784
|
type EvmNetworkOptions = {
|
|
2552
2785
|
addresses: Array<string>;
|
|
2553
2786
|
includeChains: Array<string>;
|
|
@@ -2700,16 +2933,31 @@ type DelegatorsDetails = {
|
|
|
2700
2933
|
};
|
|
2701
2934
|
|
|
2702
2935
|
type StakingDistribution = {
|
|
2936
|
+
/**
|
|
2937
|
+
* AvalancheGo version for the validator node.
|
|
2938
|
+
*/
|
|
2703
2939
|
version: string;
|
|
2940
|
+
/**
|
|
2941
|
+
* The total amount staked by validators using this version.
|
|
2942
|
+
*/
|
|
2704
2943
|
amountStaked: string;
|
|
2944
|
+
/**
|
|
2945
|
+
* The number of validators using this version.
|
|
2946
|
+
*/
|
|
2705
2947
|
validatorCount: number;
|
|
2706
2948
|
};
|
|
2707
2949
|
|
|
2708
2950
|
type ValidatorsDetails = {
|
|
2709
2951
|
validatorCount: number;
|
|
2710
2952
|
totalAmountStaked: string;
|
|
2953
|
+
/**
|
|
2954
|
+
* Total potential rewards from currently active validations and delegations.
|
|
2955
|
+
*/
|
|
2711
2956
|
estimatedAnnualStakingReward: string;
|
|
2712
2957
|
stakingDistributionByVersion: Array<StakingDistribution>;
|
|
2958
|
+
/**
|
|
2959
|
+
* Ratio of total active stake amount to the current supply.
|
|
2960
|
+
*/
|
|
2713
2961
|
stakingRatio: string;
|
|
2714
2962
|
};
|
|
2715
2963
|
|
|
@@ -2761,7 +3009,13 @@ type CompletedDelegatorDetails = {
|
|
|
2761
3009
|
delegationFee: string;
|
|
2762
3010
|
startTimestamp: number;
|
|
2763
3011
|
endTimestamp: number;
|
|
3012
|
+
/**
|
|
3013
|
+
* Total rewards distributed for the successful delegation.
|
|
3014
|
+
*/
|
|
2764
3015
|
grossReward: string;
|
|
3016
|
+
/**
|
|
3017
|
+
* Net rewards distributed to the delegator after deducting delegation fee from the gross reward for the successful delegation.
|
|
3018
|
+
*/
|
|
2765
3019
|
netReward: string;
|
|
2766
3020
|
delegationStatus: CompletedDelegatorDetails.delegationStatus;
|
|
2767
3021
|
};
|
|
@@ -2779,7 +3033,13 @@ type PendingDelegatorDetails = {
|
|
|
2779
3033
|
delegationFee: string;
|
|
2780
3034
|
startTimestamp: number;
|
|
2781
3035
|
endTimestamp: number;
|
|
3036
|
+
/**
|
|
3037
|
+
* Estimated total rewards that will be distributed for the successful delegation.
|
|
3038
|
+
*/
|
|
2782
3039
|
estimatedGrossReward: string;
|
|
3040
|
+
/**
|
|
3041
|
+
* Estimated net rewards that will be distributed to the delegator after deducting delegation fee from the gross reward for the successful delegation.
|
|
3042
|
+
*/
|
|
2783
3043
|
estimatedNetReward: string;
|
|
2784
3044
|
delegationStatus: PendingDelegatorDetails.delegationStatus;
|
|
2785
3045
|
};
|
|
@@ -2897,6 +3157,10 @@ type Subnet = {
|
|
|
2897
3157
|
* Whether the subnet is an L1 or not.
|
|
2898
3158
|
*/
|
|
2899
3159
|
isL1: boolean;
|
|
3160
|
+
/**
|
|
3161
|
+
* Transaction hash of ConvertSubnetToL1Tx which converted this Subnet to L1.
|
|
3162
|
+
*/
|
|
3163
|
+
l1ConversionTransactionHash?: string;
|
|
2900
3164
|
/**
|
|
2901
3165
|
* L1 validator manager details.
|
|
2902
3166
|
*/
|
|
@@ -2948,6 +3212,9 @@ type ActiveValidatorDetails = {
|
|
|
2948
3212
|
nodeId: string;
|
|
2949
3213
|
subnetId: string;
|
|
2950
3214
|
amountStaked: string;
|
|
3215
|
+
/**
|
|
3216
|
+
* The percentage of total estimated delegator rewards allocated to validator nodes for supporting delegations.
|
|
3217
|
+
*/
|
|
2951
3218
|
delegationFee?: string;
|
|
2952
3219
|
startTimestamp: number;
|
|
2953
3220
|
endTimestamp: number;
|
|
@@ -2955,12 +3222,30 @@ type ActiveValidatorDetails = {
|
|
|
2955
3222
|
* Present for AddPermissionlessValidatorTx
|
|
2956
3223
|
*/
|
|
2957
3224
|
blsCredentials?: BlsCredentials;
|
|
3225
|
+
/**
|
|
3226
|
+
* The percentage of this validator's stake amount to the total active stake.
|
|
3227
|
+
*/
|
|
2958
3228
|
stakePercentage: number;
|
|
3229
|
+
/**
|
|
3230
|
+
* The number of delegators linked to the validator.
|
|
3231
|
+
*/
|
|
2959
3232
|
delegatorCount: number;
|
|
3233
|
+
/**
|
|
3234
|
+
* The total amount in nAVAX delegated to the validator.
|
|
3235
|
+
*/
|
|
2960
3236
|
amountDelegated?: string;
|
|
3237
|
+
/**
|
|
3238
|
+
* The validator's uptime percentage, as observed by our internal node and measured over time.
|
|
3239
|
+
*/
|
|
2961
3240
|
uptimePerformance: number;
|
|
2962
3241
|
avalancheGoVersion?: string;
|
|
3242
|
+
/**
|
|
3243
|
+
* The amount of stake in nAVAX that can be delegated to this validator.
|
|
3244
|
+
*/
|
|
2963
3245
|
delegationCapacity?: string;
|
|
3246
|
+
/**
|
|
3247
|
+
* Estimated rewards for the validator if the validation is successful.
|
|
3248
|
+
*/
|
|
2964
3249
|
potentialRewards: Rewards;
|
|
2965
3250
|
validationStatus: ActiveValidatorDetails.validationStatus;
|
|
2966
3251
|
validatorHealth: ValidatorHealthDetails;
|
|
@@ -2976,6 +3261,9 @@ type CompletedValidatorDetails = {
|
|
|
2976
3261
|
nodeId: string;
|
|
2977
3262
|
subnetId: string;
|
|
2978
3263
|
amountStaked: string;
|
|
3264
|
+
/**
|
|
3265
|
+
* The percentage of total estimated delegator rewards allocated to validator nodes for supporting delegations.
|
|
3266
|
+
*/
|
|
2979
3267
|
delegationFee?: string;
|
|
2980
3268
|
startTimestamp: number;
|
|
2981
3269
|
endTimestamp: number;
|
|
@@ -2999,6 +3287,9 @@ type PendingValidatorDetails = {
|
|
|
2999
3287
|
nodeId: string;
|
|
3000
3288
|
subnetId: string;
|
|
3001
3289
|
amountStaked: string;
|
|
3290
|
+
/**
|
|
3291
|
+
* The percentage of total estimated delegator rewards allocated to validator nodes for supporting delegations.
|
|
3292
|
+
*/
|
|
3002
3293
|
delegationFee?: string;
|
|
3003
3294
|
startTimestamp: number;
|
|
3004
3295
|
endTimestamp: number;
|
|
@@ -3019,6 +3310,9 @@ type RemovedValidatorDetails = {
|
|
|
3019
3310
|
nodeId: string;
|
|
3020
3311
|
subnetId: string;
|
|
3021
3312
|
amountStaked: string;
|
|
3313
|
+
/**
|
|
3314
|
+
* The percentage of total estimated delegator rewards allocated to validator nodes for supporting delegations.
|
|
3315
|
+
*/
|
|
3022
3316
|
delegationFee?: string;
|
|
3023
3317
|
startTimestamp: number;
|
|
3024
3318
|
endTimestamp: number;
|
|
@@ -3026,7 +3320,13 @@ type RemovedValidatorDetails = {
|
|
|
3026
3320
|
* Present for AddPermissionlessValidatorTx
|
|
3027
3321
|
*/
|
|
3028
3322
|
blsCredentials?: BlsCredentials;
|
|
3323
|
+
/**
|
|
3324
|
+
* The transaction hash that removed the permissioned subnet validator.
|
|
3325
|
+
*/
|
|
3029
3326
|
removeTxHash: string;
|
|
3327
|
+
/**
|
|
3328
|
+
* The timestamp of the transaction that removed the permissioned subnet validator.
|
|
3329
|
+
*/
|
|
3030
3330
|
removeTimestamp: number;
|
|
3031
3331
|
validationStatus: RemovedValidatorDetails.validationStatus;
|
|
3032
3332
|
};
|
|
@@ -4183,7 +4483,7 @@ type L1ValidatorDetailsTransaction = {
|
|
|
4183
4483
|
*/
|
|
4184
4484
|
remainingBalance: number;
|
|
4185
4485
|
/**
|
|
4186
|
-
* 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
|
|
4486
|
+
* The increase in L1 validator balance (nAVAX) in the current transaction. When the balance is returned after the L1 validator is disabled or removed, this value is negative
|
|
4187
4487
|
*/
|
|
4188
4488
|
balanceChange?: number;
|
|
4189
4489
|
blsCredentials?: Record<string, any>;
|
|
@@ -4213,6 +4513,9 @@ declare enum PChainTransactionType {
|
|
|
4213
4513
|
UNKNOWN = "UNKNOWN"
|
|
4214
4514
|
}
|
|
4215
4515
|
|
|
4516
|
+
/**
|
|
4517
|
+
* Indicates whether the UTXO is staked or transferable
|
|
4518
|
+
*/
|
|
4216
4519
|
declare enum UtxoType {
|
|
4217
4520
|
STAKE = "STAKE",
|
|
4218
4521
|
TRANSFER = "TRANSFER"
|
|
@@ -4250,16 +4553,43 @@ type PChainUtxo = {
|
|
|
4250
4553
|
assetId: string;
|
|
4251
4554
|
blockNumber: string;
|
|
4252
4555
|
blockTimestamp: number;
|
|
4556
|
+
/**
|
|
4557
|
+
* Block height in which the transaction consuming this UTXO was included
|
|
4558
|
+
*/
|
|
4253
4559
|
consumingBlockNumber?: string;
|
|
4560
|
+
/**
|
|
4561
|
+
* Timestamp in seconds at which this UTXO is used in a consuming transaction
|
|
4562
|
+
*/
|
|
4254
4563
|
consumingBlockTimestamp?: number;
|
|
4564
|
+
/**
|
|
4565
|
+
* Timestamp in seconds after which this UTXO can be consumed
|
|
4566
|
+
*/
|
|
4255
4567
|
platformLocktime?: number;
|
|
4568
|
+
/**
|
|
4569
|
+
* The index of the UTXO in the transaction
|
|
4570
|
+
*/
|
|
4256
4571
|
outputIndex: number;
|
|
4257
4572
|
rewardType?: RewardType;
|
|
4573
|
+
/**
|
|
4574
|
+
* Timestamp in seconds before which a UTXO can only be used for staking transactions. After stakeable locktime, a UTXO can be used for anything
|
|
4575
|
+
*/
|
|
4258
4576
|
stakeableLocktime?: number;
|
|
4259
4577
|
staked?: boolean;
|
|
4578
|
+
/**
|
|
4579
|
+
* The minimum number of signatures required to spend this UTXO
|
|
4580
|
+
*/
|
|
4260
4581
|
threshold?: number;
|
|
4582
|
+
/**
|
|
4583
|
+
* The hash of the transaction that created this UTXO
|
|
4584
|
+
*/
|
|
4261
4585
|
txHash: string;
|
|
4586
|
+
/**
|
|
4587
|
+
* Timestamp in seconds after which the staked UTXO will be unlocked.
|
|
4588
|
+
*/
|
|
4262
4589
|
utxoEndTimestamp?: number;
|
|
4590
|
+
/**
|
|
4591
|
+
* Timestamp in seconds at which the staked UTXO was locked.
|
|
4592
|
+
*/
|
|
4263
4593
|
utxoStartTimestamp?: number;
|
|
4264
4594
|
utxoType: UtxoType;
|
|
4265
4595
|
};
|
|
@@ -4274,9 +4604,18 @@ type PChainTransaction = {
|
|
|
4274
4604
|
* The block finality timestamp.
|
|
4275
4605
|
*/
|
|
4276
4606
|
blockTimestamp: number;
|
|
4607
|
+
/**
|
|
4608
|
+
* The height of the block in which the transaction was included
|
|
4609
|
+
*/
|
|
4277
4610
|
blockNumber: string;
|
|
4278
4611
|
blockHash: string;
|
|
4612
|
+
/**
|
|
4613
|
+
* The consumed UTXOs of the transaction
|
|
4614
|
+
*/
|
|
4279
4615
|
consumedUtxos: Array<PChainUtxo>;
|
|
4616
|
+
/**
|
|
4617
|
+
* The newly created UTXOs of the transaction
|
|
4618
|
+
*/
|
|
4280
4619
|
emittedUtxos: Array<PChainUtxo>;
|
|
4281
4620
|
/**
|
|
4282
4621
|
* Source chain for an atomic transaction.
|
|
@@ -4287,11 +4626,11 @@ type PChainTransaction = {
|
|
|
4287
4626
|
*/
|
|
4288
4627
|
destinationChain?: string;
|
|
4289
4628
|
/**
|
|
4290
|
-
* A list of objects containing P-chain Asset basic info and the amount of that Asset ID.
|
|
4629
|
+
* A list of objects containing P-chain Asset basic info and the amount of that Asset ID. The amount of nAVAX present in the newly created UTXOs of the transaction
|
|
4291
4630
|
*/
|
|
4292
4631
|
value: Array<AssetAmount>;
|
|
4293
4632
|
/**
|
|
4294
|
-
* A list of objects containing P-chain Asset basic info and the amount of that Asset ID.
|
|
4633
|
+
* A list of objects containing P-chain Asset basic info and the amount of that Asset ID. The nAVAX amount burned in a transaction, partially or fully contributing to the transaction fee
|
|
4295
4634
|
*/
|
|
4296
4635
|
amountBurned: Array<AssetAmount>;
|
|
4297
4636
|
/**
|
|
@@ -4299,7 +4638,7 @@ type PChainTransaction = {
|
|
|
4299
4638
|
*/
|
|
4300
4639
|
amountStaked: Array<AssetAmount>;
|
|
4301
4640
|
/**
|
|
4302
|
-
* A list of objects containing P-chain Asset basic info and the amount of that Asset ID.
|
|
4641
|
+
* A list of objects containing P-chain Asset basic info and the amount of that Asset ID. The amount of nAVAX locked for pay-as-you-go continuous fees to sustain L1 validation.
|
|
4303
4642
|
*/
|
|
4304
4643
|
amountL1ValidatorBalanceBurned: Array<AssetAmount>;
|
|
4305
4644
|
/**
|
|
@@ -4311,11 +4650,11 @@ type PChainTransaction = {
|
|
|
4311
4650
|
*/
|
|
4312
4651
|
endTimestamp?: number;
|
|
4313
4652
|
/**
|
|
4314
|
-
* Present for AddValidatorTx, AddPermissionlessValidatorTx
|
|
4653
|
+
* The percentage of total estimated delegator rewards allocated to validator nodes for supporting delegations. Present for AddValidatorTx, AddPermissionlessValidatorTx
|
|
4315
4654
|
*/
|
|
4316
4655
|
delegationFeePercent?: string;
|
|
4317
4656
|
/**
|
|
4318
|
-
* Present for AddValidatorTx, AddSubnetValidatorTx, RemoveSubnetValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx
|
|
4657
|
+
* The NodeID of the validator node linked to the stake transaction. Present for AddValidatorTx, AddSubnetValidatorTx, RemoveSubnetValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx
|
|
4319
4658
|
*/
|
|
4320
4659
|
nodeId?: string;
|
|
4321
4660
|
/**
|
|
@@ -4331,14 +4670,17 @@ type PChainTransaction = {
|
|
|
4331
4670
|
*/
|
|
4332
4671
|
l1ValidatorDetails?: Array<L1ValidatorDetailsTransaction>;
|
|
4333
4672
|
/**
|
|
4334
|
-
* Present for AddValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx
|
|
4673
|
+
* Estimated reward from the staking transaction, if successful. Present for AddValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx
|
|
4335
4674
|
*/
|
|
4336
4675
|
estimatedReward?: string;
|
|
4676
|
+
/**
|
|
4677
|
+
* Reward transaction hash for the completed validations or delegations
|
|
4678
|
+
*/
|
|
4337
4679
|
rewardTxHash?: string;
|
|
4338
4680
|
rewardAddresses?: Array<string>;
|
|
4339
4681
|
memo?: string;
|
|
4340
4682
|
/**
|
|
4341
|
-
*
|
|
4683
|
+
* Staking transaction corresponding to the RewardValidatorTx
|
|
4342
4684
|
*/
|
|
4343
4685
|
stakingTxHash?: string;
|
|
4344
4686
|
/**
|
|
@@ -4346,7 +4688,7 @@ type PChainTransaction = {
|
|
|
4346
4688
|
*/
|
|
4347
4689
|
subnetOwnershipInfo?: SubnetOwnershipInfo;
|
|
4348
4690
|
/**
|
|
4349
|
-
* Present for AddPermissionlessValidatorTx
|
|
4691
|
+
* Public Key and PoP of new validator registrations. Present for AddPermissionlessValidatorTx
|
|
4350
4692
|
*/
|
|
4351
4693
|
blsCredentials?: BlsCredentials;
|
|
4352
4694
|
};
|
|
@@ -4885,7 +5227,11 @@ declare class SignatureAggregatorService {
|
|
|
4885
5227
|
* @returns SignatureAggregationResponse Successful response
|
|
4886
5228
|
* @throws ApiError
|
|
4887
5229
|
*/
|
|
4888
|
-
aggregateSignatures({ requestBody, }: {
|
|
5230
|
+
aggregateSignatures({ network, requestBody, }: {
|
|
5231
|
+
/**
|
|
5232
|
+
* Either mainnet or testnet/fuji.
|
|
5233
|
+
*/
|
|
5234
|
+
network: Network;
|
|
4889
5235
|
requestBody: SignatureAggregatorRequest;
|
|
4890
5236
|
}): CancelablePromise<SignatureAggregationResponse>;
|
|
4891
5237
|
}
|
|
@@ -5349,6 +5695,7 @@ declare class Glacier {
|
|
|
5349
5695
|
readonly evmTransactions: EvmTransactionsService;
|
|
5350
5696
|
readonly healthCheck: HealthCheckService;
|
|
5351
5697
|
readonly nfTs: NfTsService;
|
|
5698
|
+
readonly notifications: NotificationsService;
|
|
5352
5699
|
readonly operations: OperationsService;
|
|
5353
5700
|
readonly primaryNetwork: PrimaryNetworkService;
|
|
5354
5701
|
readonly primaryNetworkBalances: PrimaryNetworkBalancesService;
|
|
@@ -5512,4 +5859,4 @@ type Unauthorized = {
|
|
|
5512
5859
|
error: string;
|
|
5513
5860
|
};
|
|
5514
5861
|
|
|
5515
|
-
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, PrimaryNetworkService, PrimaryNetworkTransactionsService, PrimaryNetworkTxType, PrimaryNetworkUtxOsService, PrimaryNetworkVerticesService, ProposerDetails, RemovedValidatorDetails, RequestType, ResourceLink, ResourceLinkType, RewardType, Rewards, RichAddress, RpcMetrics, RpcUsageMetricsGroupByEnum,
|
|
5862
|
+
export { AccessRequest, 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, NotificationsResponse, NotificationsService, 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, SubscribeRequest, SubscriptionsRequest, SubscriptionsResponse, TeleporterDestinationTransaction, TeleporterMessageInfo, TeleporterReceipt, TeleporterRewardDetails, TeleporterService, TeleporterSourceTransaction, TimeIntervalGranularityExtended, TooManyRequests, TransactionDetails, TransactionDirectionType, TransactionExportMetadata, TransactionMethodType, TransactionStatus, TransactionVertexDetail, Unauthorized, UnknownContract, UnsubscribeRequest, 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 };
|