@avalabs/glacier-sdk 3.1.0-canary.dca9ac0.0 → 3.1.0-canary.de1a809.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 (32) hide show
  1. package/dist/index.d.ts +116 -83
  2. package/dist/index.js +1 -1
  3. package/esm/generated/models/CreateWebhookRequest.d.ts +1 -1
  4. package/esm/generated/models/GetPrimaryNetworkBlockResponse.d.ts +2 -2
  5. package/esm/generated/models/L1ValidatorDetailsFull.d.ts +33 -0
  6. package/esm/generated/models/L1ValidatorDetailsTransaction.d.ts +23 -0
  7. package/esm/generated/models/{ListSubnetOnlyValidatorsResponse.d.ts → ListL1ValidatorsResponse.d.ts} +4 -4
  8. package/esm/generated/models/PChainTransaction.d.ts +5 -5
  9. package/esm/generated/models/PChainTransactionType.d.ts +5 -5
  10. package/esm/generated/models/PChainTransactionType.js +1 -1
  11. package/esm/generated/models/PrimaryNetworkBlock.d.ts +2 -2
  12. package/esm/generated/models/PrimaryNetworkTxType.d.ts +5 -5
  13. package/esm/generated/models/PrimaryNetworkTxType.js +1 -1
  14. package/esm/generated/models/RpcUsageMetricsGroupByEnum.d.ts +7 -0
  15. package/esm/generated/models/RpcUsageMetricsGroupByEnum.js +1 -0
  16. package/esm/generated/models/RpcUsageMetricsValueAggregated.d.ts +4 -0
  17. package/esm/generated/models/SubnetRpcTimeIntervalGranularity.d.ts +8 -0
  18. package/esm/generated/models/SubnetRpcTimeIntervalGranularity.js +1 -0
  19. package/esm/generated/models/UpdateWebhookRequest.d.ts +3 -0
  20. package/esm/generated/services/DataApiUsageMetricsService.d.ts +18 -19
  21. package/esm/generated/services/DataApiUsageMetricsService.js +1 -1
  22. package/esm/generated/services/PrimaryNetworkBlocksService.d.ts +18 -2
  23. package/esm/generated/services/PrimaryNetworkBlocksService.js +1 -1
  24. package/esm/generated/services/PrimaryNetworkService.d.ts +9 -9
  25. package/esm/generated/services/PrimaryNetworkService.js +1 -1
  26. package/esm/generated/services/PrimaryNetworkTransactionsService.d.ts +3 -3
  27. package/esm/generated/services/PrimaryNetworkTransactionsService.js +1 -1
  28. package/esm/index.d.ts +5 -3
  29. package/esm/index.js +1 -1
  30. package/package.json +2 -2
  31. package/esm/generated/models/SoVDetailsTransaction.d.ts +0 -23
  32. package/esm/generated/models/SovDetailsFull.d.ts +0 -33
package/dist/index.d.ts CHANGED
@@ -148,6 +148,12 @@ type LogsResponseDTO = {
148
148
  logs: Array<LogsFormat>;
149
149
  };
150
150
 
