@avalabs/glacier-sdk 3.1.0-canary.3d0fcb3.0 → 3.1.0-canary.3d27bb6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/dist/index.cjs +1 -1
  2. package/dist/index.d.ts +571 -29
  3. package/esm/generated/Glacier.js +1 -1
  4. package/esm/generated/core/CancelablePromise.js +1 -1
  5. package/esm/generated/core/OpenAPI.js +1 -1
  6. package/esm/generated/core/request.js +1 -1
  7. package/esm/generated/models/AvaxSupplyResponse.d.ts +48 -0
  8. package/esm/generated/models/Blockchain.d.ts +5 -3
  9. package/esm/generated/models/BlockchainInfo.d.ts +3 -1
  10. package/esm/generated/models/Erc1155Transfer.d.ts +5 -1
  11. package/esm/generated/models/Erc20Transfer.d.ts +5 -1
  12. package/esm/generated/models/Erc721Transfer.d.ts +5 -1
  13. package/esm/generated/models/EvmBlock.d.ts +9 -1
  14. package/esm/generated/models/EvmGenesisAllocDto.d.ts +16 -0
  15. package/esm/generated/models/EvmGenesisAllowListConfigDto.d.ts +20 -0
  16. package/esm/generated/models/EvmGenesisConfigDto.d.ts +96 -0
  17. package/esm/generated/models/EvmGenesisDto.d.ts +75 -0
  18. package/esm/generated/models/EvmGenesisFeeConfigDto.d.ts +36 -0
  19. package/esm/generated/models/EvmGenesisWarpConfigDto.d.ts +16 -0
  20. package/esm/generated/models/FullNativeTransactionDetails.d.ts +9 -1
  21. package/esm/generated/models/GetEvmBlockResponse.d.ts +9 -1
  22. package/esm/generated/models/InternalTransaction.d.ts +5 -1
  23. package/esm/generated/models/LastActivityTimestamp.d.ts +29 -0
  24. package/esm/generated/models/NativeTransaction.d.ts +9 -1
  25. package/esm/generated/models/PChainTransaction.d.ts +1 -1
  26. package/esm/generated/models/PChainUtxo.d.ts +4 -0
  27. package/esm/generated/models/PrimaryNetworkAddressesBodyDto.d.ts +8 -0
  28. package/esm/generated/models/SignatureAggregatorRequest.d.ts +21 -1
  29. package/esm/generated/models/Utxo.d.ts +4 -0
  30. package/esm/generated/models/UtxosSortByOption.d.ts +6 -0
  31. package/esm/generated/models/UtxosSortByOption.js +1 -0
  32. package/esm/generated/services/AvaxSupplyService.d.ts +3 -2
  33. package/esm/generated/services/EvmBlocksService.d.ts +1 -1
  34. package/esm/generated/services/EvmChainsService.d.ts +1 -1
  35. package/esm/generated/services/EvmTransactionsService.d.ts +40 -1
  36. package/esm/generated/services/EvmTransactionsService.js +1 -1
  37. package/esm/generated/services/HealthCheckService.d.ts +9 -2
  38. package/esm/generated/services/HealthCheckService.js +1 -1
  39. package/esm/generated/services/PrimaryNetworkUtxOsService.d.ts +94 -1
  40. package/esm/generated/services/PrimaryNetworkUtxOsService.js +1 -1
  41. package/esm/index.d.ts +10 -0
  42. package/esm/index.js +1 -1
  43. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -54,16 +54,63 @@ declare abstract class BaseHttpRequest {
54
54
  abstract request<T>(options: ApiRequestOptions): CancelablePromise<T>;
55
55
  }
56
56
 
57
+ type AvaxSupplyResponse = {
58
+ /**
59
+ * The circulating supply of AVAX.
60
+ */
61
+ circulatingSupply: string;
62
+ /**
63
+ * The total supply of AVAX.
64
+ */
65
+ totalSupply: string;
66
+ /**
67
+ * Represents the total amount of AVAX burned on the P-Chain. This value includes AVAX lost when the sum of input UTXOs exceeds the sum of output UTXOs—potentially by more than the expected transaction fee, such as in malformed or improperly constructed transactions—as well as all L1 validator fees that have been burned to date.
68
+ */
69
+ totalPBurned: string;
70
+ /**
71
+ * Represents the total amount of AVAX burned on the C-Chain. This value includes the total amount of AVAX burned on the C-Chain in evm txns and the total amount of AVAX burned on the C-Chain in atomic txns.
72
+ */
73
+ totalCBurned: string;
74
+ /**
75
+ * The total X-chain burned fees of AVAX.
76
+ */
77
+ totalXBurned: string;
78
+ /**
79
+ * The total staked AVAX.
80
+ */
81
+ totalStaked: string;
82
+ /**
83
+ * The total locked AVAX.
84
+ */
85
+ totalLocked: string;
86
+ /**
87
+ * The total rewards AVAX.
88
+ */
89
+ totalRewards: string;
90
+ /**
91
+ * The last updated time of the AVAX supply.
92
+ */
93
+ lastUpdated: string;
94
+ /**
95
+ * The genesis unlock amount of the AVAX supply.
96
+ */
97
+ genesisUnlock: string;
98
+ /**
99
+ * The total L1 validator fees of AVAX.
100
+ */
101
+ l1ValidatorFees: string;
102
+ };
103
+
57
104
  declare class AvaxSupplyService {
58
105
  readonly httpRequest: BaseHttpRequest;
59
106
  constructor(httpRequest: BaseHttpRequest);
60
107
  /**
61
108
  * Get AVAX supply information
62
109
  * Get AVAX supply information that includes total supply, circulating supply, total p burned, total c burned, total x burned, total staked, total locked, total rewards, and last updated.
63
- * @returns void
110
+ * @returns AvaxSupplyResponse Successful response
64
111
  * @throws ApiError
65
112
  */
66
- getAvaxSupply(): CancelablePromise<void>;
113
+ getAvaxSupply(): CancelablePromise<AvaxSupplyResponse>;
67
114
  }
68
115
 
