@avalabs/glacier-sdk 3.1.0-canary.de1a809.0 → 3.1.0-canary.e7064cc.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 +694 -149
- 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/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/DeliveredIcmMessage.d.ts +31 -0
- package/esm/generated/models/DeliveredIcmMessage.js +1 -0
- package/esm/generated/models/DeliveredSourceNotIndexedIcmMessage.d.ts +29 -0
- package/esm/generated/models/DeliveredSourceNotIndexedIcmMessage.js +1 -0
- 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/IcmDestinationTransaction.d.ts +9 -0
- package/esm/generated/models/IcmReceipt.d.ts +6 -0
- package/esm/generated/models/IcmRewardDetails.d.ts +37 -0
- package/esm/generated/models/IcmRewardDetails.js +1 -0
- package/esm/generated/models/IcmSourceTransaction.d.ts +7 -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/ListIcmMessagesResponse.d.ts +12 -0
- package/esm/generated/models/NativeTransaction.d.ts +4 -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/PendingIcmMessage.d.ts +29 -0
- package/esm/generated/models/PendingIcmMessage.js +1 -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/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 +69 -4
- 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/InterchainMessagingService.d.ts +90 -0
- package/esm/generated/services/InterchainMessagingService.js +1 -0
- package/esm/generated/services/SignatureAggregatorService.d.ts +6 -1
- package/esm/generated/services/SignatureAggregatorService.js +1 -1
- package/esm/generated/services/TeleporterService.d.ts +12 -6
- package/esm/index.d.ts +11 -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
|
*/
|
|
@@ -713,11 +781,22 @@ type Erc20TokenBalance = {
|
|
|
713
781
|
* The monetary value of the balance, if a price is available for the token.
|
|
714
782
|
*/
|
|
715
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;
|
|
716
788
|
};
|
|
717
789
|
declare namespace Erc20TokenBalance {
|
|
718
790
|
enum ercType {
|
|
719
791
|
ERC_20 = "ERC-20"
|
|
720
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
|
+
}
|
|
721
800
|
}
|
|
722
801
|
|
|
723
802
|
type ListErc20BalancesResponse = {
|
|
@@ -725,6 +804,10 @@ type ListErc20BalancesResponse = {
|
|
|
725
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.
|
|
726
805
|
*/
|
|
727
806
|
nextPageToken?: string;
|
|
807
|
+
/**
|
|
808
|
+
* The native token balance for the address.
|
|
809
|
+
*/
|
|
810
|
+
nativeTokenBalance: NativeTokenBalance;
|
|
728
811
|
/**
|
|
729
812
|
* The list of ERC-20 token balances for the address.
|
|
730
813
|
*/
|
|
@@ -736,6 +819,10 @@ type ListErc721BalancesResponse = {
|
|
|
736
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.
|
|
737
820
|
*/
|
|
738
821
|
nextPageToken?: string;
|
|
822
|
+
/**
|
|
823
|
+
* The native token balance for the address.
|
|
824
|
+
*/
|
|
825
|
+
nativeTokenBalance: NativeTokenBalance;
|
|
739
826
|
/**
|
|
740
827
|
* The list of ERC-721 token balances for the address.
|
|
741
828
|
*/
|
|
@@ -914,6 +1001,10 @@ declare class EvmBalancesService {
|
|
|
914
1001
|
}
|
|
915
1002
|
|
|
916
1003
|
type GetEvmBlockResponse = {
|
|
1004
|
+
/**
|
|
1005
|
+
* The EVM chain ID on which the block was created.
|
|
1006
|
+
*/
|
|
1007
|
+
chainId: string;
|
|
917
1008
|
/**
|
|
918
1009
|
* The block number on the chain.
|
|
919
1010
|
*/
|
|
@@ -958,6 +1049,10 @@ type GetEvmBlockResponse = {
|
|
|
958
1049
|
};
|
|
959
1050
|
|
|
960
1051
|
type EvmBlock = {
|
|
1052
|
+
/**
|
|
1053
|
+
* The EVM chain ID on which the block was created.
|
|
1054
|
+
*/
|
|
1055
|
+
chainId: string;
|
|
961
1056
|
/**
|
|
962
1057
|
* The block number on the chain.
|
|
963
1058
|
*/
|
|
@@ -1012,6 +1107,26 @@ type ListEvmBlocksResponse = {
|
|
|
1012
1107
|
declare class EvmBlocksService {
|
|
1013
1108
|
readonly httpRequest: BaseHttpRequest;
|
|
1014
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>;
|
|
1015
1130
|
/**
|
|
1016
1131
|
* List latest blocks
|
|
1017
1132
|
* Lists the latest indexed blocks on the EVM-compatible chain sorted in descending order by block timestamp.
|
|
@@ -1143,19 +1258,136 @@ type ListChainsResponse = {
|
|
|
1143
1258
|
chains: Array<ChainInfo>;
|
|
1144
1259
|
};
|
|
1145
1260
|
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
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"
|
|
1151
1371
|
}
|
|
1152
1372
|
|
|
1153
1373
|
declare class EvmChainsService {
|
|
1154
1374
|
readonly httpRequest: BaseHttpRequest;
|
|
1155
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>;
|
|
1156
1388
|
/**
|
|
1157
1389
|
* List chains
|
|
1158
|
-
* Lists the supported EVM-compatible chains. Filterable by network.
|
|
1390
|
+
* Lists the AvaCloud supported EVM-compatible chains. Filterable by network.
|
|
1159
1391
|
* @returns ListChainsResponse Successful response
|
|
1160
1392
|
* @throws ApiError
|
|
1161
1393
|
*/
|
|
@@ -1171,7 +1403,7 @@ declare class EvmChainsService {
|
|
|
1171
1403
|
}): CancelablePromise<ListChainsResponse>;
|
|
1172
1404
|
/**
|
|
1173
1405
|
* Get chain information
|
|
1174
|
-
* Gets chain information for the EVM-compatible chain if supported by
|
|
1406
|
+
* Gets chain information for the EVM-compatible chain if supported by AvaCloud.
|
|
1175
1407
|
* @returns GetChainResponse Successful response
|
|
1176
1408
|
* @throws ApiError
|
|
1177
1409
|
*/
|
|
@@ -1182,8 +1414,10 @@ declare class EvmChainsService {
|
|
|
1182
1414
|
chainId: string;
|
|
1183
1415
|
}): CancelablePromise<GetChainResponse>;
|
|
1184
1416
|
/**
|
|
1185
|
-
*
|
|
1186
|
-
* 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** .
|
|
1187
1421
|
* @returns ListAddressChainsResponse Successful response
|
|
1188
1422
|
* @throws ApiError
|
|
1189
1423
|
*/
|
|
@@ -1193,6 +1427,54 @@ declare class EvmChainsService {
|
|
|
1193
1427
|
*/
|
|
1194
1428
|
address: string;
|
|
1195
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>;
|
|
1196
1478
|
}
|
|
1197
1479
|
|
|
1198
1480
|
type ImageAsset = {
|
|
@@ -1527,29 +1809,6 @@ declare namespace Erc1155Token {
|
|
|
1527
1809
|
}
|
|
1528
1810
|
}
|
|
1529
1811
|
|
|
1530
|
-
type RichAddress = {
|
|
1531
|
-
/**
|
|
1532
|
-
* The contract name.
|
|
1533
|
-
*/
|
|
1534
|
-
name?: string;
|
|
1535
|
-
/**
|
|
1536
|
-
* The contract symbol.
|
|
1537
|
-
*/
|
|
1538
|
-
symbol?: string;
|
|
1539
|
-
/**
|
|
1540
|
-
* The number of decimals the token uses. For example `6`, means to divide the token amount by `1000000` to get its user representation.
|
|
1541
|
-
*/
|
|
1542
|
-
decimals?: number;
|
|
1543
|
-
/**
|
|
1544
|
-
* The logo uri for the address.
|
|
1545
|
-
*/
|
|
1546
|
-
logoUri?: string;
|
|
1547
|
-
/**
|
|
1548
|
-
* A wallet or contract address in mixed-case checksum encoding.
|
|
1549
|
-
*/
|
|
1550
|
-
address: string;
|
|
1551
|
-
};
|
|
1552
|
-
|
|
1553
1812
|
type Erc1155TransferDetails = {
|
|
1554
1813
|
from: RichAddress;
|
|
1555
1814
|
to: RichAddress;
|
|
@@ -1634,27 +1893,6 @@ type Erc721TransferDetails = {
|
|
|
1634
1893
|
erc721Token: Erc721Token;
|
|
1635
1894
|
};
|
|
1636
1895
|
|
|
1637
|
-
/**
|
|
1638
|
-
* 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.
|
|
1639
|
-
*/
|
|
1640
|
-
declare enum TransactionMethodType {
|
|
1641
|
-
NATIVE_TRANSFER = "NATIVE_TRANSFER",
|
|
1642
|
-
CONTRACT_CALL = "CONTRACT_CALL",
|
|
1643
|
-
CONTRACT_CREATION = "CONTRACT_CREATION"
|
|
1644
|
-
}
|
|
1645
|
-
|
|
1646
|
-
type Method = {
|
|
1647
|
-
callType: TransactionMethodType;
|
|
1648
|
-
/**
|
|
1649
|
-
* The contract method hash identifier. The method hash is only set if the `callType` is `CONTRACT_CALL`.
|
|
1650
|
-
*/
|
|
1651
|
-
methodHash: string;
|
|
1652
|
-
/**
|
|
1653
|
-
* 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'.
|
|
1654
|
-
*/
|
|
1655
|
-
methodName?: string;
|
|
1656
|
-
};
|
|
1657
|
-
|
|
1658
1896
|
type FullNativeTransactionDetails = {
|
|
1659
1897
|
/**
|
|
1660
1898
|
* The block number on the chain.
|
|
@@ -1668,6 +1906,10 @@ type FullNativeTransactionDetails = {
|
|
|
1668
1906
|
* The block hash identifier.
|
|
1669
1907
|
*/
|
|
1670
1908
|
blockHash: string;
|
|
1909
|
+
/**
|
|
1910
|
+
* The EVM chain ID on which the transaction occured.
|
|
1911
|
+
*/
|
|
1912
|
+
chainId: string;
|
|
1671
1913
|
/**
|
|
1672
1914
|
* The index at which the transaction occured in the block (0-indexed).
|
|
1673
1915
|
*/
|
|
@@ -1931,65 +2173,6 @@ type ListInternalTransactionsResponse = {
|
|
|
1931
2173
|
transactions: Array<InternalTransaction>;
|
|
1932
2174
|
};
|
|
1933
2175
|
|
|
1934
|
-
type NativeTransaction = {
|
|
1935
|
-
/**
|
|
1936
|
-
* The block number on the chain.
|
|
1937
|
-
*/
|
|
1938
|
-
blockNumber: string;
|
|
1939
|
-
/**
|
|
1940
|
-
* The block finality timestamp.
|
|
1941
|
-
*/
|
|
1942
|
-
blockTimestamp: number;
|
|
1943
|
-
/**
|
|
1944
|
-
* The block hash identifier.
|
|
1945
|
-
*/
|
|
1946
|
-
blockHash: string;
|
|
1947
|
-
/**
|
|
1948
|
-
* The index at which the transaction occured in the block (0-indexed).
|
|
1949
|
-
*/
|
|
1950
|
-
blockIndex: number;
|
|
1951
|
-
/**
|
|
1952
|
-
* The transaction hash identifier.
|
|
1953
|
-
*/
|
|
1954
|
-
txHash: string;
|
|
1955
|
-
/**
|
|
1956
|
-
* The transaction status, which is either 0 (failed) or 1 (successful).
|
|
1957
|
-
*/
|
|
1958
|
-
txStatus: string;
|
|
1959
|
-
/**
|
|
1960
|
-
* The transaction type.
|
|
1961
|
-
*/
|
|
1962
|
-
txType: number;
|
|
1963
|
-
/**
|
|
1964
|
-
* The gas limit set for the transaction.
|
|
1965
|
-
*/
|
|
1966
|
-
gasLimit: string;
|
|
1967
|
-
/**
|
|
1968
|
-
* The amount of gas used.
|
|
1969
|
-
*/
|
|
1970
|
-
gasUsed: string;
|
|
1971
|
-
/**
|
|
1972
|
-
* The gas price denominated by the number of decimals of the native token.
|
|
1973
|
-
*/
|
|
1974
|
-
gasPrice: string;
|
|
1975
|
-
/**
|
|
1976
|
-
* The nonce used by the sender of the transaction.
|
|
1977
|
-
*/
|
|
1978
|
-
nonce: string;
|
|
1979
|
-
from: RichAddress;
|
|
1980
|
-
to: RichAddress;
|
|
1981
|
-
method?: Method;
|
|
1982
|
-
value: string;
|
|
1983
|
-
};
|
|
1984
|
-
|
|
1985
|
-
type ListNativeTransactionsResponse = {
|
|
1986
|
-
/**
|
|
1987
|
-
* 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.
|
|
1988
|
-
*/
|
|
1989
|
-
nextPageToken?: string;
|
|
1990
|
-
transactions: Array<NativeTransaction>;
|
|
1991
|
-
};
|
|
1992
|
-
|
|
1993
2176
|
type TransactionDetails = {
|
|
1994
2177
|
/**
|
|
1995
2178
|
* The native (top-level) transaction details.
|
|
@@ -2034,14 +2217,33 @@ declare enum SortOrder {
|
|
|
2034
2217
|
DESC = "desc"
|
|
2035
2218
|
}
|
|
2036
2219
|
|
|
2037
|
-
declare enum TransactionStatus {
|
|
2038
|
-
FAILED = "failed",
|
|
2039
|
-
SUCCESS = "success"
|
|
2040
|
-
}
|
|
2041
|
-
|
|
2042
2220
|
declare class EvmTransactionsService {
|
|
2043
2221
|
readonly httpRequest: BaseHttpRequest;
|
|
2044
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>;
|
|
2045
2247
|
/**
|
|
2046
2248
|
* Get deployment transaction
|
|
2047
2249
|
* If the address is a smart contract, returns the transaction in which it was deployed.
|
|
@@ -2340,7 +2542,7 @@ declare class EvmTransactionsService {
|
|
|
2340
2542
|
* @returns ListNativeTransactionsResponse Successful response
|
|
2341
2543
|
* @throws ApiError
|
|
2342
2544
|
*/
|
|
2343
|
-
getTransactionsForBlock({ chainId, blockId, }: {
|
|
2545
|
+
getTransactionsForBlock({ chainId, blockId, pageToken, pageSize, }: {
|
|
2344
2546
|
/**
|
|
2345
2547
|
* A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
|
|
2346
2548
|
*/
|
|
@@ -2349,6 +2551,14 @@ declare class EvmTransactionsService {
|
|
|
2349
2551
|
* A block identifier which is either a block number or the block hash.
|
|
2350
2552
|
*/
|
|
2351
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;
|
|
2352
2562
|
}): CancelablePromise<ListNativeTransactionsResponse>;
|
|
2353
2563
|
/**
|
|
2354
2564
|
* List latest transactions
|
|
@@ -2392,6 +2602,221 @@ declare class HealthCheckService {
|
|
|
2392
2602
|
}>;
|
|
2393
2603
|
}
|
|
2394
2604
|
|
|
2605
|
+
type IcmDestinationTransaction = {
|
|
2606
|
+
txHash: string;
|
|
2607
|
+
timestamp: number;
|
|
2608
|
+
gasSpent: string;
|
|
2609
|
+
rewardRedeemer: string;
|
|
2610
|
+
delivererAddress: string;
|
|
2611
|
+
};
|
|
2612
|
+
|
|
2613
|
+
type IcmReceipt = {
|
|
2614
|
+
receivedMessageNonce: string;
|
|
2615
|
+
relayerRewardAddress: string;
|
|
2616
|
+
};
|
|
2617
|
+
|
|
2618
|
+
type IcmRewardDetails = {
|
|
2619
|
+
/**
|
|
2620
|
+
* A wallet or contract address in mixed-case checksum encoding.
|
|
2621
|
+
*/
|
|
2622
|
+
address: string;
|
|
2623
|
+
/**
|
|
2624
|
+
* The contract name.
|
|
2625
|
+
*/
|
|
2626
|
+
name: string;
|
|
2627
|
+
/**
|
|
2628
|
+
* The contract symbol.
|
|
2629
|
+
*/
|
|
2630
|
+
symbol: string;
|
|
2631
|
+
/**
|
|
2632
|
+
* The number of decimals the token uses. For example `6`, means to divide the token amount by `1000000` to get its user representation.
|
|
2633
|
+
*/
|
|
2634
|
+
decimals: number;
|
|
2635
|
+
/**
|
|
2636
|
+
* The logo uri for the address.
|
|
2637
|
+
*/
|
|
2638
|
+
logoUri?: string;
|
|
2639
|
+
ercType: IcmRewardDetails.ercType;
|
|
2640
|
+
/**
|
|
2641
|
+
* The token price, if available.
|
|
2642
|
+
*/
|
|
2643
|
+
price?: Money;
|
|
2644
|
+
value: string;
|
|
2645
|
+
};
|
|
2646
|
+
declare namespace IcmRewardDetails {
|
|
2647
|
+
enum ercType {
|
|
2648
|
+
ERC_20 = "ERC-20"
|
|
2649
|
+
}
|
|
2650
|
+
}
|
|
2651
|
+
|
|
2652
|
+
type IcmSourceTransaction = {
|
|
2653
|
+
txHash: string;
|
|
2654
|
+
timestamp: number;
|
|
2655
|
+
gasSpent: string;
|
|
2656
|
+
};
|
|
2657
|
+
|
|
2658
|
+
type DeliveredIcmMessage = {
|
|
2659
|
+
messageId: string;
|
|
2660
|
+
icmContractAddress: string;
|
|
2661
|
+
sourceBlockchainId: string;
|
|
2662
|
+
destinationBlockchainId: string;
|
|
2663
|
+
sourceEvmChainId: string;
|
|
2664
|
+
destinationEvmChainId: string;
|
|
2665
|
+
messageNonce: string;
|
|
2666
|
+
from: string;
|
|
2667
|
+
to: string;
|
|
2668
|
+
data?: string;
|
|
2669
|
+
messageExecuted: boolean;
|
|
2670
|
+
receipts: Array<IcmReceipt>;
|
|
2671
|
+
receiptDelivered: boolean;
|
|
2672
|
+
rewardDetails: IcmRewardDetails;
|
|
2673
|
+
sourceTransaction: IcmSourceTransaction;
|
|
2674
|
+
destinationTransaction: IcmDestinationTransaction;
|
|
2675
|
+
status: DeliveredIcmMessage.status;
|
|
2676
|
+
};
|
|
2677
|
+
declare namespace DeliveredIcmMessage {
|
|
2678
|
+
enum status {
|
|
2679
|
+
DELIVERED = "delivered"
|
|
2680
|
+
}
|
|
2681
|
+
}
|
|
2682
|
+
|
|
2683
|
+
type DeliveredSourceNotIndexedIcmMessage = {
|
|
2684
|
+
messageId: string;
|
|
2685
|
+
icmContractAddress: string;
|
|
2686
|
+
sourceBlockchainId: string;
|
|
2687
|
+
destinationBlockchainId: string;
|
|
2688
|
+
sourceEvmChainId: string;
|
|
2689
|
+
destinationEvmChainId: string;
|
|
2690
|
+
messageNonce: string;
|
|
2691
|
+
from: string;
|
|
2692
|
+
to: string;
|
|
2693
|
+
data?: string;
|
|
2694
|
+
messageExecuted: boolean;
|
|
2695
|
+
receipts: Array<IcmReceipt>;
|
|
2696
|
+
receiptDelivered: boolean;
|
|
2697
|
+
rewardDetails: IcmRewardDetails;
|
|
2698
|
+
destinationTransaction: IcmDestinationTransaction;
|
|
2699
|
+
status: DeliveredSourceNotIndexedIcmMessage.status;
|
|
2700
|
+
};
|
|
2701
|
+
declare namespace DeliveredSourceNotIndexedIcmMessage {
|
|
2702
|
+
enum status {
|
|
2703
|
+
DELIVERED_SOURCE_NOT_INDEXED = "delivered_source_not_indexed"
|
|
2704
|
+
}
|
|
2705
|
+
}
|
|
2706
|
+
|
|
2707
|
+
type PendingIcmMessage = {
|
|
2708
|
+
messageId: string;
|
|
2709
|
+
icmContractAddress: string;
|
|
2710
|
+
sourceBlockchainId: string;
|
|
2711
|
+
destinationBlockchainId: string;
|
|
2712
|
+
sourceEvmChainId: string;
|
|
2713
|
+
destinationEvmChainId: string;
|
|
2714
|
+
messageNonce: string;
|
|
2715
|
+
from: string;
|
|
2716
|
+
to: string;
|
|
2717
|
+
data?: string;
|
|
2718
|
+
messageExecuted: boolean;
|
|
2719
|
+
receipts: Array<IcmReceipt>;
|
|
2720
|
+
receiptDelivered: boolean;
|
|
2721
|
+
rewardDetails: IcmRewardDetails;
|
|
2722
|
+
sourceTransaction: IcmSourceTransaction;
|
|
2723
|
+
status: PendingIcmMessage.status;
|
|
2724
|
+
};
|
|
2725
|
+
declare namespace PendingIcmMessage {
|
|
2726
|
+
enum status {
|
|
2727
|
+
PENDING = "pending"
|
|
2728
|
+
}
|
|
2729
|
+
}
|
|
2730
|
+
|
|
2731
|
+
type ListIcmMessagesResponse = {
|
|
2732
|
+
/**
|
|
2733
|
+
* 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.
|
|
2734
|
+
*/
|
|
2735
|
+
nextPageToken?: string;
|
|
2736
|
+
messages: Array<(PendingIcmMessage | DeliveredIcmMessage)>;
|
|
2737
|
+
};
|
|
2738
|
+
|
|
2739
|
+
declare class InterchainMessagingService {
|
|
2740
|
+
readonly httpRequest: BaseHttpRequest;
|
|
2741
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
2742
|
+
/**
|
|
2743
|
+
* Get an ICM message
|
|
2744
|
+
* Gets an ICM message by message ID.
|
|
2745
|
+
* @returns any Successful response
|
|
2746
|
+
* @throws ApiError
|
|
2747
|
+
*/
|
|
2748
|
+
getIcmMessage({ messageId, }: {
|
|
2749
|
+
/**
|
|
2750
|
+
* The message ID of the ICM message.
|
|
2751
|
+
*/
|
|
2752
|
+
messageId: string;
|
|
2753
|
+
}): CancelablePromise<(PendingIcmMessage | DeliveredIcmMessage | DeliveredSourceNotIndexedIcmMessage)>;
|
|
2754
|
+
/**
|
|
2755
|
+
* List ICM messages
|
|
2756
|
+
* Lists ICM messages. Ordered by timestamp in descending order.
|
|
2757
|
+
* @returns ListIcmMessagesResponse Successful response
|
|
2758
|
+
* @throws ApiError
|
|
2759
|
+
*/
|
|
2760
|
+
listIcmMessages({ pageToken, pageSize, sourceBlockchainId, destinationBlockchainId, blockchainId, to, from, network, }: {
|
|
2761
|
+
/**
|
|
2762
|
+
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
2763
|
+
*/
|
|
2764
|
+
pageToken?: string;
|
|
2765
|
+
/**
|
|
2766
|
+
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
2767
|
+
*/
|
|
2768
|
+
pageSize?: number;
|
|
2769
|
+
/**
|
|
2770
|
+
* The base58 encoded blockchain ID or evm chain ID of the source chain that the ICM message was sent from.
|
|
2771
|
+
*/
|
|
2772
|
+
sourceBlockchainId?: string;
|
|
2773
|
+
/**
|
|
2774
|
+
* The base58 encoded blockchain ID or evm chain ID of the destination chain that the ICM message was sent to.
|
|
2775
|
+
*/
|
|
2776
|
+
destinationBlockchainId?: string;
|
|
2777
|
+
/**
|
|
2778
|
+
* The base58 encoded blockchain ID of either source or destination chain that one ICM message interacts with.
|
|
2779
|
+
*/
|
|
2780
|
+
blockchainId?: string;
|
|
2781
|
+
/**
|
|
2782
|
+
* The address of the recipient of the ICM message.
|
|
2783
|
+
*/
|
|
2784
|
+
to?: string;
|
|
2785
|
+
/**
|
|
2786
|
+
* The address of the sender of the ICM message.
|
|
2787
|
+
*/
|
|
2788
|
+
from?: string;
|
|
2789
|
+
/**
|
|
2790
|
+
* Either mainnet or testnet/fuji.
|
|
2791
|
+
*/
|
|
2792
|
+
network?: Network;
|
|
2793
|
+
}): CancelablePromise<ListIcmMessagesResponse>;
|
|
2794
|
+
/**
|
|
2795
|
+
* List ICM messages by address
|
|
2796
|
+
* Lists ICM messages by address. Ordered by timestamp in descending order.
|
|
2797
|
+
* @returns ListIcmMessagesResponse Successful response
|
|
2798
|
+
* @throws ApiError
|
|
2799
|
+
*/
|
|
2800
|
+
listIcmMessagesByAddress({ address, pageToken, pageSize, network, }: {
|
|
2801
|
+
/**
|
|
2802
|
+
* An EVM address.
|
|
2803
|
+
*/
|
|
2804
|
+
address: string;
|
|
2805
|
+
/**
|
|
2806
|
+
* A page token, received from a previous list call. Provide this to retrieve the subsequent page.
|
|
2807
|
+
*/
|
|
2808
|
+
pageToken?: string;
|
|
2809
|
+
/**
|
|
2810
|
+
* The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
|
|
2811
|
+
*/
|
|
2812
|
+
pageSize?: number;
|
|
2813
|
+
/**
|
|
2814
|
+
* Either mainnet or testnet/fuji.
|
|
2815
|
+
*/
|
|
2816
|
+
network?: Network;
|
|
2817
|
+
}): CancelablePromise<ListIcmMessagesResponse>;
|
|
2818
|
+
}
|
|
2819
|
+
|
|
2395
2820
|
type ListNftTokens = {
|
|
2396
2821
|
/**
|
|
2397
2822
|
* 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.
|
|
@@ -2621,16 +3046,31 @@ type DelegatorsDetails = {
|
|
|
2621
3046
|
};
|
|
2622
3047
|
|
|
2623
3048
|
type StakingDistribution = {
|
|
3049
|
+
/**
|
|
3050
|
+
* AvalancheGo version for the validator node.
|
|
3051
|
+
*/
|
|
2624
3052
|
version: string;
|
|
3053
|
+
/**
|
|
3054
|
+
* The total amount staked by validators using this version.
|
|
3055
|
+
*/
|
|
2625
3056
|
amountStaked: string;
|
|
3057
|
+
/**
|
|
3058
|
+
* The number of validators using this version.
|
|
3059
|
+
*/
|
|
2626
3060
|
validatorCount: number;
|
|
2627
3061
|
};
|
|
2628
3062
|
|
|
2629
3063
|
type ValidatorsDetails = {
|
|
2630
3064
|
validatorCount: number;
|
|
2631
3065
|
totalAmountStaked: string;
|
|
3066
|
+
/**
|
|
3067
|
+
* Total potential rewards from currently active validations and delegations.
|
|
3068
|
+
*/
|
|
2632
3069
|
estimatedAnnualStakingReward: string;
|
|
2633
3070
|
stakingDistributionByVersion: Array<StakingDistribution>;
|
|
3071
|
+
/**
|
|
3072
|
+
* Ratio of total active stake amount to the current supply.
|
|
3073
|
+
*/
|
|
2634
3074
|
stakingRatio: string;
|
|
2635
3075
|
};
|
|
2636
3076
|
|
|
@@ -2682,7 +3122,13 @@ type CompletedDelegatorDetails = {
|
|
|
2682
3122
|
delegationFee: string;
|
|
2683
3123
|
startTimestamp: number;
|
|
2684
3124
|
endTimestamp: number;
|
|
3125
|
+
/**
|
|
3126
|
+
* Total rewards distributed for the successful delegation.
|
|
3127
|
+
*/
|
|
2685
3128
|
grossReward: string;
|
|
3129
|
+
/**
|
|
3130
|
+
* Net rewards distributed to the delegator after deducting delegation fee from the gross reward for the successful delegation.
|
|
3131
|
+
*/
|
|
2686
3132
|
netReward: string;
|
|
2687
3133
|
delegationStatus: CompletedDelegatorDetails.delegationStatus;
|
|
2688
3134
|
};
|
|
@@ -2700,7 +3146,13 @@ type PendingDelegatorDetails = {
|
|
|
2700
3146
|
delegationFee: string;
|
|
2701
3147
|
startTimestamp: number;
|
|
2702
3148
|
endTimestamp: number;
|
|
3149
|
+
/**
|
|
3150
|
+
* Estimated total rewards that will be distributed for the successful delegation.
|
|
3151
|
+
*/
|
|
2703
3152
|
estimatedGrossReward: string;
|
|
3153
|
+
/**
|
|
3154
|
+
* Estimated net rewards that will be distributed to the delegator after deducting delegation fee from the gross reward for the successful delegation.
|
|
3155
|
+
*/
|
|
2704
3156
|
estimatedNetReward: string;
|
|
2705
3157
|
delegationStatus: PendingDelegatorDetails.delegationStatus;
|
|
2706
3158
|
};
|
|
@@ -2818,6 +3270,10 @@ type Subnet = {
|
|
|
2818
3270
|
* Whether the subnet is an L1 or not.
|
|
2819
3271
|
*/
|
|
2820
3272
|
isL1: boolean;
|
|
3273
|
+
/**
|
|
3274
|
+
* Transaction hash of ConvertSubnetToL1Tx which converted this Subnet to L1.
|
|
3275
|
+
*/
|
|
3276
|
+
l1ConversionTransactionHash?: string;
|
|
2821
3277
|
/**
|
|
2822
3278
|
* L1 validator manager details.
|
|
2823
3279
|
*/
|
|
@@ -2869,6 +3325,9 @@ type ActiveValidatorDetails = {
|
|
|
2869
3325
|
nodeId: string;
|
|
2870
3326
|
subnetId: string;
|
|
2871
3327
|
amountStaked: string;
|
|
3328
|
+
/**
|
|
3329
|
+
* The percentage of total estimated delegator rewards allocated to validator nodes for supporting delegations.
|
|
3330
|
+
*/
|
|
2872
3331
|
delegationFee?: string;
|
|
2873
3332
|
startTimestamp: number;
|
|
2874
3333
|
endTimestamp: number;
|
|
@@ -2876,12 +3335,30 @@ type ActiveValidatorDetails = {
|
|
|
2876
3335
|
* Present for AddPermissionlessValidatorTx
|
|
2877
3336
|
*/
|
|
2878
3337
|
blsCredentials?: BlsCredentials;
|
|
3338
|
+
/**
|
|
3339
|
+
* The percentage of this validator's stake amount to the total active stake.
|
|
3340
|
+
*/
|
|
2879
3341
|
stakePercentage: number;
|
|
3342
|
+
/**
|
|
3343
|
+
* The number of delegators linked to the validator.
|
|
3344
|
+
*/
|
|
2880
3345
|
delegatorCount: number;
|
|
3346
|
+
/**
|
|
3347
|
+
* The total amount in nAVAX delegated to the validator.
|
|
3348
|
+
*/
|
|
2881
3349
|
amountDelegated?: string;
|
|
3350
|
+
/**
|
|
3351
|
+
* The validator's uptime percentage, as observed by our internal node and measured over time.
|
|
3352
|
+
*/
|
|
2882
3353
|
uptimePerformance: number;
|
|
2883
3354
|
avalancheGoVersion?: string;
|
|
3355
|
+
/**
|
|
3356
|
+
* The amount of stake in nAVAX that can be delegated to this validator.
|
|
3357
|
+
*/
|
|
2884
3358
|
delegationCapacity?: string;
|
|
3359
|
+
/**
|
|
3360
|
+
* Estimated rewards for the validator if the validation is successful.
|
|
3361
|
+
*/
|
|
2885
3362
|
potentialRewards: Rewards;
|
|
2886
3363
|
validationStatus: ActiveValidatorDetails.validationStatus;
|
|
2887
3364
|
validatorHealth: ValidatorHealthDetails;
|
|
@@ -2897,6 +3374,9 @@ type CompletedValidatorDetails = {
|
|
|
2897
3374
|
nodeId: string;
|
|
2898
3375
|
subnetId: string;
|
|
2899
3376
|
amountStaked: string;
|
|
3377
|
+
/**
|
|
3378
|
+
* The percentage of total estimated delegator rewards allocated to validator nodes for supporting delegations.
|
|
3379
|
+
*/
|
|
2900
3380
|
delegationFee?: string;
|
|
2901
3381
|
startTimestamp: number;
|
|
2902
3382
|
endTimestamp: number;
|
|
@@ -2920,6 +3400,9 @@ type PendingValidatorDetails = {
|
|
|
2920
3400
|
nodeId: string;
|
|
2921
3401
|
subnetId: string;
|
|
2922
3402
|
amountStaked: string;
|
|
3403
|
+
/**
|
|
3404
|
+
* The percentage of total estimated delegator rewards allocated to validator nodes for supporting delegations.
|
|
3405
|
+
*/
|
|
2923
3406
|
delegationFee?: string;
|
|
2924
3407
|
startTimestamp: number;
|
|
2925
3408
|
endTimestamp: number;
|
|
@@ -2940,6 +3423,9 @@ type RemovedValidatorDetails = {
|
|
|
2940
3423
|
nodeId: string;
|
|
2941
3424
|
subnetId: string;
|
|
2942
3425
|
amountStaked: string;
|
|
3426
|
+
/**
|
|
3427
|
+
* The percentage of total estimated delegator rewards allocated to validator nodes for supporting delegations.
|
|
3428
|
+
*/
|
|
2943
3429
|
delegationFee?: string;
|
|
2944
3430
|
startTimestamp: number;
|
|
2945
3431
|
endTimestamp: number;
|
|
@@ -2947,7 +3433,13 @@ type RemovedValidatorDetails = {
|
|
|
2947
3433
|
* Present for AddPermissionlessValidatorTx
|
|
2948
3434
|
*/
|
|
2949
3435
|
blsCredentials?: BlsCredentials;
|
|
3436
|
+
/**
|
|
3437
|
+
* The transaction hash that removed the permissioned subnet validator.
|
|
3438
|
+
*/
|
|
2950
3439
|
removeTxHash: string;
|
|
3440
|
+
/**
|
|
3441
|
+
* The timestamp of the transaction that removed the permissioned subnet validator.
|
|
3442
|
+
*/
|
|
2951
3443
|
removeTimestamp: number;
|
|
2952
3444
|
validationStatus: RemovedValidatorDetails.validationStatus;
|
|
2953
3445
|
};
|
|
@@ -4104,7 +4596,7 @@ type L1ValidatorDetailsTransaction = {
|
|
|
4104
4596
|
*/
|
|
4105
4597
|
remainingBalance: number;
|
|
4106
4598
|
/**
|
|
4107
|
-
* 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
|
|
4599
|
+
* 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
|
|
4108
4600
|
*/
|
|
4109
4601
|
balanceChange?: number;
|
|
4110
4602
|
blsCredentials?: Record<string, any>;
|
|
@@ -4134,6 +4626,9 @@ declare enum PChainTransactionType {
|
|
|
4134
4626
|
UNKNOWN = "UNKNOWN"
|
|
4135
4627
|
}
|
|
4136
4628
|
|
|
4629
|
+
/**
|
|
4630
|
+
* Indicates whether the UTXO is staked or transferable
|
|
4631
|
+
*/
|
|
4137
4632
|
declare enum UtxoType {
|
|
4138
4633
|
STAKE = "STAKE",
|
|
4139
4634
|
TRANSFER = "TRANSFER"
|
|
@@ -4171,16 +4666,43 @@ type PChainUtxo = {
|
|
|
4171
4666
|
assetId: string;
|
|
4172
4667
|
blockNumber: string;
|
|
4173
4668
|
blockTimestamp: number;
|
|
4669
|
+
/**
|
|
4670
|
+
* Block height in which the transaction consuming this UTXO was included
|
|
4671
|
+
*/
|
|
4174
4672
|
consumingBlockNumber?: string;
|
|
4673
|
+
/**
|
|
4674
|
+
* Timestamp in seconds at which this UTXO is used in a consuming transaction
|
|
4675
|
+
*/
|
|
4175
4676
|
consumingBlockTimestamp?: number;
|
|
4677
|
+
/**
|
|
4678
|
+
* Timestamp in seconds after which this UTXO can be consumed
|
|
4679
|
+
*/
|
|
4176
4680
|
platformLocktime?: number;
|
|
4681
|
+
/**
|
|
4682
|
+
* The index of the UTXO in the transaction
|
|
4683
|
+
*/
|
|
4177
4684
|
outputIndex: number;
|
|
4178
4685
|
rewardType?: RewardType;
|
|
4686
|
+
/**
|
|
4687
|
+
* Timestamp in seconds before which a UTXO can only be used for staking transactions. After stakeable locktime, a UTXO can be used for anything
|
|
4688
|
+
*/
|
|
4179
4689
|
stakeableLocktime?: number;
|
|
4180
4690
|
staked?: boolean;
|
|
4691
|
+
/**
|
|
4692
|
+
* The minimum number of signatures required to spend this UTXO
|
|
4693
|
+
*/
|
|
4181
4694
|
threshold?: number;
|
|
4695
|
+
/**
|
|
4696
|
+
* The hash of the transaction that created this UTXO
|
|
4697
|
+
*/
|
|
4182
4698
|
txHash: string;
|
|
4699
|
+
/**
|
|
4700
|
+
* Timestamp in seconds after which the staked UTXO will be unlocked.
|
|
4701
|
+
*/
|
|
4183
4702
|
utxoEndTimestamp?: number;
|
|
4703
|
+
/**
|
|
4704
|
+
* Timestamp in seconds at which the staked UTXO was locked.
|
|
4705
|
+
*/
|
|
4184
4706
|
utxoStartTimestamp?: number;
|
|
4185
4707
|
utxoType: UtxoType;
|
|
4186
4708
|
};
|
|
@@ -4195,9 +4717,18 @@ type PChainTransaction = {
|
|
|
4195
4717
|
* The block finality timestamp.
|
|
4196
4718
|
*/
|
|
4197
4719
|
blockTimestamp: number;
|
|
4720
|
+
/**
|
|
4721
|
+
* The height of the block in which the transaction was included
|
|
4722
|
+
*/
|
|
4198
4723
|
blockNumber: string;
|
|
4199
4724
|
blockHash: string;
|
|
4725
|
+
/**
|
|
4726
|
+
* The consumed UTXOs of the transaction
|
|
4727
|
+
*/
|
|
4200
4728
|
consumedUtxos: Array<PChainUtxo>;
|
|
4729
|
+
/**
|
|
4730
|
+
* The newly created UTXOs of the transaction
|
|
4731
|
+
*/
|
|
4201
4732
|
emittedUtxos: Array<PChainUtxo>;
|
|
4202
4733
|
/**
|
|
4203
4734
|
* Source chain for an atomic transaction.
|
|
@@ -4208,11 +4739,11 @@ type PChainTransaction = {
|
|
|
4208
4739
|
*/
|
|
4209
4740
|
destinationChain?: string;
|
|
4210
4741
|
/**
|
|
4211
|
-
* A list of objects containing P-chain Asset basic info and the amount of that Asset ID.
|
|
4742
|
+
* 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
|
|
4212
4743
|
*/
|
|
4213
4744
|
value: Array<AssetAmount>;
|
|
4214
4745
|
/**
|
|
4215
|
-
* A list of objects containing P-chain Asset basic info and the amount of that Asset ID.
|
|
4746
|
+
* 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
|
|
4216
4747
|
*/
|
|
4217
4748
|
amountBurned: Array<AssetAmount>;
|
|
4218
4749
|
/**
|
|
@@ -4220,7 +4751,7 @@ type PChainTransaction = {
|
|
|
4220
4751
|
*/
|
|
4221
4752
|
amountStaked: Array<AssetAmount>;
|
|
4222
4753
|
/**
|
|
4223
|
-
* A list of objects containing P-chain Asset basic info and the amount of that Asset ID.
|
|
4754
|
+
* 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.
|
|
4224
4755
|
*/
|
|
4225
4756
|
amountL1ValidatorBalanceBurned: Array<AssetAmount>;
|
|
4226
4757
|
/**
|
|
@@ -4232,11 +4763,11 @@ type PChainTransaction = {
|
|
|
4232
4763
|
*/
|
|
4233
4764
|
endTimestamp?: number;
|
|
4234
4765
|
/**
|
|
4235
|
-
* Present for AddValidatorTx, AddPermissionlessValidatorTx
|
|
4766
|
+
* The percentage of total estimated delegator rewards allocated to validator nodes for supporting delegations. Present for AddValidatorTx, AddPermissionlessValidatorTx
|
|
4236
4767
|
*/
|
|
4237
4768
|
delegationFeePercent?: string;
|
|
4238
4769
|
/**
|
|
4239
|
-
* Present for AddValidatorTx, AddSubnetValidatorTx, RemoveSubnetValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx
|
|
4770
|
+
* The NodeID of the validator node linked to the stake transaction. Present for AddValidatorTx, AddSubnetValidatorTx, RemoveSubnetValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx
|
|
4240
4771
|
*/
|
|
4241
4772
|
nodeId?: string;
|
|
4242
4773
|
/**
|
|
@@ -4252,14 +4783,17 @@ type PChainTransaction = {
|
|
|
4252
4783
|
*/
|
|
4253
4784
|
l1ValidatorDetails?: Array<L1ValidatorDetailsTransaction>;
|
|
4254
4785
|
/**
|
|
4255
|
-
* Present for AddValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx
|
|
4786
|
+
* Estimated reward from the staking transaction, if successful. Present for AddValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx
|
|
4256
4787
|
*/
|
|
4257
4788
|
estimatedReward?: string;
|
|
4789
|
+
/**
|
|
4790
|
+
* Reward transaction hash for the completed validations or delegations
|
|
4791
|
+
*/
|
|
4258
4792
|
rewardTxHash?: string;
|
|
4259
4793
|
rewardAddresses?: Array<string>;
|
|
4260
4794
|
memo?: string;
|
|
4261
4795
|
/**
|
|
4262
|
-
*
|
|
4796
|
+
* Staking transaction corresponding to the RewardValidatorTx
|
|
4263
4797
|
*/
|
|
4264
4798
|
stakingTxHash?: string;
|
|
4265
4799
|
/**
|
|
@@ -4267,7 +4801,7 @@ type PChainTransaction = {
|
|
|
4267
4801
|
*/
|
|
4268
4802
|
subnetOwnershipInfo?: SubnetOwnershipInfo;
|
|
4269
4803
|
/**
|
|
4270
|
-
* Present for AddPermissionlessValidatorTx
|
|
4804
|
+
* Public Key and PoP of new validator registrations. Present for AddPermissionlessValidatorTx
|
|
4271
4805
|
*/
|
|
4272
4806
|
blsCredentials?: BlsCredentials;
|
|
4273
4807
|
};
|
|
@@ -4806,7 +5340,11 @@ declare class SignatureAggregatorService {
|
|
|
4806
5340
|
* @returns SignatureAggregationResponse Successful response
|
|
4807
5341
|
* @throws ApiError
|
|
4808
5342
|
*/
|
|
4809
|
-
aggregateSignatures({ requestBody, }: {
|
|
5343
|
+
aggregateSignatures({ network, requestBody, }: {
|
|
5344
|
+
/**
|
|
5345
|
+
* Either mainnet or testnet/fuji.
|
|
5346
|
+
*/
|
|
5347
|
+
network: Network;
|
|
4810
5348
|
requestBody: SignatureAggregatorRequest;
|
|
4811
5349
|
}): CancelablePromise<SignatureAggregationResponse>;
|
|
4812
5350
|
}
|
|
@@ -4949,8 +5487,10 @@ declare class TeleporterService {
|
|
|
4949
5487
|
readonly httpRequest: BaseHttpRequest;
|
|
4950
5488
|
constructor(httpRequest: BaseHttpRequest);
|
|
4951
5489
|
/**
|
|
4952
|
-
*
|
|
4953
|
-
* Gets a teleporter message by message ID.
|
|
5490
|
+
* @deprecated
|
|
5491
|
+
* **[Deprecated]** Gets a teleporter message by message ID.
|
|
5492
|
+
*
|
|
5493
|
+
* ⚠️ **This operation will be removed in a future release. Please use /v1/icm/messages/:messageId endpoint instead** .
|
|
4954
5494
|
* @returns any Successful response
|
|
4955
5495
|
* @throws ApiError
|
|
4956
5496
|
*/
|
|
@@ -4961,8 +5501,10 @@ declare class TeleporterService {
|
|
|
4961
5501
|
messageId: string;
|
|
4962
5502
|
}): CancelablePromise<(PendingTeleporterMessage | DeliveredTeleporterMessage | DeliveredSourceNotIndexedTeleporterMessage)>;
|
|
4963
5503
|
/**
|
|
4964
|
-
*
|
|
4965
|
-
* Lists teleporter messages. Ordered by timestamp in
|
|
5504
|
+
* @deprecated
|
|
5505
|
+
* **[Deprecated]** Lists teleporter messages. Ordered by timestamp in descending order.
|
|
5506
|
+
*
|
|
5507
|
+
* ⚠️ **This operation will be removed in a future release. Please use /v1/icm/messages endpoint instead** .
|
|
4966
5508
|
* @returns ListTeleporterMessagesResponse Successful response
|
|
4967
5509
|
* @throws ApiError
|
|
4968
5510
|
*/
|
|
@@ -5001,8 +5543,10 @@ declare class TeleporterService {
|
|
|
5001
5543
|
network?: Network;
|
|
5002
5544
|
}): CancelablePromise<ListTeleporterMessagesResponse>;
|
|
5003
5545
|
/**
|
|
5004
|
-
*
|
|
5005
|
-
* Lists teleporter messages by address. Ordered by
|
|
5546
|
+
* @deprecated
|
|
5547
|
+
* **[Deprecated]** Lists teleporter messages by address. Ordered by timestamp in descending order.
|
|
5548
|
+
*
|
|
5549
|
+
* ⚠️ **This operation will be removed in a future release. Please use /v1/icm/addresses/:address/messages endpoint instead** .
|
|
5006
5550
|
* @returns ListTeleporterMessagesResponse Successful response
|
|
5007
5551
|
* @throws ApiError
|
|
5008
5552
|
*/
|
|
@@ -5269,6 +5813,7 @@ declare class Glacier {
|
|
|
5269
5813
|
readonly evmContracts: EvmContractsService;
|
|
5270
5814
|
readonly evmTransactions: EvmTransactionsService;
|
|
5271
5815
|
readonly healthCheck: HealthCheckService;
|
|
5816
|
+
readonly interchainMessaging: InterchainMessagingService;
|
|
5272
5817
|
readonly nfTs: NfTsService;
|
|
5273
5818
|
readonly operations: OperationsService;
|
|
5274
5819
|
readonly primaryNetwork: PrimaryNetworkService;
|
|
@@ -5433,4 +5978,4 @@ type Unauthorized = {
|
|
|
5433
5978
|
error: string;
|
|
5434
5979
|
};
|
|
5435
5980
|
|
|
5436
|
-
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,
|
|
5981
|
+
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, DeliveredIcmMessage, DeliveredSourceNotIndexedIcmMessage, 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, IcmDestinationTransaction, IcmReceipt, IcmRewardDetails, IcmSourceTransaction, ImageAsset, InterchainMessagingService, InternalServerError, InternalTransaction, InternalTransactionDetails, InternalTransactionOpCall, L1ValidatorDetailsFull, L1ValidatorDetailsTransaction, L1ValidatorManagerDetails, ListAddressChainsResponse, ListBlockchainsResponse, ListCChainAtomicBalancesResponse, ListCChainAtomicTransactionsResponse, ListChainsResponse, ListCollectibleBalancesResponse, ListContractsResponse, ListDelegatorDetailsResponse, ListErc1155BalancesResponse, ListErc1155TransactionsResponse, ListErc20BalancesResponse, ListErc20TransactionsResponse, ListErc721BalancesResponse, ListErc721TransactionsResponse, ListEvmBlocksResponse, ListHistoricalRewardsResponse, ListIcmMessagesResponse, 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, PendingIcmMessage, 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 };
|