151
+ declare enum RpcUsageMetricsGroupByEnum {
152
+ RPC_METHOD = "rpcMethod",
153
+ RESPONSE_CODE = "responseCode",
154
+ RL_BYPASS_TOKEN = "rlBypassToken"
155
+ }
156
+
151
157
  type RpcUsageMetricsValueAggregated = {
152
158
  /**
153
159
  * The total number of requests
@@ -173,6 +179,10 @@ type RpcUsageMetricsValueAggregated = {
173
179
  * The number of invalid requests
174
180
  */
175
181
  invalidRequests: number;
182
+ /**
183
+ * The number of API credits wasted on invalid requests
184
+ */
185
+ apiCreditsWasted: number;
176
186
  /**
177
187
  * Column name used for data aggregation
178
188
  */
@@ -220,6 +230,13 @@ type RpcUsageMetricsResponseDTO = {
220
230
  metrics: Array<RpcMetrics>;
221
231
  };
222
232
 
233
+ declare enum SubnetRpcTimeIntervalGranularity {
234
+ HOURLY = "hourly",
235
+ DAILY = "daily",
236
+ WEEKLY = "weekly",
237
+ MONTHLY = "monthly"
238
+ }
239
+
223
240
  declare enum TimeIntervalGranularityExtended {
224
241
  MINUTE = "minute",
225
242
  HOURLY = "hourly",
@@ -323,7 +340,7 @@ declare class DataApiUsageMetricsService {
323
340
  * @returns UsageMetricsResponseDTO Successful response
324
341
  * @throws ApiError
325
342
  */
326
- getApiUsageMetrics({ orgId, startTimestamp, endTimestamp, timeInterval, groupBy, chainId, requestPath, responseCode, requestType, apiKeyId, }: {
343
+ getApiUsageMetrics({ orgId, startTimestamp, endTimestamp, timeInterval, groupBy, chainId, responseCode, requestType, apiKeyId, requestPath, }: {
327
344
  /**
328
345
  * Organization ID to fetch usage metrics for
329
346
  */
@@ -348,10 +365,6 @@ declare class DataApiUsageMetricsService {
348
365
  * Filter data by chain ID.
349
366
  */
350
367
  chainId?: string;
351
- /**
352
- * Filter data by request path.
353
- */
354
- requestPath?: string;
355
368
  /**
356
369
  * Filter data by response status code.
357
370
  */
@@ -364,6 +377,10 @@ declare class DataApiUsageMetricsService {
364
377
  * Filter data by API key ID.
365
378
  */
366
379
  apiKeyId?: string;
380
+ /**
381
+ * Filter data by request path.
382
+ */
383
+ requestPath?: string;
367
384
  }): CancelablePromise<UsageMetricsResponseDTO>;
368
385
  /**
369
386
  * Get logs for requests made by client
@@ -371,7 +388,7 @@ declare class DataApiUsageMetricsService {
371
388
  * @returns LogsResponseDTO Successful response
372
389
  * @throws ApiError
373
390
  */
374
- getApiLogs({ orgId, startTimestamp, endTimestamp, chainId, requestPath, responseCode, requestType, apiKeyId, pageToken, pageSize, }: {
391
+ getApiLogs({ orgId, startTimestamp, endTimestamp, chainId, responseCode, requestType, apiKeyId, requestPath, pageToken, pageSize, }: {
375
392
  /**
376
393
  * Organization ID to fetch usage metrics for
377
394
  */
@@ -388,10 +405,6 @@ declare class DataApiUsageMetricsService {
388
405
  * Filter data by chain ID.
389
406
  */
390
407
  chainId?: string;
391
- /**
392
- * Filter data by request path.
393
- */
394
- requestPath?: string;
395
408
  /**
396
409
  * Filter data by response status code.
397
410
  */
@@ -404,6 +417,10 @@ declare class DataApiUsageMetricsService {
404
417
  * Filter data by API key ID.
405
418
  */
406
419
  apiKeyId?: string;
420
+ /**
421
+ * Filter data by request path.
422
+ */
423
+ requestPath?: string;
407
424
  /**
408
425
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
409
426
  */
@@ -415,15 +432,16 @@ declare class DataApiUsageMetricsService {
415
432
  }): CancelablePromise<LogsResponseDTO>;
416
433
  /**
417
434
  * Get usage metrics for the Subnet RPC
418
- * Gets metrics for Subnet RPC usage over a specified time interval aggregated at the specified time-duration granularity.
435
+ * Gets metrics for public Subnet RPC usage over a specified time interval aggregated at the specified time-duration granularity.
419
436
  * @returns RpcUsageMetricsResponseDTO Successful response
420
437
  * @throws ApiError
421
438
  */
422
- getRpcUsageMetrics({ timeInterval, startTimestamp, endTimestamp, groupBy, chainId, requestPath, responseCode, rpcMethod, rlBypassApiToken, }: {
439
+ getRpcUsageMetrics({ timeInterval, startTimestamp, endTimestamp, groupBy, chainId, responseCode, rpcMethod, rlBypassApiToken, }: {
423
440
  /**
424
- * Query param for setting time interval of data aggregation.
441
+ * Time interval granularity for data aggregation for subnet
442
+ * rpc metrics
425
443
  */
426
- timeInterval?: string;
444
+ timeInterval?: SubnetRpcTimeIntervalGranularity;
427
445
  /**
428
446
  * The start time of the range as a UNIX timestamp. The requested start time will be rounded down to 0:00 UTC of the day.
429
447
  */
@@ -435,15 +453,11 @@ declare class DataApiUsageMetricsService {
435
453
  /**
436
454
  * Query param for the criterion used for grouping metrics
437
455
  */
438
- groupBy?: UsageMetricsGroupByEnum;
456
+ groupBy?: RpcUsageMetricsGroupByEnum;
439
457
  /**
440
458
  * Filter data by chain ID.
441
459
  */
442
460
  chainId?: string;
443
- /**
444
- * Filter data by request path.
445
- */
446
- requestPath?: string;
447
461
  /**
448
462
  * Filter data by response status code.
449
463
  */
@@ -2712,37 +2726,37 @@ type BalanceOwner = {
2712
2726
  threshold: number;
2713
2727
  };
2714
2728
 
2715
- type SovDetailsFull = {
2729
+ type L1ValidatorDetailsFull = {
2716
2730
  /**
2717
- * Unique SoV ID used network-wide to identify subnet-only validation until its weight is reduced to 0 i.e. removed.
2731
+ * Unique L1 validation ID used network-wide to identify L1 validation until its weight is reduced to 0 i.e. removed.
2718
2732
  */
2719
2733
  validationId: string;
2720
2734
  nodeId: string;
2721
2735
  subnetId: string;
2722
2736
  /**
2723
- * Weight of the SoV used while sampling validators within the L1. A zero-weight SoV means it has been removed from the L1, and the validationID is no longer valid
2737
+ * Weight of the L1 validator used while sampling validators within the L1. A zero-weight L1 validator means it has been removed from the L1, and the validationID is no longer valid
2724
2738
  */
2725
2739
  weight: number;
2726
2740
  /**
2727
- * Remaining SoV balance in nAVAX until inactive. It can rejoin subnet sampling by increasing balance with IncreaseBalanceTx
2741
+ * Remaining L1 validator balance in nAVAX until inactive. It can rejoin L1 sampling by increasing balance with IncreaseL1ValidatorBalanceTx
2728
2742
  */
2729
2743
  remainingBalance: number;
2730
2744
  /**
2731
- * The timestamp of the transaction which created this SoV
2745
+ * The timestamp of the transaction which created this L1 validator
2732
2746
  */
2733
2747
  creationTimestamp: number;
2734
2748
  blsCredentials: Record<string, any>;
2735
2749
  /**
2736
- * The SoV owner's balance, returned after it's disabled or removed
2750
+ * The L1 validator owner's balance, returned after it's disabled or removed
2737
2751
  */
2738
2752
  remainingBalanceOwner: BalanceOwner;
2739
2753
  /**
2740
- * Owner ddresses details which can disable or remove the SoV
2754
+ * Owner ddresses details which can disable or remove the L1 validator
2741
2755
  */
2742
2756
  deactivationOwner: BalanceOwner;
2743
2757
  };
2744
2758
 
2745
- type ListSubnetOnlyValidatorsResponse = {
2759
+ type ListL1ValidatorsResponse = {
2746
2760
  /**
2747
2761
  * A token, which can be sent as `pageToken` to retrieve the next page. If this field is omitted or empty, there are no subsequent pages.
2748
2762
  */
@@ -2750,7 +2764,7 @@ type ListSubnetOnlyValidatorsResponse = {
2750
2764
  /**
2751
2765
  * The list of L1 validations for the given Subnet ID, NodeId or validationId
2752
2766
  */
2753
- validators: Array<SovDetailsFull>;
2767
+ validators: Array<L1ValidatorDetailsFull>;
2754
2768
  };
2755
2769
 
2756
2770
  type BlockchainInfo = {
@@ -3275,12 +3289,12 @@ declare class PrimaryNetworkService {
3275
3289
  nodeIds?: string;
3276
3290
  }): CancelablePromise<ListDelegatorDetailsResponse>;
3277
3291
  /**
3278
- * List subnet-only validators
3279
- * Lists details for subnet only validators. By default, returns details for all active subnet only validators. Filterable by validator node ids, subnet id, and validation id.
3280
- * @returns ListSubnetOnlyValidatorsResponse Successful response
3292
+ * List L1 validators
3293
+ * Lists details for L1 validators. By default, returns details for all active L1 validators. Filterable by validator node ids, subnet id, and validation id.
3294
+ * @returns ListL1ValidatorsResponse Successful response
3281
3295
  * @throws ApiError
3282
3296
  */
3283
- listSubnetOnlyValidators({ network, pageToken, pageSize, sovValidationId, includeInactiveSovs, nodeId, subnetId, }: {
3297
+ listL1Validators({ network, pageToken, pageSize, l1ValidationId, includeInactiveL1Validators, nodeId, subnetId, }: {
3284
3298
  /**
3285
3299
  * Either mainnet or testnet/fuji.
3286
3300
  */
@@ -3294,10 +3308,10 @@ declare class PrimaryNetworkService {
3294
3308
  */
3295
3309
  pageSize?: number;
3296
3310
  /**
3297
- * The Subnet-only-Validator validation ID to filter by. If not provided, then all Subnet-only-Validators will be returned.
3311
+ * The L1 Validator's validation ID to filter by. If not provided, then all L1 Validators will be returned.
3298
3312
  */
3299
- sovValidationId?: any;
3300
- includeInactiveSovs?: boolean;
3313
+ l1ValidationId?: any;
3314
+ includeInactiveL1Validators?: boolean;
3301
3315
  /**
3302
3316
  * A valid node ID in format 'NodeID-HASH'.
3303
3317
  */
@@ -3306,7 +3320,7 @@ declare class PrimaryNetworkService {
3306
3320
  * The subnet ID to filter by. If not provided, then all subnets will be returned.
3307
3321
  */
3308
3322
  subnetId?: any;
3309
- }): CancelablePromise<ListSubnetOnlyValidatorsResponse>;
3323
+ }): CancelablePromise<ListL1ValidatorsResponse>;
3310
3324
  }
3311
3325
 
3312
3326
  declare enum BlockchainId {
@@ -3553,8 +3567,8 @@ type GetPrimaryNetworkBlockResponse = {
3553
3567
  txCount: number;
3554
3568
  transactions: Array<string>;
3555
3569
  blockSizeBytes: number;
3556
- subnetOnlyValidatorsAccruedFees?: number;
3557
- activeSubnetOnlyValidators?: number;
3570
+ l1ValidatorsAccruedFees?: number;
3571
+ activeL1Validators?: number;
3558
3572
  currentSupply?: string;
3559
3573
  proposerDetails?: ProposerDetails;
3560
3574
  };
@@ -3568,8 +3582,8 @@ type PrimaryNetworkBlock = {
3568
3582
  txCount: number;
3569
3583
  transactions: Array<string>;
3570
3584
  blockSizeBytes: number;
3571
- subnetOnlyValidatorsAccruedFees?: number;
3572
- activeSubnetOnlyValidators?: number;
3585
+ l1ValidatorsAccruedFees?: number;
3586
+ activeL1Validators?: number;
3573
3587
  currentSupply?: string;
3574
3588
  proposerDetails?: ProposerDetails;
3575
3589
  };
@@ -3612,7 +3626,7 @@ declare class PrimaryNetworkBlocksService {
3612
3626
  * @returns ListPrimaryNetworkBlocksResponse Successful response
3613
3627
  * @throws ApiError
3614
3628
  */
3615
- listPrimaryNetworkBlocksByNodeId({ blockchainId, network, nodeId, pageToken, pageSize, }: {
3629
+ listPrimaryNetworkBlocksByNodeId({ blockchainId, network, nodeId, startTimestamp, endTimestamp, pageToken, pageSize, }: {
3616
3630
  /**
3617
3631
  * A primary network blockchain id or alias.
3618
3632
  */
@@ -3625,6 +3639,14 @@ declare class PrimaryNetworkBlocksService {
3625
3639
  * A primary network (P or X chain) nodeId.
3626
3640
  */
3627
3641
  nodeId: string;
3642
+ /**
3643
+ * Query param for retrieving items after a specific timestamp.
3644
+ */
3645
+ startTimestamp?: number;
3646
+ /**
3647
+ * Query param for retrieving items before a specific timestamp.
3648
+ */
3649
+ endTimestamp?: number;
3628
3650
  /**
3629
3651
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
3630
3652
  */
@@ -3640,7 +3662,7 @@ declare class PrimaryNetworkBlocksService {
3640
3662
  * @returns ListPrimaryNetworkBlocksResponse Successful response
3641
3663
  * @throws ApiError
3642
3664
  */
3643
- listLatestPrimaryNetworkBlocks({ blockchainId, network, pageToken, pageSize, }: {
3665
+ listLatestPrimaryNetworkBlocks({ blockchainId, network, startTimestamp, endTimestamp, pageToken, pageSize, }: {
3644
3666
  /**
3645
3667
  * A primary network blockchain id or alias.
3646
3668
  */
@@ -3649,6 +3671,14 @@ declare class PrimaryNetworkBlocksService {
3649
3671
  * Either mainnet or testnet/fuji.
3650
3672
  */
3651
3673
  network: Network;
3674
+ /**
3675
+ * Query param for retrieving items after a specific timestamp.
3676
+ */
3677
+ startTimestamp?: number;
3678
+ /**
3679
+ * Query param for retrieving items before a specific timestamp.
3680
+ */
3681
+ endTimestamp?: number;
3652
3682
  /**
3653
3683
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
3654
3684
  */
@@ -4058,6 +4088,28 @@ type ListCChainAtomicTransactionsResponse = {
4058
4088
  chainInfo: PrimaryNetworkChainInfo;
4059
4089
  };
4060
4090
 
4091
+ type L1ValidatorDetailsTransaction = {
4092
+ /**
4093
+ * Unique L1 validation ID used network-wide to identify L1 validation until its weight is reduced to 0 i.e. removed.
4094
+ */
4095
+ validationId: string;
4096
+ nodeId: string;
4097
+ subnetId: string;
4098
+ /**
4099
+ * Weight of the L1 validator used while sampling validators within the L1. A zero-weight L1 validator means it has been removed from the L1, and the validationID is no longer valid
4100
+ */
4101
+ weight: number;
4102
+ /**
4103
+ * Remaining L1 validator balance in nAVAX until inactive. It can rejoin L1 sampling by increasing balance with IncreaseL1ValidatorBalanceTx
4104
+ */
4105
+ remainingBalance: number;
4106
+ /**
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
4108
+ */
4109
+ balanceChange?: number;
4110
+ blsCredentials?: Record<string, any>;
4111
+ };
4112
+
4061
4113
  declare enum PChainTransactionType {
4062
4114
  ADD_VALIDATOR_TX = "AddValidatorTx",
4063
4115
  ADD_SUBNET_VALIDATOR_TX = "AddSubnetValidatorTx",
@@ -4074,11 +4126,11 @@ declare enum PChainTransactionType {
4074
4126
  ADD_PERMISSIONLESS_DELEGATOR_TX = "AddPermissionlessDelegatorTx",
4075
4127
  BASE_TX = "BaseTx",
4076
4128
  TRANSFER_SUBNET_OWNERSHIP_TX = "TransferSubnetOwnershipTx",
4077
- CONVERT_SUBNET_TX = "ConvertSubnetTx",
4078
- REGISTER_SUBNET_VALIDATOR_TX = "RegisterSubnetValidatorTx",
4079
- SET_SUBNET_VALIDATOR_WEIGHT_TX = "SetSubnetValidatorWeightTx",
4080
- DISABLE_SUBNET_VALIDATOR_TX = "DisableSubnetValidatorTx",
4081
- INCREASE_BALANCE_TX = "IncreaseBalanceTx",
4129
+ CONVERT_SUBNET_TO_L1TX = "ConvertSubnetToL1Tx",
4130
+ REGISTER_L1VALIDATOR_TX = "RegisterL1ValidatorTx",
4131
+ SET_L1VALIDATOR_WEIGHT_TX = "SetL1ValidatorWeightTx",
4132
+ DISABLE_L1VALIDATOR_TX = "DisableL1ValidatorTx",
4133
+ INCREASE_L1VALIDATOR_BALANCE_TX = "IncreaseL1ValidatorBalanceTx",
4082
4134
  UNKNOWN = "UNKNOWN"
4083
4135
  }
4084
4136
 
@@ -4133,28 +4185,6 @@ type PChainUtxo = {
4133
4185
  utxoType: UtxoType;
4134
4186
  };
4135
4187
 
4136
- type SoVDetailsTransaction = {
4137
- /**
4138
- * Unique SoV ID used network-wide to identify subnet-only validation until its weight is reduced to 0 i.e. removed.
4139
- */
4140
- validationId: string;
4141
- nodeId: string;
4142
- subnetId: string;
4143
- /**
4144
- * Weight of the SoV used while sampling validators within the L1. A zero-weight SoV means it has been removed from the L1, and the validationID is no longer valid
4145
- */
4146
- weight: number;
4147
- /**
4148
- * Remaining SoV balance in nAVAX until inactive. It can rejoin subnet sampling by increasing balance with IncreaseBalanceTx
4149
- */
4150
- remainingBalance: number;
4151
- /**
4152
- * The increase in SoV balance in the current transaction. When the balance is returned after the SoV is disabled or removed, this value is negative
4153
- */
4154
- balanceChange?: number;
4155
- blsCredentials?: Record<string, any>;
4156
- };
4157
-
4158
4188
  type PChainTransaction = {
4159
4189
  /**
4160
4190
  * A P-Chain transaction hash.
@@ -4192,7 +4222,7 @@ type PChainTransaction = {
4192
4222
  /**
4193
4223
  * A list of objects containing P-chain Asset basic info and the amount of that Asset ID.
4194
4224
  */
4195
- amountSovBalanceBurned: Array<AssetAmount>;
4225
+ amountL1ValidatorBalanceBurned: Array<AssetAmount>;
4196
4226
  /**
4197
4227
  * Present for AddValidatorTx, AddSubnetValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx
4198
4228
  */
@@ -4214,13 +4244,13 @@ type PChainTransaction = {
4214
4244
  */
4215
4245
  subnetId?: string;
4216
4246
  /**
4217
- * Details of the L1's validator manager contract and blockchain. Present for the ConvertSubnetTx which transforms a subnet into L1
4247
+ * Details of the L1's validator manager contract and blockchain. Present for the ConvertSubnetToL1Tx which transforms a subnet into L1
4218
4248
  */
4219
4249
  l1ValidatorManagerDetails?: L1ValidatorManagerDetails;
4220
4250
  /**
4221
- * Details of Subnet-only-Validators registered or changed in the current transaction. The details reflect the state at the time of the transaction, not in real-time
4251
+ * Details of L1 validators registered or changed in the current transaction. The details reflect the state at the time of the transaction, not in real-time
4222
4252
  */
4223
- l1ValidatorDetails?: Array<SoVDetailsTransaction>;
4253
+ l1ValidatorDetails?: Array<L1ValidatorDetailsTransaction>;
4224
4254
  /**
4225
4255
  * Present for AddValidatorTx, AddPermissionlessValidatorTx, AddDelegatorTx
4226
4256
  */
@@ -4422,11 +4452,11 @@ declare enum PrimaryNetworkTxType {
4422
4452
  ADD_PERMISSIONLESS_DELEGATOR_TX = "AddPermissionlessDelegatorTx",
4423
4453
  BASE_TX = "BaseTx",
4424
4454
  TRANSFER_SUBNET_OWNERSHIP_TX = "TransferSubnetOwnershipTx",
4425
- CONVERT_SUBNET_TX = "ConvertSubnetTx",
4426
- REGISTER_SUBNET_VALIDATOR_TX = "RegisterSubnetValidatorTx",
4427
- SET_SUBNET_VALIDATOR_WEIGHT_TX = "SetSubnetValidatorWeightTx",
4428
- DISABLE_SUBNET_VALIDATOR_TX = "DisableSubnetValidatorTx",
4429
- INCREASE_BALANCE_TX = "IncreaseBalanceTx",
4455
+ CONVERT_SUBNET_TO_L1TX = "ConvertSubnetToL1Tx",
4456
+ REGISTER_L1VALIDATOR_TX = "RegisterL1ValidatorTx",
4457
+ SET_L1VALIDATOR_WEIGHT_TX = "SetL1ValidatorWeightTx",
4458
+ DISABLE_L1VALIDATOR_TX = "DisableL1ValidatorTx",
4459
+ INCREASE_L1VALIDATOR_BALANCE_TX = "IncreaseL1ValidatorBalanceTx",
4430
4460
  UNKNOWN = "UNKNOWN",
4431
4461
  CREATE_ASSET_TX = "CreateAssetTx",
4432
4462
  OPERATION_TX = "OperationTx"
@@ -4461,13 +4491,13 @@ declare class PrimaryNetworkTransactionsService {
4461
4491
  *
4462
4492
  * Transactions are filterable by addresses, txTypes, and timestamps. When querying for latest transactions without an address parameter, filtering by txTypes and timestamps is not supported. An address filter must be provided to utilize txTypes and timestamp filters.
4463
4493
  *
4464
- * For P-Chain, you can fetch all the Subnet-only-Validator (SoV) related transactions like ConvertSubnetTx, IncreaseBalanceTx etc. using the unique SoV validation ID. These transactions are further filterable by txTypes and timestamps as well.
4494
+ * For P-Chain, you can fetch all L1 validators related transactions like ConvertSubnetToL1Tx, IncreaseL1ValidatorBalanceTx etc. using the unique L1 validation ID. These transactions are further filterable by txTypes and timestamps as well.
4465
4495
  *
4466
4496
  * Given that each transaction may return a large number of UTXO objects, bounded only by the maximum transaction size, the query may return less transactions than the provided page size. The result will contain less results than the page size if the number of utxos contained in the resulting transactions reach a performance threshold.
4467
4497
  * @returns any Successful response
4468
4498
  * @throws ApiError
4469
4499
  */
4470
- listLatestPrimaryNetworkTransactions({ blockchainId, network, addresses, sovValidationId, txTypes, startTimestamp, endTimestamp, pageToken, pageSize, sortOrder, }: {
4500
+ listLatestPrimaryNetworkTransactions({ blockchainId, network, addresses, l1ValidationId, txTypes, startTimestamp, endTimestamp, pageToken, pageSize, sortOrder, }: {
4471
4501
  /**
4472
4502
  * A primary network blockchain id or alias.
4473
4503
  */
@@ -4480,7 +4510,7 @@ declare class PrimaryNetworkTransactionsService {
4480
4510
  * A comma separated list of X-Chain or P-Chain wallet addresses, starting with "avax"/"fuji", "P-avax"/"P-fuji" or "X-avax"/"X-fuji". Also accepts EVM formatted addresses starting with "0x" for C-Chain-related atomic transaction lookups.
4481
4511
  */
4482
4512
  addresses?: string;
4483
- sovValidationId?: string;
4513
+ l1ValidationId?: string;
4484
4514
  /**
4485
4515
  * Query param for filtering items based on transaction types.
4486
4516
  */
@@ -5026,7 +5056,7 @@ type CreateWebhookRequest = {
5026
5056
  name?: string;
5027
5057
  description?: string;
5028
5058
  /**
5029
- * Whether to include traces in the webhook payload.
5059
+ * Whether to include traces in the webhook payload. Traces are only available for C-Chain on chainId 43113 and 43114.
5030
5060
  */
5031
5061
  includeInternalTxs?: boolean;
5032
5062
  /**
@@ -5086,6 +5116,9 @@ type UpdateWebhookRequest = {
5086
5116
  description?: string;
5087
5117
  url?: string;
5088
5118
  status?: WebhookStatusType;
5119
+ /**
5120
+ * Whether to include traces in the webhook payload. Traces are only available for C-Chain on chainId 43113 and 43114.
5121
+ */
5089
5122
  includeInternalTxs?: boolean;
5090
5123
  includeLogs?: boolean;
5091
5124
  };
@@ -5400,4 +5433,4 @@ type Unauthorized = {
5400
5433
  error: string;
5401
5434
  };
5402
5435
 
5403
- export { ActiveDelegatorDetails, ActiveValidatorDetails, AddressActivityMetadata, AddressesChangeRequest, AggregatedAssetAmount, ApiError, ApiFeature, AssetAmount, AssetWithPriceInfo, BadGateway, BadRequest, BalanceOwner, BaseHttpRequest, Blockchain, BlockchainId, BlockchainIds, BlockchainInfo, BlsCredentials, CChainAtomicBalances, CChainExportTransaction, CChainImportTransaction, CChainSharedAssetBalance, CancelError, CancelablePromise, ChainAddressChainIdMap, ChainAddressChainIdMapListResponse, ChainInfo, ChainStatus, CompletedDelegatorDetails, CompletedValidatorDetails, ContractDeploymentDetails, ContractSubmissionBody, ContractSubmissionErc1155, ContractSubmissionErc20, ContractSubmissionErc721, ContractSubmissionUnknown, CreateEvmTransactionExportRequest, CreatePrimaryNetworkTransactionExportRequest, CreateWebhookRequest, CurrencyCode, DataApiUsageMetricsService, DataListChainsResponse, DefaultService, DelegationStatusType, DelegatorsDetails, DeliveredSourceNotIndexedTeleporterMessage, DeliveredTeleporterMessage, EVMInput, EVMOperationType, EVMOutput, Erc1155Contract, Erc1155Token, Erc1155TokenBalance, Erc1155TokenMetadata, Erc1155Transfer, Erc1155TransferDetails, Erc20Contract, Erc20Token, Erc20TokenBalance, Erc20Transfer, Erc20TransferDetails, Erc721Contract, Erc721Token, Erc721TokenBalance, Erc721TokenMetadata, Erc721Transfer, Erc721TransferDetails, EventType, EvmBalancesService, EvmBlock, EvmBlocksService, EvmChainsService, EvmContractsService, EvmNetworkOptions, EvmTransactionsService, Forbidden, FullNativeTransactionDetails, GetChainResponse, GetEvmBlockResponse, GetNativeBalanceResponse, GetNetworkDetailsResponse, GetPrimaryNetworkBlockResponse, GetTransactionResponse, Glacier, HealthCheckService, HistoricalReward, ImageAsset, InternalServerError, InternalTransaction, InternalTransactionDetails, InternalTransactionOpCall, L1ValidatorManagerDetails, ListAddressChainsResponse, ListBlockchainsResponse, ListCChainAtomicBalancesResponse, ListCChainAtomicTransactionsResponse, ListChainsResponse, ListCollectibleBalancesResponse, ListContractsResponse, ListDelegatorDetailsResponse, ListErc1155BalancesResponse, ListErc1155TransactionsResponse, ListErc20BalancesResponse, ListErc20TransactionsResponse, ListErc721BalancesResponse, ListErc721TransactionsResponse, ListEvmBlocksResponse, ListHistoricalRewardsResponse, ListInternalTransactionsResponse, ListNativeTransactionsResponse, ListNftTokens, ListPChainBalancesResponse, ListPChainTransactionsResponse, ListPChainUtxosResponse, ListPendingRewardsResponse, ListPrimaryNetworkBlocksResponse, ListSubnetOnlyValidatorsResponse, 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, RpcUsageMetricsResponseDTO, RpcUsageMetricsValueAggregated, ServiceUnavailable, SharedSecretsResponse, SignatureAggregationResponse, SignatureAggregatorRequest, SignatureAggregatorService, SoVDetailsTransaction, SortByOption, SortOrder, SovDetailsFull, StakingDistribution, Subnet, SubnetOwnershipInfo, TeleporterDestinationTransaction, TeleporterMessageInfo, TeleporterReceipt, TeleporterRewardDetails, TeleporterService, TeleporterSourceTransaction, TimeIntervalGranularityExtended, TooManyRequests, TransactionDetails, TransactionDirectionType, TransactionExportMetadata, TransactionMethodType, TransactionStatus, TransactionVertexDetail, Unauthorized, UnknownContract, UpdateContractResponse, UpdateWebhookRequest, UsageMetricsGroupByEnum, UsageMetricsResponseDTO, UsageMetricsValueDTO, UtilityAddresses, Utxo, UtxoCredential, UtxoType, ValidationStatusType, ValidatorHealthDetails, ValidatorsDetails, VmName, WebhookResponse, WebhookStatus, WebhookStatusType, WebhooksService, XChainAssetDetails, XChainBalances, XChainId, XChainLinearTransaction, XChainNonLinearTransaction, XChainSharedAssetBalance, XChainTransactionType, XChainVertex };
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, RpcUsageMetricsResponseDTO, RpcUsageMetricsValueAggregated, ServiceUnavailable, SharedSecretsResponse, SignatureAggregationResponse, SignatureAggregatorRequest, SignatureAggregatorService, SortByOption, SortOrder, StakingDistribution, Subnet, SubnetOwnershipInfo, SubnetRpcTimeIntervalGranularity, 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 };