69
116
  type LogsFormatMetadata = {
@@ -1104,9 +1151,17 @@ type GetEvmBlockResponse = {
1104
1151
  */
1105
1152
  blockNumber: string;
1106
1153
  /**
1107
- * The block finality timestamp.
1154
+ * The block creation (proposal) timestamp in seconds
1108
1155
  */
1109
1156
  blockTimestamp: number;
1157
+ /**
1158
+ * The block creation (proposal) timestamp in milliseconds. Available only after Granite upgrade.
1159
+ */
1160
+ blockTimestampMilliseconds?: number;
1161
+ /**
1162
+ * Minimum block delay in milliseconds. Available only after Granite upgrade.
1163
+ */
1164
+ blockMinDelayExcess?: number;
1110
1165
  /**
1111
1166
  * The block hash identifier.
1112
1167
  */
@@ -1152,9 +1207,17 @@ type EvmBlock = {
1152
1207
  */
1153
1208
  blockNumber: string;
1154
1209
  /**
1155
- * The block finality timestamp.
1210
+ * The block creation (proposal) timestamp in seconds
1156
1211
  */
1157
1212
  blockTimestamp: number;
1213
+ /**
1214
+ * The block creation (proposal) timestamp in milliseconds. Available only after Granite upgrade.
1215
+ */
1216
+ blockTimestampMilliseconds?: number;
1217
+ /**
1218
+ * Minimum block delay in milliseconds. Available only after Granite upgrade.
1219
+ */
1220
+ blockMinDelayExcess?: number;
1158
1221
  /**
1159
1222
  * The block hash identifier.
1160
1223
  */
@@ -1203,7 +1266,7 @@ declare class EvmBlocksService {
1203
1266
  constructor(httpRequest: BaseHttpRequest);
1204
1267
  /**
1205
1268
  * List latest blocks across all supported EVM chains
1206
- * Lists the most recent blocks from all supported EVM-compatible chains. The results can be filtered by network.
1269
+ * Lists the most recent blocks from all supported EVM-compatible chains. The results can be filtered by network.
1207
1270
  * @returns ListEvmBlocksResponse Successful response
1208
1271
  * @throws ApiError
1209
1272
  */
@@ -1402,9 +1465,17 @@ type NativeTransaction = {
1402
1465
  */
1403
1466
  blockNumber: string;
1404
1467
  /**
1405
- * The block finality timestamp.
1468
+ * The block creation (proposal) timestamp in seconds
1406
1469
  */
1407
1470
  blockTimestamp: number;
1471
+ /**
1472
+ * The block creation (proposal) timestamp in milliseconds. Available only after Granite upgrade.
1473
+ */
1474
+ blockTimestampMilliseconds?: number;
1475
+ /**
1476
+ * Minimum block delay in milliseconds. Available only after Granite upgrade.
1477
+ */
1478
+ blockMinDelayExcess?: number;
1408
1479
  /**
1409
1480
  * The block hash identifier.
1410
1481
  */
@@ -1469,7 +1540,7 @@ declare class EvmChainsService {
1469
1540
  constructor(httpRequest: BaseHttpRequest);
1470
1541
  /**
1471
1542
  * List all chains associated with a given address
1472
- * 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.
1543
+ * 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.
1473
1544
  * @returns ListAddressChainsResponse Successful response
1474
1545
  * @throws ApiError
1475
1546
  */
@@ -1993,9 +2064,17 @@ type FullNativeTransactionDetails = {
1993
2064
  */
1994
2065
  blockNumber: string;
1995
2066
  /**
1996
- * The block finality timestamp.
2067
+ * The block creation (proposal) timestamp in seconds
1997
2068
  */
1998
2069
  blockTimestamp: number;
2070
+ /**
2071
+ * The block creation (proposal) timestamp in milliseconds. Available only after Granite upgrade.
2072
+ */
2073
+ blockTimestampMilliseconds?: number;
2074
+ /**
2075
+ * Minimum block delay in milliseconds. Available only after Granite upgrade.
2076
+ */
2077
+ blockMinDelayExcess?: number;
1999
2078
  /**
2000
2079
  * The block hash identifier.
2001
2080
  */
@@ -2142,9 +2221,13 @@ type Erc1155Transfer = {
2142
2221
  */
2143
2222
  blockNumber: string;
2144
2223
  /**
2145
- * The block finality timestamp.
2224
+ * The block creation (proposal) timestamp in seconds
2146
2225
  */
2147
2226
  blockTimestamp: number;
2227
+ /**
2228
+ * The block creation (proposal) timestamp in milliseconds. Available only after Granite upgrade.
2229
+ */
2230
+ blockTimestampMilliseconds?: number;
2148
2231
  /**
2149
2232
  * The block hash identifier.
2150
2233
  */
@@ -2174,9 +2257,13 @@ type Erc20Transfer = {
2174
2257
  */
2175
2258
  blockNumber: string;
2176
2259
  /**
2177
- * The block finality timestamp.
2260
+ * The block creation (proposal) timestamp in seconds
2178
2261
  */
2179
2262
  blockTimestamp: number;
2263
+ /**
2264
+ * The block creation (proposal) timestamp in milliseconds. Available only after Granite upgrade.
2265
+ */
2266
+ blockTimestampMilliseconds?: number;
2180
2267
  /**
2181
2268
  * The block hash identifier.
2182
2269
  */
@@ -2206,9 +2293,13 @@ type Erc721Transfer = {
2206
2293
  */
2207
2294
  blockNumber: string;
2208
2295
  /**
2209
- * The block finality timestamp.
2296
+ * The block creation (proposal) timestamp in seconds
2210
2297
  */
2211
2298
  blockTimestamp: number;
2299
+ /**
2300
+ * The block creation (proposal) timestamp in milliseconds. Available only after Granite upgrade.
2301
+ */
2302
+ blockTimestampMilliseconds?: number;
2212
2303
  /**
2213
2304
  * The block hash identifier.
2214
2305
  */
@@ -2237,9 +2328,13 @@ type InternalTransaction = {
2237
2328
  */
2238
2329
  blockNumber: string;
2239
2330
  /**
2240
- * The block finality timestamp.
2331
+ * The block creation (proposal) timestamp in seconds
2241
2332
  */
2242
2333
  blockTimestamp: number;
2334
+ /**
2335
+ * The block creation (proposal) timestamp in milliseconds. Available only after Granite upgrade.
2336
+ */
2337
+ blockTimestampMilliseconds?: number;
2243
2338
  /**
2244
2339
  * The block hash identifier.
2245
2340
  */
@@ -2317,7 +2412,7 @@ declare class EvmTransactionsService {
2317
2412
  constructor(httpRequest: BaseHttpRequest);
2318
2413
  /**
2319
2414
  * List the latest transactions across all supported EVM chains
2320
- * Lists the most recent transactions from all supported EVM-compatible chains. The results can be filtered based on transaction status.
2415
+ * Lists the most recent transactions from all supported EVM-compatible chains. The results can be filtered based on transaction status.
2321
2416
  * @returns ListNativeTransactionsResponse Successful response
2322
2417
  * @throws ApiError
2323
2418
  */
@@ -2453,6 +2548,45 @@ declare class EvmTransactionsService {
2453
2548
  */
2454
2549
  sortOrder?: SortOrder;
2455
2550
  }): CancelablePromise<ListTransactionDetailsResponse>;
2551
+ /**
2552
+ * List transactions v2
2553
+ * Returns a list of transactions where the given wallet address had an on-chain interaction for the given chain. The ERC-20 transfers (with token reputation), ERC-721 transfers, ERC-1155, and internal transactions returned are only those where the input address had an interaction. Specifically, those lists only inlcude entries where the input address was the sender (`from` field) or the receiver (`to` field) for the sub-transaction. Therefore the transactions returned from this list may not be complete representations of the on-chain data. For a complete view of a transaction use the `/chains/:chainId/transactions/:txHash` endpoint.
2554
+ *
2555
+ * Filterable by block ranges.
2556
+ * @returns ListTransactionDetailsResponse Successful response
2557
+ * @throws ApiError
2558
+ */
2559
+ listTransactionsV2({ chainId, address, pageToken, pageSize, startBlock, endBlock, filterSpamTokens, sortOrder, }: {
2560
+ /**
2561
+ * A supported evm chain id or blockchain id. Use the `/chains` endpoint to get a list of supported chain ids.
2562
+ */
2563
+ chainId: string;
2564
+ /**
2565
+ * A wallet address.
2566
+ */
2567
+ address: string;
2568
+ /**
2569
+ * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
2570
+ */
2571
+ pageToken?: string;
2572
+ /**
2573
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
2574
+ */
2575
+ pageSize?: number;
2576
+ /**
2577
+ * The block range start number, inclusive. If endBlock is not defined when startBlock is defined, the end of the range will be the most recent block.
2578
+ */
2579
+ startBlock?: number;
2580
+ /**
2581
+ * The block range end number, exclusive. If startBlock is not defined when endBlock is defined, the start of the range will be the genesis block.
2582
+ */
2583
+ endBlock?: number;
2584
+ filterSpamTokens?: boolean;
2585
+ /**
2586
+ * The order by which to sort results. Use "asc" for ascending order, "desc" for descending order. Sorted by timestamp or the `sortBy` query parameter, if provided.
2587
+ */
2588
+ sortOrder?: SortOrder;
2589
+ }): CancelablePromise<ListTransactionDetailsResponse>;
2456
2590
  /**
2457
2591
  * List native transactions
2458
2592
  * Lists native transactions for an address. Filterable by block range.
@@ -2716,11 +2850,18 @@ declare class HealthCheckService {
2716
2850
  constructor(httpRequest: BaseHttpRequest);
2717
2851
  /**
2718
2852
  * Get the health of the service
2719
- * Check the health of the service.
2720
- * @returns HealthCheckResultDto The health of the service
2853
+ * Check the health of the service. This checks the read and write health of the database and cache.
2854
+ * @returns HealthCheckResultDto The health of the service. This checks the read and write health of the database and cache.
2721
2855
  * @throws ApiError
2722
2856
  */
2723
2857
  dataHealthCheck(): CancelablePromise<HealthCheckResultDto>;
2858
+ /**
2859
+ * Get the liveliness of the service (reads only)
2860
+ * Check the liveliness of the service (reads only).
2861
+ * @returns HealthCheckResultDto The liveliness of the service (reads only)
2862
+ * @throws ApiError
2863
+ */
2864
+ liveCheck(): CancelablePromise<HealthCheckResultDto>;
2724
2865
  }
2725
2866
 
2726
2867
  type IcmDestinationTransaction = {
@@ -3238,6 +3379,252 @@ declare class OperationsService {
3238
3379
  }): CancelablePromise<OperationStatusResponse>;
3239
3380
  }
3240
3381
 
3382
+ type EvmGenesisAllocDto = {
3383
+ /**
3384
+ * Account balance in hex format
3385
+ */
3386
+ balance?: string;
3387
+ /**
3388
+ * Contract bytecode in hex format
3389
+ */
3390
+ code?: string;
3391
+ /**
3392
+ * Contract storage slots
3393
+ */
3394
+ storage?: Record<string, string>;
3395
+ };
3396
+
3397
+ type EvmGenesisAllowListConfigDto = {
3398
+ /**
3399
+ * Block timestamp
3400
+ */
3401
+ blockTimestamp?: number;
3402
+ /**
3403
+ * Admin addresses
3404
+ */
3405
+ adminAddresses?: Array<string>;
3406
+ /**
3407
+ * Manager addresses
3408
+ */
3409
+ managerAddresses?: Array<string>;
3410
+ /**
3411
+ * Enabled addresses
3412
+ */
3413
+ enabledAddresses?: Array<string>;
3414
+ };
3415
+
3416
+ type EvmGenesisFeeConfigDto = {
3417
+ /**
3418
+ * Base fee change denominator
3419
+ */
3420
+ baseFeeChangeDenominator?: number;
3421
+ /**
3422
+ * Block gas cost step
3423
+ */
3424
+ blockGasCostStep?: number;
3425
+ /**
3426
+ * Gas limit
3427
+ */
3428
+ gasLimit?: number;
3429
+ /**
3430
+ * Maximum block gas cost
3431
+ */
3432
+ maxBlockGasCost?: number;
3433
+ /**
3434
+ * Minimum base fee
3435
+ */
3436
+ minBaseFee?: number;
3437
+ /**
3438
+ * Minimum block gas cost
3439
+ */
3440
+ minBlockGasCost?: number;
3441
+ /**
3442
+ * Target block rate
3443
+ */
3444
+ targetBlockRate?: number;
3445
+ /**
3446
+ * Target gas
3447
+ */
3448
+ targetGas?: number;
3449
+ };
3450
+
3451
+ type EvmGenesisWarpConfigDto = {
3452
+ /**
3453
+ * Block timestamp
3454
+ */
3455
+ blockTimestamp?: number;
3456
+ /**
3457
+ * Quorum numerator
3458
+ */
3459
+ quorumNumerator?: number;
3460
+ /**
3461
+ * Require primary network signers
3462
+ */
3463
+ requirePrimaryNetworkSigners?: boolean;
3464
+ };
3465
+
3466
+ type EvmGenesisConfigDto = {
3467
+ /**
3468
+ * Berlin block number
3469
+ */
3470
+ berlinBlock?: number;
3471
+ /**
3472
+ * Byzantium block number
3473
+ */
3474
+ byzantiumBlock?: number;
3475
+ /**
3476
+ * Chain ID
3477
+ */
3478
+ chainId?: number;
3479
+ /**
3480
+ * Constantinople block number
3481
+ */
3482
+ constantinopleBlock?: number;
3483
+ /**
3484
+ * EIP-150 block number
3485
+ */
3486
+ eip150Block?: number;
3487
+ /**
3488
+ * EIP-150 hash
3489
+ */
3490
+ eip150Hash?: string;
3491
+ /**
3492
+ * EIP-155 block number
3493
+ */
3494
+ eip155Block?: number;
3495
+ /**
3496
+ * EIP-158 block number
3497
+ */
3498
+ eip158Block?: number;
3499
+ /**
3500
+ * Fee configuration
3501
+ */
3502
+ feeConfig?: EvmGenesisFeeConfigDto;
3503
+ /**
3504
+ * Homestead block number
3505
+ */
3506
+ homesteadBlock?: number;
3507
+ /**
3508
+ * Istanbul block number
3509
+ */
3510
+ istanbulBlock?: number;
3511
+ /**
3512
+ * London block number
3513
+ */
3514
+ londonBlock?: number;
3515
+ /**
3516
+ * Muir Glacier block number
3517
+ */
3518
+ muirGlacierBlock?: number;
3519
+ /**
3520
+ * Petersburg block number
3521
+ */
3522
+ petersburgBlock?: number;
3523
+ /**
3524
+ * Subnet EVM timestamp
3525
+ */
3526
+ subnetEVMTimestamp?: number;
3527
+ /**
3528
+ * Allow fee recipients
3529
+ */
3530
+ allowFeeRecipients?: boolean;
3531
+ /**
3532
+ * Warp configuration
3533
+ */
3534
+ warpConfig?: EvmGenesisWarpConfigDto;
3535
+ /**
3536
+ * Transaction allow list configuration
3537
+ */
3538
+ txAllowListConfig?: EvmGenesisAllowListConfigDto;
3539
+ /**
3540
+ * Contract deployer allow list configuration
3541
+ */
3542
+ contractDeployerAllowListConfig?: EvmGenesisAllowListConfigDto;
3543
+ /**
3544
+ * Contract native minter configuration
3545
+ */
3546
+ contractNativeMinterConfig?: EvmGenesisAllowListConfigDto;
3547
+ /**
3548
+ * Fee manager configuration
3549
+ */
3550
+ feeManagerConfig?: EvmGenesisAllowListConfigDto;
3551
+ /**
3552
+ * Reward manager configuration
3553
+ */
3554
+ rewardManagerConfig?: EvmGenesisAllowListConfigDto;
3555
+ };
3556
+
3557
+ type EvmGenesisDto = {
3558
+ /**
3559
+ * Airdrop amount
3560
+ */
3561
+ airdropAmount?: number | null;
3562
+ /**
3563
+ * Airdrop hash
3564
+ */
3565
+ airdropHash?: string;
3566
+ /**
3567
+ * Allocation of accounts and balances
3568
+ */
3569
+ alloc?: Record<string, EvmGenesisAllocDto>;
3570
+ /**
3571
+ * Base fee per gas
3572
+ */
3573
+ baseFeePerGas?: number | null;
3574
+ /**
3575
+ * Blob gas used
3576
+ */
3577
+ blobGasUsed?: string | null;
3578
+ /**
3579
+ * Coinbase address
3580
+ */
3581
+ coinbase?: string;
3582
+ /**
3583
+ * Genesis configuration
3584
+ */
3585
+ config?: EvmGenesisConfigDto;
3586
+ /**
3587
+ * Difficulty
3588
+ */
3589
+ difficulty?: string;
3590
+ /**
3591
+ * Excess blob gas
3592
+ */
3593
+ excessBlobGas?: string | null;
3594
+ /**
3595
+ * Extra data
3596
+ */
3597
+ extraData?: string;
3598
+ /**
3599
+ * Gas limit
3600
+ */
3601
+ gasLimit?: string;
3602
+ /**
3603
+ * Gas used
3604
+ */
3605
+ gasUsed?: string;
3606
+ /**
3607
+ * Mix hash
3608
+ */
3609
+ mixHash?: string;
3610
+ /**
3611
+ * Nonce
3612
+ */
3613
+ nonce?: string;
3614
+ /**
3615
+ * Block number
3616
+ */
3617
+ number?: string;
3618
+ /**
3619
+ * Parent hash
3620
+ */
3621
+ parentHash?: string;
3622
+ /**
3623
+ * Block timestamp
3624
+ */
3625
+ timestamp?: string;
3626
+ };
3627
+
3241
3628
  type Blockchain = {
3242
3629
  createBlockTimestamp: number;
3243
3630
  createBlockNumber: string;
@@ -3248,11 +3635,11 @@ type Blockchain = {
3248
3635
  /**
3249
3636
  * EVM Chain ID for the EVM-based chains. This field is extracted from genesis data, and may be present for non-EVM chains as well.
3250
3637
  */
3251
- evmChainId: number;
3638
+ evmChainId?: number;
3252
3639
  /**
3253
- * The genesis data of the blockchain.
3640
+ * The genesis data of the blockchain. Can be either a parsed EvmGenesisDto object or a raw JSON string.
3254
3641
  */
3255
- genesisData?: Record<string, any>;
3642
+ genesisData?: (EvmGenesisDto | string);
3256
3643
  };
3257
3644
 
3258
3645
  declare enum BlockchainIds {
@@ -4685,6 +5072,10 @@ type Utxo = {
4685
5072
  * UTXO ID for this output.
4686
5073
  */
4687
5074
  utxoId: string;
5075
+ /**
5076
+ * The bytes of the UTXO
5077
+ */
5078
+ utxoBytes?: string;
4688
5079
  /**
4689
5080
  * Unix timestamp in seconds at which this output was consumed.
4690
5081
  */
@@ -4859,7 +5250,7 @@ type BlockchainInfo = {
4859
5250
  /**
4860
5251
  * The genesis data of the blockchain. Present for CreateChainTx. EVM based chains will return the genesis data as an object. Non-EVM based chains will return the genesis data as an encoded string. The encoding depends on the VM
4861
5252
  */
4862
- genesisData?: Record<string, any>;
5253
+ genesisData?: (EvmGenesisDto | string);
4863
5254
  };
4864
5255
 
4865
5256
  type L1ValidatorDetailsTransaction = {
@@ -4942,6 +5333,10 @@ type PChainUtxo = {
4942
5333
  * UTXO ID for this output.
4943
5334
  */
4944
5335
  utxoId: string;
5336
+ /**
5337
+ * The bytes of the UTXO
5338
+ */
5339
+ utxoBytes?: string;
4945
5340
  /**
4946
5341
  * @deprecated
4947
5342
  */
@@ -5000,7 +5395,7 @@ type PChainTransaction = {
5000
5395
  txHash: string;
5001
5396
  txType: PChainTransactionType;
5002
5397
  /**
5003
- * The block finality timestamp.
5398
+ * The block creation (proposal) timestamp in seconds
5004
5399
  */
5005
5400
  blockTimestamp: number;
5006
5401
  /**
@@ -5446,6 +5841,36 @@ declare class PrimaryNetworkTransactionsService {
5446
5841
  }): CancelablePromise<ListXChainTransactionsResponse>;
5447
5842
  }
5448
5843
 
5844
+ declare enum PrimaryNetworkType {
5845
+ MAINNET = "mainnet",
5846
+ FUJI = "fuji"
5847
+ }
5848
+
5849
+ type LastActivityTimestamp = {
5850
+ /**
5851
+ * Unix timestamp in seconds at which the last activity occurred.
5852
+ */
5853
+ timestamp: number;
5854
+ /**
5855
+ * Block height at which the last activity occurred.
5856
+ */
5857
+ blockNumber: string;
5858
+ /**
5859
+ * Transaction hash of the transaction that created or consumed the address' UTXOs.
5860
+ */
5861
+ txHash: string;
5862
+ /**
5863
+ * UTXO ID of the UTXO that was created or consumed.
5864
+ */
5865
+ utxoId: string;
5866
+ /**
5867
+ * Whether the last activity was a consumption of an existing UTXO.
5868
+ */
5869
+ isConsumed: boolean;
5870
+ chainName: PrimaryNetworkChainName;
5871
+ network: PrimaryNetworkType;
5872
+ };
5873
+
5449
5874
  type ListPChainUtxosResponse = {
5450
5875
  /**
5451
5876
  * 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.
@@ -5464,6 +5889,18 @@ type ListUtxosResponse = {
5464
5889
  chainInfo: PrimaryNetworkChainInfo;
5465
5890
  };
5466
5891
 
5892
+ type PrimaryNetworkAddressesBodyDto = {
5893
+ /**
5894
+ * Comma-separated list of primary network addresses
5895
+ */
5896
+ addresses: string;
5897
+ };
5898
+
5899
+ declare enum UtxosSortByOption {
5900
+ TIMESTAMP = "timestamp",
5901
+ AMOUNT = "amount"
5902
+ }
5903
+
5467
5904
  declare class PrimaryNetworkUtxOsService {
5468
5905
  readonly httpRequest: BaseHttpRequest;
5469
5906
  constructor(httpRequest: BaseHttpRequest);
@@ -5473,7 +5910,7 @@ declare class PrimaryNetworkUtxOsService {
5473
5910
  * @returns any Successful response
5474
5911
  * @throws ApiError
5475
5912
  */
5476
- getUtxosByAddresses({ blockchainId, network, addresses, pageToken, pageSize, assetId, includeSpent, sortOrder, }: {
5913
+ getUtxosByAddresses({ blockchainId, network, addresses, pageToken, pageSize, assetId, minUtxoAmount, includeSpent, sortBy, sortOrder, }: {
5477
5914
  /**
5478
5915
  * A primary network blockchain id or alias.
5479
5916
  */
@@ -5498,15 +5935,105 @@ declare class PrimaryNetworkUtxOsService {
5498
5935
  * Asset ID for any asset (only applicable X-Chain)
5499
5936
  */
5500
5937
  assetId?: string;
5938
+ /**
5939
+ * The minimum UTXO amount in nAVAX (inclusive), used to filter the set of UTXOs being returned. Default is 0.
5940
+ */
5941
+ minUtxoAmount?: number;
5942
+ /**
5943
+ * Boolean filter to include spent UTXOs.
5944
+ */
5945
+ includeSpent?: boolean;
5946
+ /**
5947
+ * Which property to sort by, in conjunction with sortOrder.
5948
+ */
5949
+ sortBy?: UtxosSortByOption;
5950
+ /**
5951
+ * The order by which to sort results. Use "asc" for ascending order, "desc" for descending order. Sorted by timestamp or the `sortBy` query parameter, if provided.
5952
+ */
5953
+ sortOrder?: SortOrder;
5954
+ }): CancelablePromise<(ListPChainUtxosResponse | ListUtxosResponse)>;
5955
+ /**
5956
+ * List UTXOs v2 - Supports querying for more addresses
5957
+ * Lists UTXOs on one of the Primary Network chains for the supplied addresses. This v2 route supports increased page size and address limit.
5958
+ * @returns any Successful response
5959
+ * @throws ApiError
5960
+ */
5961
+ getUtxosByAddressesV2({ blockchainId, network, requestBody, pageToken, pageSize, assetId, minUtxoAmount, includeSpent, sortBy, sortOrder, }: {
5962
+ /**
5963
+ * A primary network blockchain id or alias.
5964
+ */
5965
+ blockchainId: BlockchainId;
5966
+ /**
5967
+ * Either mainnet or testnet/fuji.
5968
+ */
5969
+ network: Network;
5970
+ requestBody: PrimaryNetworkAddressesBodyDto;
5971
+ /**
5972
+ * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
5973
+ */
5974
+ pageToken?: string;
5975
+ /**
5976
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 1024.
5977
+ */
5978
+ pageSize?: number;
5979
+ /**
5980
+ * Asset ID for any asset (only applicable X-Chain)
5981
+ */
5982
+ assetId?: string;
5983
+ /**
5984
+ * The minimum UTXO amount in nAVAX (inclusive), used to filter the set of UTXOs being returned. Default is 0.
5985
+ */
5986
+ minUtxoAmount?: number;
5501
5987
  /**
5502
5988
  * Boolean filter to include spent UTXOs.
5503
5989
  */
5504
5990
  includeSpent?: boolean;
5991
+ /**
5992
+ * Which property to sort by, in conjunction with sortOrder.
5993
+ */
5994
+ sortBy?: UtxosSortByOption;
5505
5995
  /**
5506
5996
  * The order by which to sort results. Use "asc" for ascending order, "desc" for descending order. Sorted by timestamp or the `sortBy` query parameter, if provided.
5507
5997
  */
5508
5998
  sortOrder?: SortOrder;
5509
5999
  }): CancelablePromise<(ListPChainUtxosResponse | ListUtxosResponse)>;
6000
+ /**
6001
+ * Get last activity timestamp by addresses
6002
+ * Gets the last activity timestamp for the supplied addresses on one of the Primary Network chains.
6003
+ * @returns any Successful response
6004
+ * @throws ApiError
6005
+ */
6006
+ getLastActivityTimestampByAddresses({ blockchainId, network, addresses, }: {
6007
+ /**
6008
+ * A primary network blockchain id or alias.
6009
+ */
6010
+ blockchainId: BlockchainId;
6011
+ /**
6012
+ * Either mainnet or testnet/fuji.
6013
+ */
6014
+ network: Network;
6015
+ /**
6016
+ * A comma separated list of X-Chain or P-Chain wallet addresses, starting with "avax"/"fuji", "P-avax"/"P-fuji" or "X-avax"/"X-fuji".
6017
+ */
6018
+ addresses?: string;
6019
+ }): CancelablePromise<LastActivityTimestamp>;
6020
+ /**
6021
+ * Get last activity timestamp by addresses v2
6022
+ * Gets the last activity timestamp for the supplied addresses on one of the Primary Network chains. V2 route supports querying for more addresses.
6023
+ * @returns any Successful response
6024
+ * @throws ApiError
6025
+ */
6026
+ getLastActivityTimestampByAddressesV2({ blockchainId, network, requestBody, }: {
6027
+ /**
6028
+ * A primary network blockchain id or alias.
6029
+ */
6030
+ blockchainId: BlockchainId;
6031
+ /**
6032
+ * Either mainnet or testnet/fuji.
6033
+ */
6034
+ network: Network;
6035
+ requestBody: PrimaryNetworkAddressesBodyDto;
6036
+ }): CancelablePromise<LastActivityTimestamp>;
5510
6037
  }
5511
6038
 
5512
6039
  type XChainVertex = {
@@ -5615,10 +6142,30 @@ type SignatureAggregationResponse = {
5615
6142
  };
5616
6143
 
5617
6144
  type SignatureAggregatorRequest = {
5618
- message: string;
6145
+ /**
6146
+ * Either Message or Justification must be provided. Hex-encoded message, optionally prefixed with "0x"
6147
+ */
6148
+ message?: string;
6149
+ /**
6150
+ * Either Justification or Message must be provided. Hex-encoded justification, optionally prefixed with "0x"
6151
+ */
5619
6152
  justification?: string;
6153
+ /**
6154
+ * Optional hex or cb58 encoded signing subnet ID. If omitted will default to the subnetID of the source blockchain.
6155
+ */
5620
6156
  signingSubnetId?: string;
6157
+ /**
6158
+ * Optional. Integer from 0 to 100 representing the percentage of the weight of the signing Subnet that is required to sign the message. Defaults to 67 if omitted.
6159
+ */
5621
6160
  quorumPercentage?: number;
6161
+ /**
6162
+ * Optional. Integer from 0 to 100 representing the additional percentage of weight of the signing Subnet that will be attempted to add to the signature. QuorumPercentage+QuorumPercentageBuffer must be less than or equal to 100. Obtaining signatures from more validators can take a longer time, but signatures representing a large percentage of the Subnet weight are less prone to become invalid due to validator weight changes. Defaults to 0 if omitted.
6163
+ */
6164
+ quorumPercentageBuffer?: number;
6165
+ /**
6166
+ * Optional P-Chain height for validator set selection. If 0 (default), validators at proposed height will be used. If non-zero, validators at the specified P-Chain height will be used for signature aggregation.
6167
+ */
6168
+ pChainHeight?: number;
5622
6169
  };
5623
6170
 
5624
6171
  declare class SignatureAggregatorService {
@@ -6101,11 +6648,6 @@ type ListWebhooksResponse = {
6101
6648
  webhooks: Array<(EVMAddressActivityResponse | PrimaryNetworkAddressActivityResponse | ValidatorActivityResponse)>;
6102
6649
  };
6103
6650
 
6104
- declare enum PrimaryNetworkType {
6105
- MAINNET = "mainnet",
6106
- FUJI = "fuji"
6107
- }
6108
-
6109
6651
  type PrimaryNetworkAddressActivityRequest = {
6110
6652
  eventType: PrimaryNetworkAddressActivityRequest.eventType;
6111
6653
  url: string;
@@ -6804,5 +7346,5 @@ declare class FetchHttpRequest extends BaseHttpRequest {
6804
7346
  request<T>(options: ApiRequestOptions): CancelablePromise<T>;
6805
7347
  }
6806
7348
 
6807
- export { ActiveDelegatorDetails, ActiveValidatorDetails, AddressActivityEventType, ApiError, ApiFeature, AvaxSupplyService, BaseHttpRequest, BlockchainId, BlockchainIds, CChainExportTransaction, CChainImportTransaction, CancelError, CancelablePromise, ChainStatus, CommonBalanceType, CompletedDelegatorDetails, CompletedValidatorDetails, ContractSubmissionErc1155, ContractSubmissionErc20, ContractSubmissionErc721, ContractSubmissionUnknown, CurrencyCode, DataApiUsageMetricsService, DefaultService, DelegationStatusType, DeliveredIcmMessage, DeliveredSourceNotIndexedIcmMessage, DeliveredSourceNotIndexedTeleporterMessage, DeliveredTeleporterMessage, EVMAddressActivityRequest, EVMOperationType, Erc1155Contract, Erc1155Token, Erc1155TokenBalance, Erc20Contract, Erc20Token, Erc20TokenBalance, Erc721Contract, Erc721Token, Erc721TokenBalance, EvmBalancesService, EvmBlocksService, EvmChainsService, EvmContractsService, EvmTransactionsService, FetchHttpRequest, Glacier, HealthCheckResultDto, HealthCheckService, HealthIndicatorResultDto, IcmRewardDetails, InterchainMessagingService, InternalTransactionOpCall, Network, NfTsService, NftTokenMetadataStatus, NotificationsService, OpenAPI, OperationStatus, OperationStatusCode, OperationType, OperationsService, PChainId, PChainTransactionType, PendingDelegatorDetails, PendingIcmMessage, PendingTeleporterMessage, PendingValidatorDetails, PlatformAddressActivityKeyType, PrimaryNetworkAddressActivityEventType, PrimaryNetworkAddressActivityRequest, PrimaryNetworkAddressActivitySubEventType, PrimaryNetworkAssetCap, PrimaryNetworkAssetType, PrimaryNetworkBalancesService, PrimaryNetworkBlocksService, PrimaryNetworkChainName, PrimaryNetworkOperationType, PrimaryNetworkRewardsService, PrimaryNetworkRpcMetricsGroupByEnum, PrimaryNetworkRpcTimeIntervalGranularity, PrimaryNetworkRpcUsageMetricsResponseDTO, PrimaryNetworkService, PrimaryNetworkTransactionsService, PrimaryNetworkTxType, PrimaryNetworkType, PrimaryNetworkUtxOsService, PrimaryNetworkVerticesService, RemovedValidatorDetails, RequestType, ResourceLinkType, RewardType, RpcUsageMetricsGroupByEnum, RpcUsageMetricsValueAggregated, SignatureAggregatorService, SortByOption, SortOrder, SubnetRpcTimeIntervalGranularity, TeleporterRewardDetails, TeleporterService, TimeIntervalGranularityExtended, TransactionDirectionType, TransactionMethodType, TransactionStatus, UnknownContract, UsageMetricsGroupByEnum, UsageMetricsValueDTO, UtxoType, ValidationStatusType, ValidatorActivityEventType, ValidatorActivityKeyType, ValidatorActivityRequest, VmName, WebhookAddressActivityResponse, WebhookStatus, WebhookStatusType, WebhooksService, XChainId, XChainLinearTransaction, XChainNonLinearTransaction, XChainTransactionType };
6808
- export type { AccessListData, AccessRequest, AddressActivityMetadata, AddressesChangeRequest, AggregatedAssetAmount, ApiRequestOptions, AssetAmount, AssetWithPriceInfo, BadGateway, BadRequest, BalanceOwner, Blockchain, BlockchainInfo, BlsCredentials, CChainAtomicBalances, CChainSharedAssetBalance, ChainAddressChainIdMap, ChainAddressChainIdMapListResponse, ChainInfo, ContractDeploymentDetails, ContractSubmissionBody, CreateEvmTransactionExportRequest, CreatePrimaryNetworkTransactionExportRequest, DataListChainsResponse, DelegatorsDetails, ERCToken, ERCTransfer, EVMAddressActivityResponse, EVMInput, EVMOutput, Erc1155TokenMetadata, Erc1155Transfer, Erc1155TransferDetails, Erc20Transfer, Erc20TransferDetails, Erc721TokenMetadata, Erc721Transfer, Erc721TransferDetails, EvmBlock, EvmNetworkOptions, Forbidden, FullNativeTransactionDetails, Geolocation, GetChainResponse, GetEvmBlockResponse, GetNativeBalanceResponse, GetNetworkDetailsResponse, GetPrimaryNetworkBlockResponse, GetTransactionResponse, HistoricalReward, IcmDestinationTransaction, IcmReceipt, IcmSourceTransaction, ImageAsset, InternalServerError, InternalTransaction, InternalTransactionDetails, 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, Log, LogsFormat, LogsFormatMetadata, LogsResponseDTO, Method, Metric, Money, NativeTokenBalance, NativeTransaction, NetworkToken, NetworkTokenDetails, NetworkTokenInfo, NextPageToken, NotFound, NotificationsResponse, OpenAPIConfig, OperationStatusResponse, PChainBalance, PChainSharedAsset, PChainTransaction, PChainUtxo, PendingReward, PricingProviders, PrimaryNetworkAddressActivityMetadata, PrimaryNetworkAddressActivityResponse, PrimaryNetworkAddressActivitySubEvents, PrimaryNetworkBalanceThresholdFilter, PrimaryNetworkBlock, PrimaryNetworkChainInfo, PrimaryNetworkOptions, ProposerDetails, ResourceLink, Rewards, RichAddress, RpcMetrics, ServiceUnavailable, SharedSecretsResponse, SignatureAggregationResponse, SignatureAggregatorRequest, StakingDistribution, Subnet, SubnetOwnershipInfo, SubnetRpcUsageMetricsResponseDTO, SubscribeRequest, SubscriptionsRequest, SubscriptionsResponse, TeleporterDestinationTransaction, TeleporterMessageInfo, TeleporterReceipt, TeleporterSourceTransaction, TooManyRequests, Transaction, TransactionDetails, TransactionEvent, TransactionExportMetadata, TransactionVertexDetail, Unauthorized, UnsubscribeRequest, UpdateContractResponse, UpdateWebhookRequest, UsageMetricsResponseDTO, UtilityAddresses, Utxo, UtxoCredential, ValidatorActivityMetadata, ValidatorActivityResponse, ValidatorActivitySubEvents, ValidatorHealthDetails, ValidatorsDetails, WebhookInternalTransaction, XChainAssetDetails, XChainBalances, XChainSharedAssetBalance, XChainVertex };
7349
+ export { ActiveDelegatorDetails, ActiveValidatorDetails, AddressActivityEventType, ApiError, ApiFeature, AvaxSupplyService, BaseHttpRequest, BlockchainId, BlockchainIds, CChainExportTransaction, CChainImportTransaction, CancelError, CancelablePromise, ChainStatus, CommonBalanceType, CompletedDelegatorDetails, CompletedValidatorDetails, ContractSubmissionErc1155, ContractSubmissionErc20, ContractSubmissionErc721, ContractSubmissionUnknown, CurrencyCode, DataApiUsageMetricsService, DefaultService, DelegationStatusType, DeliveredIcmMessage, DeliveredSourceNotIndexedIcmMessage, DeliveredSourceNotIndexedTeleporterMessage, DeliveredTeleporterMessage, EVMAddressActivityRequest, EVMOperationType, Erc1155Contract, Erc1155Token, Erc1155TokenBalance, Erc20Contract, Erc20Token, Erc20TokenBalance, Erc721Contract, Erc721Token, Erc721TokenBalance, EvmBalancesService, EvmBlocksService, EvmChainsService, EvmContractsService, EvmTransactionsService, FetchHttpRequest, Glacier, HealthCheckResultDto, HealthCheckService, HealthIndicatorResultDto, IcmRewardDetails, InterchainMessagingService, InternalTransactionOpCall, Network, NfTsService, NftTokenMetadataStatus, NotificationsService, OpenAPI, OperationStatus, OperationStatusCode, OperationType, OperationsService, PChainId, PChainTransactionType, PendingDelegatorDetails, PendingIcmMessage, PendingTeleporterMessage, PendingValidatorDetails, PlatformAddressActivityKeyType, PrimaryNetworkAddressActivityEventType, PrimaryNetworkAddressActivityRequest, PrimaryNetworkAddressActivitySubEventType, PrimaryNetworkAssetCap, PrimaryNetworkAssetType, PrimaryNetworkBalancesService, PrimaryNetworkBlocksService, PrimaryNetworkChainName, PrimaryNetworkOperationType, PrimaryNetworkRewardsService, PrimaryNetworkRpcMetricsGroupByEnum, PrimaryNetworkRpcTimeIntervalGranularity, PrimaryNetworkRpcUsageMetricsResponseDTO, PrimaryNetworkService, PrimaryNetworkTransactionsService, PrimaryNetworkTxType, PrimaryNetworkType, PrimaryNetworkUtxOsService, PrimaryNetworkVerticesService, RemovedValidatorDetails, RequestType, ResourceLinkType, RewardType, RpcUsageMetricsGroupByEnum, RpcUsageMetricsValueAggregated, SignatureAggregatorService, SortByOption, SortOrder, SubnetRpcTimeIntervalGranularity, TeleporterRewardDetails, TeleporterService, TimeIntervalGranularityExtended, TransactionDirectionType, TransactionMethodType, TransactionStatus, UnknownContract, UsageMetricsGroupByEnum, UsageMetricsValueDTO, UtxoType, UtxosSortByOption, ValidationStatusType, ValidatorActivityEventType, ValidatorActivityKeyType, ValidatorActivityRequest, VmName, WebhookAddressActivityResponse, WebhookStatus, WebhookStatusType, WebhooksService, XChainId, XChainLinearTransaction, XChainNonLinearTransaction, XChainTransactionType };
7350
+ export type { AccessListData, AccessRequest, AddressActivityMetadata, AddressesChangeRequest, AggregatedAssetAmount, ApiRequestOptions, AssetAmount, AssetWithPriceInfo, AvaxSupplyResponse, BadGateway, BadRequest, BalanceOwner, Blockchain, BlockchainInfo, BlsCredentials, CChainAtomicBalances, CChainSharedAssetBalance, ChainAddressChainIdMap, ChainAddressChainIdMapListResponse, ChainInfo, ContractDeploymentDetails, ContractSubmissionBody, CreateEvmTransactionExportRequest, CreatePrimaryNetworkTransactionExportRequest, DataListChainsResponse, DelegatorsDetails, ERCToken, ERCTransfer, EVMAddressActivityResponse, EVMInput, EVMOutput, Erc1155TokenMetadata, Erc1155Transfer, Erc1155TransferDetails, Erc20Transfer, Erc20TransferDetails, Erc721TokenMetadata, Erc721Transfer, Erc721TransferDetails, EvmBlock, EvmGenesisAllocDto, EvmGenesisAllowListConfigDto, EvmGenesisConfigDto, EvmGenesisDto, EvmGenesisFeeConfigDto, EvmGenesisWarpConfigDto, EvmNetworkOptions, Forbidden, FullNativeTransactionDetails, Geolocation, GetChainResponse, GetEvmBlockResponse, GetNativeBalanceResponse, GetNetworkDetailsResponse, GetPrimaryNetworkBlockResponse, GetTransactionResponse, HistoricalReward, IcmDestinationTransaction, IcmReceipt, IcmSourceTransaction, ImageAsset, InternalServerError, InternalTransaction, InternalTransactionDetails, L1ValidatorDetailsFull, L1ValidatorDetailsTransaction, L1ValidatorManagerDetails, LastActivityTimestamp, 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, Log, LogsFormat, LogsFormatMetadata, LogsResponseDTO, Method, Metric, Money, NativeTokenBalance, NativeTransaction, NetworkToken, NetworkTokenDetails, NetworkTokenInfo, NextPageToken, NotFound, NotificationsResponse, OpenAPIConfig, OperationStatusResponse, PChainBalance, PChainSharedAsset, PChainTransaction, PChainUtxo, PendingReward, PricingProviders, PrimaryNetworkAddressActivityMetadata, PrimaryNetworkAddressActivityResponse, PrimaryNetworkAddressActivitySubEvents, PrimaryNetworkAddressesBodyDto, PrimaryNetworkBalanceThresholdFilter, PrimaryNetworkBlock, PrimaryNetworkChainInfo, PrimaryNetworkOptions, ProposerDetails, ResourceLink, Rewards, RichAddress, RpcMetrics, ServiceUnavailable, SharedSecretsResponse, SignatureAggregationResponse, SignatureAggregatorRequest, StakingDistribution, Subnet, SubnetOwnershipInfo, SubnetRpcUsageMetricsResponseDTO, SubscribeRequest, SubscriptionsRequest, SubscriptionsResponse, TeleporterDestinationTransaction, TeleporterMessageInfo, TeleporterReceipt, TeleporterSourceTransaction, TooManyRequests, Transaction, TransactionDetails, TransactionEvent, TransactionExportMetadata, TransactionVertexDetail, Unauthorized, UnsubscribeRequest, UpdateContractResponse, UpdateWebhookRequest, UsageMetricsResponseDTO, UtilityAddresses, Utxo, UtxoCredential, ValidatorActivityMetadata, ValidatorActivityResponse, ValidatorActivitySubEvents, ValidatorHealthDetails, ValidatorsDetails, WebhookInternalTransaction, XChainAssetDetails, XChainBalances, XChainSharedAssetBalance, XChainVertex };