@avalabs/glacier-sdk 3.1.0-canary.b86a6f6.0 → 3.1.0-canary.bb4196d.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 (81) hide show
  1. package/dist/index.d.ts +900 -328
  2. package/dist/index.js +1 -1
  3. package/esm/generated/Glacier.d.ts +2 -0
  4. package/esm/generated/Glacier.js +1 -1
  5. package/esm/generated/models/ActiveValidatorDetails.d.ts +21 -0
  6. package/esm/generated/models/CompletedDelegatorDetails.d.ts +6 -0
  7. package/esm/generated/models/CompletedValidatorDetails.d.ts +3 -0
  8. package/esm/generated/models/CreateWebhookRequest.d.ts +1 -1
  9. package/esm/generated/models/DeliveredIcmMessage.d.ts +31 -0
  10. package/esm/generated/models/DeliveredIcmMessage.js +1 -0
  11. package/esm/generated/models/DeliveredSourceNotIndexedIcmMessage.d.ts +29 -0
  12. package/esm/generated/models/DeliveredSourceNotIndexedIcmMessage.js +1 -0
  13. package/esm/generated/models/Erc20TokenBalance.d.ts +11 -0
  14. package/esm/generated/models/Erc20TokenBalance.js +1 -1
  15. package/esm/generated/models/EvmBlock.d.ts +4 -0
  16. package/esm/generated/models/FullNativeTransactionDetails.d.ts +4 -0
  17. package/esm/generated/models/GetEvmBlockResponse.d.ts +4 -0
  18. package/esm/generated/models/GetPrimaryNetworkBlockResponse.d.ts +2 -2
  19. package/esm/generated/models/IcmDestinationTransaction.d.ts +9 -0
  20. package/esm/generated/models/IcmReceipt.d.ts +6 -0
  21. package/esm/generated/models/IcmRewardDetails.d.ts +37 -0
  22. package/esm/generated/models/IcmRewardDetails.js +1 -0
  23. package/esm/generated/models/IcmSourceTransaction.d.ts +7 -0
  24. package/esm/generated/models/L1ValidatorDetailsFull.d.ts +33 -0
  25. package/esm/generated/models/L1ValidatorDetailsTransaction.d.ts +23 -0
  26. package/esm/generated/models/ListErc1155BalancesResponse.d.ts +5 -0
  27. package/esm/generated/models/ListErc20BalancesResponse.d.ts +5 -0
  28. package/esm/generated/models/ListErc721BalancesResponse.d.ts +5 -0
  29. package/esm/generated/models/ListIcmMessagesResponse.d.ts +12 -0
  30. package/esm/generated/models/{ListSubnetOnlyValidatorsResponse.d.ts → ListL1ValidatorsResponse.d.ts} +4 -4
  31. package/esm/generated/models/NativeTransaction.d.ts +4 -0
  32. package/esm/generated/models/PChainTransaction.d.ts +25 -13
  33. package/esm/generated/models/PChainTransactionType.d.ts +5 -5
  34. package/esm/generated/models/PChainTransactionType.js +1 -1
  35. package/esm/generated/models/PChainUtxo.d.ts +27 -0
  36. package/esm/generated/models/PendingDelegatorDetails.d.ts +6 -0
  37. package/esm/generated/models/PendingIcmMessage.d.ts +29 -0
  38. package/esm/generated/models/PendingIcmMessage.js +1 -0
  39. package/esm/generated/models/PendingValidatorDetails.d.ts +3 -0
  40. package/esm/generated/models/PrimaryNetworkBlock.d.ts +2 -2
  41. package/esm/generated/models/PrimaryNetworkRpcMetricsGroupByEnum.d.ts +9 -0
  42. package/esm/generated/models/PrimaryNetworkRpcMetricsGroupByEnum.js +1 -0
  43. package/esm/generated/models/PrimaryNetworkTxType.d.ts +5 -5
  44. package/esm/generated/models/PrimaryNetworkTxType.js +1 -1
  45. package/esm/generated/models/RemovedValidatorDetails.d.ts +9 -0
  46. package/esm/generated/models/RpcUsageMetricsGroupByEnum.d.ts +7 -0
  47. package/esm/generated/models/RpcUsageMetricsGroupByEnum.js +1 -0
  48. package/esm/generated/models/RpcUsageMetricsValueAggregated.d.ts +4 -0
  49. package/esm/generated/models/SignatureAggregatorRequest.d.ts +1 -7
  50. package/esm/generated/models/StakingDistribution.d.ts +9 -0
  51. package/esm/generated/models/Subnet.d.ts +4 -0
  52. package/esm/generated/models/SubnetRpcTimeIntervalGranularity.d.ts +8 -0
  53. package/esm/generated/models/SubnetRpcTimeIntervalGranularity.js +1 -0
  54. package/esm/generated/models/{RpcUsageMetricsResponseDTO.d.ts → SubnetRpcUsageMetricsResponseDTO.d.ts} +6 -6
  55. package/esm/generated/models/UpdateWebhookRequest.d.ts +3 -0
  56. package/esm/generated/models/UtxoType.d.ts +3 -0
  57. package/esm/generated/models/ValidatorsDetails.d.ts +6 -0
  58. package/esm/generated/services/DataApiUsageMetricsService.d.ts +72 -22
  59. package/esm/generated/services/DataApiUsageMetricsService.js +1 -1
  60. package/esm/generated/services/EvmBlocksService.d.ts +21 -0
  61. package/esm/generated/services/EvmBlocksService.js +1 -1
  62. package/esm/generated/services/EvmChainsService.d.ts +69 -4
  63. package/esm/generated/services/EvmChainsService.js +1 -1
  64. package/esm/generated/services/EvmTransactionsService.d.ts +34 -1
  65. package/esm/generated/services/EvmTransactionsService.js +1 -1
  66. package/esm/generated/services/InterchainMessagingService.d.ts +90 -0
  67. package/esm/generated/services/InterchainMessagingService.js +1 -0
  68. package/esm/generated/services/PrimaryNetworkBlocksService.d.ts +18 -2
  69. package/esm/generated/services/PrimaryNetworkBlocksService.js +1 -1
  70. package/esm/generated/services/PrimaryNetworkService.d.ts +9 -9
  71. package/esm/generated/services/PrimaryNetworkService.js +1 -1
  72. package/esm/generated/services/PrimaryNetworkTransactionsService.d.ts +3 -3
  73. package/esm/generated/services/PrimaryNetworkTransactionsService.js +1 -1
  74. package/esm/generated/services/SignatureAggregatorService.d.ts +6 -1
  75. package/esm/generated/services/SignatureAggregatorService.js +1 -1
  76. package/esm/generated/services/TeleporterService.d.ts +12 -6
  77. package/esm/index.d.ts +16 -4
  78. package/esm/index.js +1 -1
  79. package/package.json +2 -2
  80. package/esm/generated/models/SoVDetailsTransaction.d.ts +0 -23
  81. package/esm/generated/models/SovDetailsFull.d.ts +0 -33
@@ -34,16 +34,43 @@ type PChainUtxo = {
34
34
  assetId: string;
35
35
  blockNumber: string;
36
36
  blockTimestamp: number;
37
+ /**
38
+ * Block height in which the transaction consuming this UTXO was included
39
+ */
37
40
  consumingBlockNumber?: string;
41
+ /**
42
+ * Timestamp in seconds at which this UTXO is used in a consuming transaction
43
+ */
38
44
  consumingBlockTimestamp?: number;
45
+ /**
46
+ * Timestamp in seconds after which this UTXO can be consumed
47
+ */
39
48
  platformLocktime?: number;
49
+ /**
50
+ * The index of the UTXO in the transaction
51
+ */
40
52
  outputIndex: number;
41
53
  rewardType?: RewardType;
54
+ /**
55
+ * Timestamp in seconds before which a UTXO can only be used for staking transactions. After stakeable locktime, a UTXO can be used for anything
56
+ */
42
57
  stakeableLocktime?: number;
43
58
  staked?: boolean;
59
+ /**
60
+ * The minimum number of signatures required to spend this UTXO
61
+ */
44
62
  threshold?: number;
63
+ /**
64
+ * The hash of the transaction that created this UTXO
65
+ */
45
66
  txHash: string;
67
+ /**
68
+ * Timestamp in seconds after which the staked UTXO will be unlocked.
69
+ */
46
70
  utxoEndTimestamp?: number;
71
+ /**
72
+ * Timestamp in seconds at which the staked UTXO was locked.
73
+ */
47
74
  utxoStartTimestamp?: number;
48
75
  utxoType: UtxoType;
49
76
  };
@@ -6,7 +6,13 @@ type PendingDelegatorDetails = {
6
6
  delegationFee: string;
7
7
  startTimestamp: number;
8
8
  endTimestamp: number;
9
+ /**
10
+ * Estimated total rewards that will be distributed for the successful delegation.
11
+ */
9
12
  estimatedGrossReward: string;
13
+ /**
14
+ * Estimated net rewards that will be distributed to the delegator after deducting delegation fee from the gross reward for the successful delegation.
15
+ */
10
16
  estimatedNetReward: string;
11
17
  delegationStatus: PendingDelegatorDetails.delegationStatus;
12
18
  };
@@ -0,0 +1,29 @@
1
+ import { IcmReceipt } from './IcmReceipt.js';
2
+ import { IcmRewardDetails } from './IcmRewardDetails.js';
3
+ import { IcmSourceTransaction } from './IcmSourceTransaction.js';
4
+
5
+ type PendingIcmMessage = {
6
+ messageId: string;
7
+ icmContractAddress: string;
8
+ sourceBlockchainId: string;
9
+ destinationBlockchainId: string;
10
+ sourceEvmChainId: string;
11
+ destinationEvmChainId: string;
12
+ messageNonce: string;
13
+ from: string;
14
+ to: string;
15
+ data?: string;
16
+ messageExecuted: boolean;
17
+ receipts: Array<IcmReceipt>;
18
+ receiptDelivered: boolean;
19
+ rewardDetails: IcmRewardDetails;
20
+ sourceTransaction: IcmSourceTransaction;
21
+ status: PendingIcmMessage.status;
22
+ };
23
+ declare namespace PendingIcmMessage {
24
+ enum status {
25
+ PENDING = "pending"
26
+ }
27
+ }
28
+
29
+ export { PendingIcmMessage };
@@ -0,0 +1 @@
1
+ var t,s;((s=t||(t={})).status||(s.status={})).PENDING="pending";export{t as PendingIcmMessage};
@@ -5,6 +5,9 @@ type PendingValidatorDetails = {
5
5
  nodeId: string;
6
6
  subnetId: string;
7
7
  amountStaked: string;
8
+ /**
9
+ * The percentage of total estimated delegator rewards allocated to validator nodes for supporting delegations.
10
+ */
8
11
  delegationFee?: string;
9
12
  startTimestamp: number;
10
13
  endTimestamp: number;
@@ -9,8 +9,8 @@ type PrimaryNetworkBlock = {
9
9
  txCount: number;
10
10
  transactions: Array<string>;
11
11
  blockSizeBytes: number;
12
- subnetOnlyValidatorsAccruedFees?: number;
13
- activeSubnetOnlyValidators?: number;
12
+ l1ValidatorsAccruedFees?: number;
13
+ activeL1Validators?: number;
14
14
  currentSupply?: string;
15
15
  proposerDetails?: ProposerDetails;
16
16
  };
@@ -0,0 +1,9 @@
1
+ declare enum PrimaryNetworkRpcMetricsGroupByEnum {
2
+ REQUEST_PATH = "requestPath",
3
+ RESPONSE_CODE = "responseCode",
4
+ COUNTRY = "country",
5
+ CONTINENT = "continent",
6
+ USER_AGENT = "userAgent"
7
+ }
8
+
9
+ export { PrimaryNetworkRpcMetricsGroupByEnum };
@@ -0,0 +1 @@
1
+ var e=(e=>(e.REQUEST_PATH="requestPath",e.RESPONSE_CODE="responseCode",e.COUNTRY="country",e.CONTINENT="continent",e.USER_AGENT="userAgent",e))(e||{});export{e as PrimaryNetworkRpcMetricsGroupByEnum};
@@ -14,11 +14,11 @@ declare enum PrimaryNetworkTxType {
14
14
  ADD_PERMISSIONLESS_DELEGATOR_TX = "AddPermissionlessDelegatorTx",
15
15
  BASE_TX = "BaseTx",
16
16
  TRANSFER_SUBNET_OWNERSHIP_TX = "TransferSubnetOwnershipTx",
17
- CONVERT_SUBNET_TX = "ConvertSubnetTx",
18
- REGISTER_SUBNET_VALIDATOR_TX = "RegisterSubnetValidatorTx",
19
- SET_SUBNET_VALIDATOR_WEIGHT_TX = "SetSubnetValidatorWeightTx",
20
- DISABLE_SUBNET_VALIDATOR_TX = "DisableSubnetValidatorTx",
21
- INCREASE_BALANCE_TX = "IncreaseBalanceTx",
17
+ CONVERT_SUBNET_TO_L1TX = "ConvertSubnetToL1Tx",
18
+ REGISTER_L1VALIDATOR_TX = "RegisterL1ValidatorTx",
19
+ SET_L1VALIDATOR_WEIGHT_TX = "SetL1ValidatorWeightTx",
20
+ DISABLE_L1VALIDATOR_TX = "DisableL1ValidatorTx",
21
+ INCREASE_L1VALIDATOR_BALANCE_TX = "IncreaseL1ValidatorBalanceTx",
22
22
  UNKNOWN = "UNKNOWN",
23
23
  CREATE_ASSET_TX = "CreateAssetTx",
24
24
  OPERATION_TX = "OperationTx"
@@ -1 +1 @@
1
- var T=(T=>(T.ADD_VALIDATOR_TX="AddValidatorTx",T.ADD_SUBNET_VALIDATOR_TX="AddSubnetValidatorTx",T.ADD_DELEGATOR_TX="AddDelegatorTx",T.CREATE_CHAIN_TX="CreateChainTx",T.CREATE_SUBNET_TX="CreateSubnetTx",T.IMPORT_TX="ImportTx",T.EXPORT_TX="ExportTx",T.ADVANCE_TIME_TX="AdvanceTimeTx",T.REWARD_VALIDATOR_TX="RewardValidatorTx",T.REMOVE_SUBNET_VALIDATOR_TX="RemoveSubnetValidatorTx",T.TRANSFORM_SUBNET_TX="TransformSubnetTx",T.ADD_PERMISSIONLESS_VALIDATOR_TX="AddPermissionlessValidatorTx",T.ADD_PERMISSIONLESS_DELEGATOR_TX="AddPermissionlessDelegatorTx",T.BASE_TX="BaseTx",T.TRANSFER_SUBNET_OWNERSHIP_TX="TransferSubnetOwnershipTx",T.CONVERT_SUBNET_TX="ConvertSubnetTx",T.REGISTER_SUBNET_VALIDATOR_TX="RegisterSubnetValidatorTx",T.SET_SUBNET_VALIDATOR_WEIGHT_TX="SetSubnetValidatorWeightTx",T.DISABLE_SUBNET_VALIDATOR_TX="DisableSubnetValidatorTx",T.INCREASE_BALANCE_TX="IncreaseBalanceTx",T.UNKNOWN="UNKNOWN",T.CREATE_ASSET_TX="CreateAssetTx",T.OPERATION_TX="OperationTx",T))(T||{});export{T as PrimaryNetworkTxType};
1
+ var T=(T=>(T.ADD_VALIDATOR_TX="AddValidatorTx",T.ADD_SUBNET_VALIDATOR_TX="AddSubnetValidatorTx",T.ADD_DELEGATOR_TX="AddDelegatorTx",T.CREATE_CHAIN_TX="CreateChainTx",T.CREATE_SUBNET_TX="CreateSubnetTx",T.IMPORT_TX="ImportTx",T.EXPORT_TX="ExportTx",T.ADVANCE_TIME_TX="AdvanceTimeTx",T.REWARD_VALIDATOR_TX="RewardValidatorTx",T.REMOVE_SUBNET_VALIDATOR_TX="RemoveSubnetValidatorTx",T.TRANSFORM_SUBNET_TX="TransformSubnetTx",T.ADD_PERMISSIONLESS_VALIDATOR_TX="AddPermissionlessValidatorTx",T.ADD_PERMISSIONLESS_DELEGATOR_TX="AddPermissionlessDelegatorTx",T.BASE_TX="BaseTx",T.TRANSFER_SUBNET_OWNERSHIP_TX="TransferSubnetOwnershipTx",T.CONVERT_SUBNET_TO_L1TX="ConvertSubnetToL1Tx",T.REGISTER_L1VALIDATOR_TX="RegisterL1ValidatorTx",T.SET_L1VALIDATOR_WEIGHT_TX="SetL1ValidatorWeightTx",T.DISABLE_L1VALIDATOR_TX="DisableL1ValidatorTx",T.INCREASE_L1VALIDATOR_BALANCE_TX="IncreaseL1ValidatorBalanceTx",T.UNKNOWN="UNKNOWN",T.CREATE_ASSET_TX="CreateAssetTx",T.OPERATION_TX="OperationTx",T))(T||{});export{T as PrimaryNetworkTxType};
@@ -5,6 +5,9 @@ type RemovedValidatorDetails = {
5
5
  nodeId: string;
6
6
  subnetId: string;
7
7
  amountStaked: string;
8
+ /**
9
+ * The percentage of total estimated delegator rewards allocated to validator nodes for supporting delegations.
10
+ */
8
11
  delegationFee?: string;
9
12
  startTimestamp: number;
10
13
  endTimestamp: number;
@@ -12,7 +15,13 @@ type RemovedValidatorDetails = {
12
15
  * Present for AddPermissionlessValidatorTx
13
16
  */
14
17
  blsCredentials?: BlsCredentials;
18
+ /**
19
+ * The transaction hash that removed the permissioned subnet validator.
20
+ */
15
21
  removeTxHash: string;
22
+ /**
23
+ * The timestamp of the transaction that removed the permissioned subnet validator.
24
+ */
16
25
  removeTimestamp: number;
17
26
  validationStatus: RemovedValidatorDetails.validationStatus;
18
27
  };
@@ -0,0 +1,7 @@
1
+ declare enum RpcUsageMetricsGroupByEnum {
2
+ RPC_METHOD = "rpcMethod",
3
+ RESPONSE_CODE = "responseCode",
4
+ RL_BYPASS_TOKEN = "rlBypassToken"
5
+ }
6
+
7
+ export { RpcUsageMetricsGroupByEnum };
@@ -0,0 +1 @@
1
+ var e=(e=>(e.RPC_METHOD="rpcMethod",e.RESPONSE_CODE="responseCode",e.RL_BYPASS_TOKEN="rlBypassToken",e))(e||{});export{e as RpcUsageMetricsGroupByEnum};
@@ -23,6 +23,10 @@ type RpcUsageMetricsValueAggregated = {
23
23
  * The number of invalid requests
24
24
  */
25
25
  invalidRequests: number;
26
+ /**
27
+ * The number of API credits wasted on invalid requests
28
+ */
29
+ apiCreditsWasted: number;
26
30
  /**
27
31
  * Column name used for data aggregation
28
32
  */
@@ -1,11 +1,5 @@
1
1
  type SignatureAggregatorRequest = {
2
- /**
3
- * Must be defined if justification is not defined
4
- */
5
- message?: string;
6
- /**
7
- * Must be defined if message is not defined
8
- */
2
+ message: string;
9
3
  justification?: string;
10
4
  signingSubnetId?: string;
11
5
  quorumPercentage?: number;
@@ -1,6 +1,15 @@
1
1
  type StakingDistribution = {
2
+ /**
3
+ * AvalancheGo version for the validator node.
4
+ */
2
5
  version: string;
6
+ /**
7
+ * The total amount staked by validators using this version.
8
+ */
3
9
  amountStaked: string;
10
+ /**
11
+ * The number of validators using this version.
12
+ */
4
13
  validatorCount: number;
5
14
  };
6
15
 
@@ -29,6 +29,10 @@ type Subnet = {
29
29
  * Whether the subnet is an L1 or not.
30
30
  */
31
31
  isL1: boolean;
32
+ /**
33
+ * Transaction hash of ConvertSubnetToL1Tx which converted this Subnet to L1.
34
+ */
35
+ l1ConversionTransactionHash?: string;
32
36
  /**
33
37
  * L1 validator manager details.
34
38
  */
@@ -0,0 +1,8 @@
1
+ declare enum SubnetRpcTimeIntervalGranularity {
2
+ HOURLY = "hourly",
3
+ DAILY = "daily",
4
+ WEEKLY = "weekly",
5
+ MONTHLY = "monthly"
6
+ }
7
+
8
+ export { SubnetRpcTimeIntervalGranularity };
@@ -0,0 +1 @@
1
+ var l=(l=>(l.HOURLY="hourly",l.DAILY="daily",l.WEEKLY="weekly",l.MONTHLY="monthly",l))(l||{});export{l as SubnetRpcTimeIntervalGranularity};
@@ -1,18 +1,18 @@
1
1
  import { RpcMetrics } from './RpcMetrics.js';
2
2
 
3
- type RpcUsageMetricsResponseDTO = {
3
+ type SubnetRpcUsageMetricsResponseDTO = {
4
4
  /**
5
5
  * Duration in which the metrics value is aggregated
6
6
  */
7
7
  aggregateDuration: string;
8
- /**
9
- * ChainId for which the metrics are aggregated
10
- */
11
- chainId: string;
12
8
  /**
13
9
  * Metrics values
14
10
  */
15
11
  metrics: Array<RpcMetrics>;
12
+ /**
13
+ * ChainId for which the metrics are aggregated
14
+ */
15
+ chainId: string;
16
16
  };
17
17
 
18
- export { RpcUsageMetricsResponseDTO };
18
+ export { SubnetRpcUsageMetricsResponseDTO };
@@ -5,6 +5,9 @@ type UpdateWebhookRequest = {
5
5
  description?: string;
6
6
  url?: string;
7
7
  status?: WebhookStatusType;
8
+ /**
9
+ * Whether to include traces in the webhook payload. Traces are only available for C-Chain on chainId 43113 and 43114.
10
+ */
8
11
  includeInternalTxs?: boolean;
9
12
  includeLogs?: boolean;
10
13
  };
@@ -1,3 +1,6 @@
1
+ /**
2
+ * Indicates whether the UTXO is staked or transferable
3
+ */
1
4
  declare enum UtxoType {
2
5
  STAKE = "STAKE",
3
6
  TRANSFER = "TRANSFER"
@@ -3,8 +3,14 @@ import { StakingDistribution } from './StakingDistribution.js';
3
3
  type ValidatorsDetails = {
4
4
  validatorCount: number;
5
5
  totalAmountStaked: string;
6
+ /**
7
+ * Total potential rewards from currently active validations and delegations.
8
+ */
6
9
  estimatedAnnualStakingReward: string;
7
10
  stakingDistributionByVersion: Array<StakingDistribution>;
11
+ /**
12
+ * Ratio of total active stake amount to the current supply.
13
+ */
8
14
  stakingRatio: string;
9
15
  };
10
16
 
@@ -1,5 +1,9 @@
1
1
  import { LogsResponseDTO } from '../models/LogsResponseDTO.js';
2
- import { RpcUsageMetricsResponseDTO } from '../models/RpcUsageMetricsResponseDTO.js';
2
+ import { Network } from '../models/Network.js';
3
+ import { PrimaryNetworkRpcMetricsGroupByEnum } from '../models/PrimaryNetworkRpcMetricsGroupByEnum.js';
4
+ import { RpcUsageMetricsGroupByEnum } from '../models/RpcUsageMetricsGroupByEnum.js';
5
+ import { SubnetRpcTimeIntervalGranularity } from '../models/SubnetRpcTimeIntervalGranularity.js';
6
+ import { SubnetRpcUsageMetricsResponseDTO } from '../models/SubnetRpcUsageMetricsResponseDTO.js';
3
7
  import { TimeIntervalGranularityExtended } from '../models/TimeIntervalGranularityExtended.js';
4
8
  import { UsageMetricsGroupByEnum } from '../models/UsageMetricsGroupByEnum.js';
5
9
  import { UsageMetricsResponseDTO } from '../models/UsageMetricsResponseDTO.js';
@@ -15,7 +19,7 @@ declare class DataApiUsageMetricsService {
15
19
  * @returns UsageMetricsResponseDTO Successful response
16
20
  * @throws ApiError
17
21
  */
18
- getApiUsageMetrics({ orgId, startTimestamp, endTimestamp, timeInterval, groupBy, chainId, requestPath, responseCode, requestType, apiKeyId, }: {
22
+ getApiUsageMetrics({ orgId, startTimestamp, endTimestamp, timeInterval, groupBy, chainId, responseCode, requestType, apiKeyId, requestPath, }: {
19
23
  /**
20
24
  * Organization ID to fetch usage metrics for
21
25
  */
@@ -40,10 +44,6 @@ declare class DataApiUsageMetricsService {
40
44
  * Filter data by chain ID.
41
45
  */
42
46
  chainId?: string;
43
- /**
44
- * Filter data by request path.
45
- */
46
- requestPath?: string;
47
47
  /**
48
48
  * Filter data by response status code.
49
49
  */
@@ -56,6 +56,10 @@ declare class DataApiUsageMetricsService {
56
56
  * Filter data by API key ID.
57
57
  */
58
58
  apiKeyId?: string;
59
+ /**
60
+ * Filter data by request path.
61
+ */
62
+ requestPath?: string;
59
63
  }): CancelablePromise<UsageMetricsResponseDTO>;
60
64
  /**
61
65
  * Get logs for requests made by client
@@ -63,7 +67,7 @@ declare class DataApiUsageMetricsService {
63
67
  * @returns LogsResponseDTO Successful response
64
68
  * @throws ApiError
65
69
  */
66
- getApiLogs({ orgId, startTimestamp, endTimestamp, chainId, requestPath, responseCode, requestType, apiKeyId, pageToken, pageSize, }: {
70
+ getApiLogs({ orgId, startTimestamp, endTimestamp, chainId, responseCode, requestType, apiKeyId, requestPath, pageToken, pageSize, }: {
67
71
  /**
68
72
  * Organization ID to fetch usage metrics for
69
73
  */
@@ -80,10 +84,6 @@ declare class DataApiUsageMetricsService {
80
84
  * Filter data by chain ID.
81
85
  */
82
86
  chainId?: string;
83
- /**
84
- * Filter data by request path.
85
- */
86
- requestPath?: string;
87
87
  /**
88
88
  * Filter data by response status code.
89
89
  */
@@ -96,6 +96,10 @@ declare class DataApiUsageMetricsService {
96
96
  * Filter data by API key ID.
97
97
  */
98
98
  apiKeyId?: string;
99
+ /**
100
+ * Filter data by request path.
101
+ */
102
+ requestPath?: string;
99
103
  /**
100
104
  * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
101
105
  */
@@ -107,15 +111,16 @@ declare class DataApiUsageMetricsService {
107
111
  }): CancelablePromise<LogsResponseDTO>;
108
112
  /**
109
113
  * Get usage metrics for the Subnet RPC
110
- * Gets metrics for Subnet RPC usage over a specified time interval aggregated at the specified time-duration granularity.
111
- * @returns RpcUsageMetricsResponseDTO Successful response
114
+ * Gets metrics for public Subnet RPC usage over a specified time interval aggregated at the specified time-duration granularity.
115
+ * @returns SubnetRpcUsageMetricsResponseDTO Successful response
112
116
  * @throws ApiError
113
117
  */
114
- getRpcUsageMetrics({ timeInterval, startTimestamp, endTimestamp, groupBy, chainId, requestPath, responseCode, rpcMethod, rlBypassApiToken, }: {
118
+ getRpcUsageMetrics({ timeInterval, startTimestamp, endTimestamp, groupBy, chainId, responseCode, rpcMethod, rlBypassApiToken, }: {
115
119
  /**
116
- * Query param for setting time interval of data aggregation.
120
+ * Time interval granularity for data aggregation for subnet
121
+ * rpc metrics
117
122
  */
118
- timeInterval?: string;
123
+ timeInterval?: SubnetRpcTimeIntervalGranularity;
119
124
  /**
120
125
  * 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.
121
126
  */
@@ -127,15 +132,11 @@ declare class DataApiUsageMetricsService {
127
132
  /**
128
133
  * Query param for the criterion used for grouping metrics
129
134
  */
130
- groupBy?: UsageMetricsGroupByEnum;
135
+ groupBy?: RpcUsageMetricsGroupByEnum;
131
136
  /**
132
137
  * Filter data by chain ID.
133
138
  */
134
139
  chainId?: string;
135
- /**
136
- * Filter data by request path.
137
- */
138
- requestPath?: string;
139
140
  /**
140
141
  * Filter data by response status code.
141
142
  */
@@ -148,7 +149,56 @@ declare class DataApiUsageMetricsService {
148
149
  * Filter data by Rl Bypass API Token.
149
150
  */
150
151
  rlBypassApiToken?: string;
151
- }): CancelablePromise<RpcUsageMetricsResponseDTO>;
152
+ }): CancelablePromise<SubnetRpcUsageMetricsResponseDTO>;
153
+ /**
154
+ * Get usage metrics for the Primary Network RPC
155
+ * Gets metrics for public Primary Network RPC usage over a specified time interval aggregated at the specified time-duration granularity.
156
+ * @returns SubnetRpcUsageMetricsResponseDTO Successful response
157
+ * @throws ApiError
158
+ */
159
+ getPrimaryNetworkRpcUsageMetrics({ network, timeInterval, startTimestamp, endTimestamp, groupBy, responseCode, requestPath, country, continent, userAgent, }: {
160
+ /**
161
+ * Either mainnet or testnet/fuji.
162
+ */
163
+ network: Network;
164
+ /**
165
+ * Time interval granularity for data aggregation for subnet
166
+ * rpc metrics
167
+ */
168
+ timeInterval?: SubnetRpcTimeIntervalGranularity;
169
+ /**
170
+ * 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.
171
+ */
172
+ startTimestamp?: number;
173
+ /**
174
+ * 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.
175
+ */
176
+ endTimestamp?: number;
177
+ /**
178
+ * Query param for the criterion used for grouping metrics
179
+ */
180
+ groupBy?: PrimaryNetworkRpcMetricsGroupByEnum;
181
+ /**
182
+ * Filter data by response status code.
183
+ */
184
+ responseCode?: string;
185
+ /**
186
+ * Filter data by request path.
187
+ */
188
+ requestPath?: string;
189
+ /**
190
+ * Filter data by Country.
191
+ */
192
+ country?: string;
193
+ /**
194
+ * Filter data by Continent.
195
+ */
196
+ continent?: string;
197
+ /**
198
+ * Filter data by User Agent.
199
+ */
200
+ userAgent?: string;
201
+ }): CancelablePromise<SubnetRpcUsageMetricsResponseDTO>;
152
202
  }
153
203
 
154
204
  export { DataApiUsageMetricsService };
@@ -1 +1 @@
1
- class e{constructor(e){this.httpRequest=e}getApiUsageMetrics({orgId:e,startTimestamp:r,endTimestamp:t,timeInterval:s,groupBy:n,chainId:a,requestPath:i,responseCode:o,requestType:h,apiKeyId:d}){return this.httpRequest.request({method:"GET",url:"/v1/apiUsageMetrics",query:{orgId:e,startTimestamp:r,endTimestamp:t,timeInterval:s,groupBy:n,chainId:a,requestPath:i,responseCode:o,requestType:h,apiKeyId:d},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}getApiLogs({orgId:e,startTimestamp:r,endTimestamp:t,chainId:s,requestPath:n,responseCode:a,requestType:i,apiKeyId:o,pageToken:h,pageSize:d=10}){return this.httpRequest.request({method:"GET",url:"/v1/apiLogs",query:{orgId:e,startTimestamp:r,endTimestamp:t,chainId:s,requestPath:n,responseCode:a,requestType:i,apiKeyId:o,pageToken:h,pageSize:d},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}getRpcUsageMetrics({timeInterval:e="day",startTimestamp:r,endTimestamp:t,groupBy:s,chainId:n,requestPath:a,responseCode:i,rpcMethod:o,rlBypassApiToken:h}){return this.httpRequest.request({method:"GET",url:"/v1/rpcUsageMetrics",query:{timeInterval:e,startTimestamp:r,endTimestamp:t,groupBy:s,chainId:n,requestPath:a,responseCode:i,rpcMethod:o,rlBypassApiToken:h},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}}export{e as DataApiUsageMetricsService};
1
+ class e{constructor(e){this.httpRequest=e}getApiUsageMetrics({orgId:e,startTimestamp:r,endTimestamp:t,timeInterval:s,groupBy:n,chainId:a,responseCode:i,requestType:o,apiKeyId:h,requestPath:d}){return this.httpRequest.request({method:"GET",url:"/v1/apiUsageMetrics",query:{orgId:e,startTimestamp:r,endTimestamp:t,timeInterval:s,groupBy:n,chainId:a,responseCode:i,requestType:o,apiKeyId:h,requestPath:d},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}getApiLogs({orgId:e,startTimestamp:r,endTimestamp:t,chainId:s,responseCode:n,requestType:a,apiKeyId:i,requestPath:o,pageToken:h,pageSize:d=10}){return this.httpRequest.request({method:"GET",url:"/v1/apiLogs",query:{orgId:e,startTimestamp:r,endTimestamp:t,chainId:s,responseCode:n,requestType:a,apiKeyId:i,requestPath:o,pageToken:h,pageSize:d},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}getRpcUsageMetrics({timeInterval:e,startTimestamp:r,endTimestamp:t,groupBy:s,chainId:n,responseCode:a,rpcMethod:i,rlBypassApiToken:o}){return this.httpRequest.request({method:"GET",url:"/v1/rpcUsageMetrics",query:{timeInterval:e,startTimestamp:r,endTimestamp:t,groupBy:s,chainId:n,responseCode:a,rpcMethod:i,rlBypassApiToken:o},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}getPrimaryNetworkRpcUsageMetrics({network:e,timeInterval:r,startTimestamp:t,endTimestamp:s,groupBy:n,responseCode:a,requestPath:i,country:o,continent:h,userAgent:d}){return this.httpRequest.request({method:"GET",url:"/v1/primaryNetworkRpcUsageMetrics",query:{timeInterval:r,startTimestamp:t,endTimestamp:s,groupBy:n,responseCode:a,requestPath:i,country:o,continent:h,userAgent:d,network:e},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}}export{e as DataApiUsageMetricsService};
@@ -1,11 +1,32 @@
1
1
  import { GetEvmBlockResponse } from '../models/GetEvmBlockResponse.js';
2
2
  import { ListEvmBlocksResponse } from '../models/ListEvmBlocksResponse.js';
3
+ import { Network } from '../models/Network.js';
3
4
  import { CancelablePromise } from '../core/CancelablePromise.js';
4
5
  import { BaseHttpRequest } from '../core/BaseHttpRequest.js';
5
6
 
6
7
  declare class EvmBlocksService {
7
8
  readonly httpRequest: BaseHttpRequest;
8
9
  constructor(httpRequest: BaseHttpRequest);
10
+ /**
11
+ * List latest blocks across all supported EVM chains
12
+ * Lists the most recent blocks from all supported EVM-compatible chains. The results can be filtered by network.
13
+ * @returns ListEvmBlocksResponse Successful response
14
+ * @throws ApiError
15
+ */
16
+ listLatestBlocksAllChains({ pageToken, pageSize, network, }: {
17
+ /**
18
+ * A page token, received from a previous list call. Provide this to retrieve the subsequent page.
19
+ */
20
+ pageToken?: string;
21
+ /**
22
+ * The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
23
+ */
24
+ pageSize?: number;
25
+ /**
26
+ * Either mainnet or testnet/fuji.
27
+ */
28
+ network?: Network;
29
+ }): CancelablePromise<ListEvmBlocksResponse>;
9
30
  /**
10
31
  * List latest blocks
11
32
  * Lists the latest indexed blocks on the EVM-compatible chain sorted in descending order by block timestamp.
@@ -1 +1 @@
1
- class e{constructor(e){this.httpRequest=e}getLatestBlocks({chainId:e,pageToken:r,pageSize:t=10}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/blocks",path:{chainId:e},query:{pageToken:r,pageSize:t},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}getBlock({chainId:e,blockId:r}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/blocks/{blockId}",path:{chainId:e,blockId:r},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}}export{e as EvmBlocksService};
1
+ class e{constructor(e){this.httpRequest=e}listLatestBlocksAllChains({pageToken:e,pageSize:r=10,network:t}){return this.httpRequest.request({method:"GET",url:"/v1/blocks",query:{pageToken:e,pageSize:r,network:t},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}getLatestBlocks({chainId:e,pageToken:r,pageSize:t=10}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/blocks",path:{chainId:e},query:{pageToken:r,pageSize:t},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}getBlock({chainId:e,blockId:r}){return this.httpRequest.request({method:"GET",url:"/v1/chains/{chainId}/blocks/{blockId}",path:{chainId:e,blockId:r},errors:{400:"Bad requests generally mean the client has passed invalid\n or malformed parameters. Error messages in the response could help in\n evaluating the error.",401:"When a client attempts to access resources that require\n authorization credentials but the client lacks proper authentication\n in the request, the server responds with 401.",403:"When a client attempts to access resources with valid\n credentials but doesn't have the privilege to perform that action,\n the server responds with 403.",404:"The error is mostly returned when the client requests\n with either mistyped URL, or the passed resource is moved or deleted,\n or the resource doesn't exist.",429:"This error is returned when the client has sent too many,\n and has hit the rate limit.",500:"The error is a generic server side error that is\n returned for any uncaught and unexpected issues on the server side.\n This should be very rare, and you may reach out to us if the problem\n persists for a longer duration.",502:"This is an internal error indicating invalid response\n received by the client-facing proxy or gateway from the upstream server.",503:"The error is returned for certain routes on a particular\n Subnet. This indicates an internal problem with our Subnet node, and may\n not necessarily mean the Subnet is down or affected."}})}}export{e as EvmBlocksService};