@bgd-labs/toolbox 0.0.25 → 0.0.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -596,11 +596,6 @@ type TenderlySimulationResponse = {
596
596
  simulation: TenderlySimulationResponseObject;
597
597
  };
598
598
 
599
- /**
600
- * While tenderly is a fenomanal tool for testing, it is not always easy to use as there are minor bugs and small nuances to consider everywhere.
601
- * This is a simple wrapper around the tenderly APIs.
602
- */
603
-
604
599
  type TenderlyConfig = {
605
600
  accountSlug: string;
606
601
  projectSlug: string;
@@ -655,6 +650,37 @@ declare function tenderly_createVnet({ slug, displayName, baseChainId, forkChain
655
650
  delete: () => Promise<Response>;
656
651
  }>;
657
652
  declare function tenderly_sim({ accountSlug, projectSlug, accessToken }: TenderlyConfig, body: TenderlySimRequest): Promise<any>;
653
+ type DefaultType = {
654
+ name: string;
655
+ type: string;
656
+ internalType: string;
657
+ indexed: boolean;
658
+ components?: DefaultType[];
659
+ };
660
+ /**
661
+ * Tenderly returns some internal representation of the abi.
662
+ * As our tooling intends to be agnostic to the underlying ecosystem,
663
+ * we need to convert the Tenderly representation to the default abi representation.
664
+ * @param logs
665
+ * @returns
666
+ */
667
+ declare function tenderly_logsToAbiLogs(logs: TenderlyLog[]): {
668
+ inputs?: ({
669
+ name: string;
670
+ type: SoltypeType.Tuple;
671
+ indexed: boolean;
672
+ internalType: SoltypeType.Tuple;
673
+ components: DefaultType[];
674
+ } | {
675
+ name: string;
676
+ type: SoltypeType.Address | SoltypeType.Bool | SoltypeType.Bytes32 | SoltypeType.MappingAddressUint256 | SoltypeType.MappingUint256Uint256 | SoltypeType.String | SoltypeType.TypeAddress | SoltypeType.TypeTuple | SoltypeType.Uint16 | SoltypeType.Uint256 | SoltypeType.Uint48 | SoltypeType.Uint56 | SoltypeType.Uint8;
677
+ indexed: boolean;
678
+ internalType: SoltypeType.Address | SoltypeType.Bool | SoltypeType.Bytes32 | SoltypeType.MappingAddressUint256 | SoltypeType.MappingUint256Uint256 | SoltypeType.String | SoltypeType.TypeAddress | SoltypeType.TypeTuple | SoltypeType.Uint16 | SoltypeType.Uint256 | SoltypeType.Uint48 | SoltypeType.Uint56 | SoltypeType.Uint8;
679
+ components?: undefined;
680
+ })[] | undefined;
681
+ type: string;
682
+ name: string | null;
683
+ }[];
658
684
 
659
685
  declare const EVENT_DB: readonly [];
660
686
 
@@ -13865,7 +13891,7 @@ interface ParseLogsArgs {
13865
13891
  }
13866
13892
  declare function parseLogs({ logs, eventDb }: ParseLogsArgs): LogType[];
13867
13893
 
13868
- declare enum SelfdestuctCheckState {
13894
+ declare enum SelfdestructCheckState {
13869
13895
  TRUSTED = 0,
13870
13896
  EOA = 1,
13871
13897
  EMPTY = 2,
@@ -13873,9 +13899,10 @@ declare enum SelfdestuctCheckState {
13873
13899
  SAFE = 4,
13874
13900
  SELF_DESTRUCT = 5
13875
13901
  }
13902
+ declare function selfDestructStatusToString(state: SelfdestructCheckState): string;
13876
13903
  declare function checkForSelfdestruct(client: Client, addresses: Address[], trustedAddresses: Address[]): Promise<{
13877
13904
  address: Address;
13878
- state: SelfdestuctCheckState;
13905
+ state: SelfdestructCheckState;
13879
13906
  }[]>;
13880
13907
 
13881
13908
  type RenderTenderlyReportParams = {
@@ -13897,8 +13924,15 @@ type RenderTenderlyReportParams = {
13897
13924
  blockNumber: number;
13898
13925
  };
13899
13926
  };
13927
+ eventCache?: AbiEvent[];
13928
+ config: {
13929
+ etherscanApiKey: string;
13930
+ };
13900
13931
  };
13901
- declare function renderTenderlyReport({ client, sim, payloadId, payload, onchainLogs: { createdLog, queuedLog, executedLog }, }: RenderTenderlyReportParams): Promise<string>;
13932
+ declare function renderTenderlyReport({ client, sim, payloadId, payload, onchainLogs: { createdLog, queuedLog, executedLog }, eventCache, config, }: RenderTenderlyReportParams): Promise<{
13933
+ report: string;
13934
+ eventCache: AbiEvent[];
13935
+ }>;
13902
13936
  declare function toTxLink(txn: Hex, client: Client): string;
13903
13937
 
13904
13938
  interface GetVerificationStatusParams {
@@ -13913,6 +13947,7 @@ declare enum VerificationStatus {
13913
13947
  CONTRACT = 1,
13914
13948
  ERROR = 2
13915
13949
  }
13950
+ declare function verificationStatusToString(status: VerificationStatus): "EOA" | "Contract" | "Error";
13916
13951
  /**
13917
13952
  * Iterates a list of addresses and returns their verification status
13918
13953
  * @param param0
@@ -13929,13 +13964,22 @@ type ValueType = string | Record<string, string>;
13929
13964
  type Change = {
13930
13965
  name: string;
13931
13966
  before: string | Record<string, ValueType>;
13932
- after: string;
13933
- type?: string;
13967
+ after: string | Record<string, ValueType>;
13968
+ type: string;
13969
+ key?: string;
13934
13970
  };
13935
13971
  /**
13936
13972
  * Transforms the tenderly state diff into a format that aligns more with foundry state diffs.
13937
13973
  */
13938
- declare function transformTenderlyStateDiff(stateDiff: StateDiff[]): Record<`0x${string}`, Change[]>;
13974
+ declare function transformTenderlyStateDiff(stateDiff: StateDiff[]): Record<Address, Change[]>;
13975
+ /**
13976
+ * Returns the difference between two objects, showing what changed from obj1 to obj2
13977
+ */
13978
+ declare function getObjectDiff(obj1: Record<string, ValueType>, obj2: Record<string, ValueType>): {
13979
+ before: Record<string, ValueType>;
13980
+ after: Record<string, ValueType>;
13981
+ };
13982
+ declare function renderMarkdownStateDiffReport(changes: Record<Address, Change[]>, getContractName?: (address: Address) => string): string;
13939
13983
 
13940
13984
  declare const IReserveInterestRateStrategy_ABI: readonly [{
13941
13985
  readonly type: "function";
@@ -22696,4 +22740,4 @@ declare const IAuthorizedForwarder_ABI: readonly [{
22696
22740
  readonly type: "function";
22697
22741
  }];
22698
22742
 
22699
- export { AggregatorInterface_ABI, Aip, type BlockscoutStyleSourceCode, type BundleParams, ChainId, ChainList, type Change, type ContractObject, EVENT_DB, type EtherscanStyleSourceCode, type ExplorerConfig, type GenericIndexerArgs, type GovernanceContract, HALF_RAY, HALF_WAD, HUMAN_READABLE_PAYLOAD_STATE, HUMAN_READABLE_PROPOSAL_STATE, IAToken_ABI, IAaveOracle_ABI, IAaveV3ConfigEngine_ABI, IAuthorizedForwarder_ABI, ICollector_ABI, IDualAggregator_ABI, IERC20Metadata_ABI, IERC20_ABI, IEmissionManager_ABI, IPoolAddressesProvider_ABI, IPoolConfigurator_ABI, IPool_ABI, IReserveInterestRateStrategy_ABI, IRewardsController_ABI, IStataTokenFactory_ABI, IStataTokenV2_ABI, IWrappedTokenGatewayV3_ABI, type IndexerTopicState, type Input, LTV_PRECISION, type Payload, PayloadState, type PayloadsControllerContract, type Proposal, ProposalState, RAY, type ReserveConfiguration, SECONDS_PER_YEAR, SelfdestuctCheckState, type SoltypeElement, type StandardJsonInput, type StateDiff, type StateObject, type SupportedChainIds, type TenderlyLog, type TenderlyLogRaw, type TenderlySimRequest, type TenderlySimulationResponse, type TenderlySimulationResponseObject, type TenderlyStackTrace, type Tenderly_createVnetParamsResponse, type Trace, type TransactionInfo, WAD, WAD_RAY_RATIO, aaveAddressesProvider_IncentivesControllerSlot, alchemyNetworkMap, alchemySupportedChainIds, assetToBase, bitmapToIndexes, blockscoutExplorers, calculateAvailableBorrowsMarketReferenceCurrency, calculateCompoundedInterest, calculateHealthFactor, calculateHealthFactorFromBalances, calculateLinearInterest, chainlinkFeeds, checkForSelfdestruct, decodeReserveConfiguration, decodeReserveConfigurationV2, decodeUserConfiguration, diffCode, erc1967_AdminSlot, erc1967_ImplementationSlot, etherscanExplorers, fetchImmutablePoolAddresses, fetchMutablePoolAddresses, fetchPoolAddresses, flashbotsClientExtension, flashbotsOnFetchRequest, genericIndexer, getAlchemyRPC, getBits, getClient, getContractDeploymentBlock, getCurrentDebtBalance, getCurrentLiquidityBalance, getExplicitRPC, getExplorer, getGovernance, getHyperRPC, getImplementationSlot, getLogsRecursive, getMarketReferenceCurrencyAndUsdBalance, getNetworkEnv, getNonFinalizedPayloads, getNonFinalizedProposals, getNormalizedDebt, getNormalizedIncome, getPayloadStorageOverrides, getPayloadsController, getPublicRpc, getQuicknodeRpc, getRPCUrl, getReserveConfigurations, getReserveTokens, getSourceCode, getVerificationStatus, hyperRPCSupportedNetworks, isPayloadFinal, isProposalFinal, makePayloadExecutableOnTestClient, makeProposalExecutableOnTestClient, onMevHandler, parseBlockscoutStyleSourceCode, parseEtherscanStyleSourceCode, parseLogs, priceUpdateDecoder, publicRPCs, quicknodeNetworkMap, rayDiv, rayMul, rayToWad, renderTenderlyReport, routescanExplorers, setBits, tenderly_createVnet, tenderly_deleteVnet, tenderly_getVnet, tenderly_sim, tenderly_simVnet, toTxLink, transformTenderlyStateDiff, validateAip, wadDiv, wadToRay };
22743
+ export { AggregatorInterface_ABI, Aip, type BlockscoutStyleSourceCode, type BundleParams, ChainId, ChainList, type Change, type ContractObject, EVENT_DB, type EtherscanStyleSourceCode, type ExplorerConfig, type GenericIndexerArgs, type GovernanceContract, HALF_RAY, HALF_WAD, HUMAN_READABLE_PAYLOAD_STATE, HUMAN_READABLE_PROPOSAL_STATE, IAToken_ABI, IAaveOracle_ABI, IAaveV3ConfigEngine_ABI, IAuthorizedForwarder_ABI, ICollector_ABI, IDualAggregator_ABI, IERC20Metadata_ABI, IERC20_ABI, IEmissionManager_ABI, IPoolAddressesProvider_ABI, IPoolConfigurator_ABI, IPool_ABI, IReserveInterestRateStrategy_ABI, IRewardsController_ABI, IStataTokenFactory_ABI, IStataTokenV2_ABI, IWrappedTokenGatewayV3_ABI, type IndexerTopicState, type Input, LTV_PRECISION, type Payload, PayloadState, type PayloadsControllerContract, type Proposal, ProposalState, RAY, type ReserveConfiguration, SECONDS_PER_YEAR, SelfdestructCheckState, type SoltypeElement, SoltypeType, type StandardJsonInput, type StateDiff, type StateObject, type SupportedChainIds, type TenderlyLog, type TenderlyLogRaw, type TenderlySimRequest, type TenderlySimulationResponse, type TenderlySimulationResponseObject, type TenderlyStackTrace, type Tenderly_createVnetParamsResponse, type Trace, type TransactionInfo, VerificationStatus, WAD, WAD_RAY_RATIO, aaveAddressesProvider_IncentivesControllerSlot, alchemyNetworkMap, alchemySupportedChainIds, assetToBase, bitmapToIndexes, blockscoutExplorers, calculateAvailableBorrowsMarketReferenceCurrency, calculateCompoundedInterest, calculateHealthFactor, calculateHealthFactorFromBalances, calculateLinearInterest, chainlinkFeeds, checkForSelfdestruct, decodeReserveConfiguration, decodeReserveConfigurationV2, decodeUserConfiguration, diffCode, erc1967_AdminSlot, erc1967_ImplementationSlot, etherscanExplorers, fetchImmutablePoolAddresses, fetchMutablePoolAddresses, fetchPoolAddresses, flashbotsClientExtension, flashbotsOnFetchRequest, genericIndexer, getAlchemyRPC, getBits, getClient, getContractDeploymentBlock, getCurrentDebtBalance, getCurrentLiquidityBalance, getExplicitRPC, getExplorer, getGovernance, getHyperRPC, getImplementationSlot, getLogsRecursive, getMarketReferenceCurrencyAndUsdBalance, getNetworkEnv, getNonFinalizedPayloads, getNonFinalizedProposals, getNormalizedDebt, getNormalizedIncome, getObjectDiff, getPayloadStorageOverrides, getPayloadsController, getPublicRpc, getQuicknodeRpc, getRPCUrl, getReserveConfigurations, getReserveTokens, getSourceCode, getVerificationStatus, hyperRPCSupportedNetworks, isPayloadFinal, isProposalFinal, makePayloadExecutableOnTestClient, makeProposalExecutableOnTestClient, onMevHandler, parseBlockscoutStyleSourceCode, parseEtherscanStyleSourceCode, parseLogs, priceUpdateDecoder, publicRPCs, quicknodeNetworkMap, rayDiv, rayMul, rayToWad, renderMarkdownStateDiffReport, renderTenderlyReport, routescanExplorers, selfDestructStatusToString, setBits, tenderly_createVnet, tenderly_deleteVnet, tenderly_getVnet, tenderly_logsToAbiLogs, tenderly_sim, tenderly_simVnet, toTxLink, transformTenderlyStateDiff, validateAip, verificationStatusToString, wadDiv, wadToRay };
package/dist/index.d.ts CHANGED
@@ -596,11 +596,6 @@ type TenderlySimulationResponse = {
596
596
  simulation: TenderlySimulationResponseObject;
597
597
  };
598
598
 
599
- /**
600
- * While tenderly is a fenomanal tool for testing, it is not always easy to use as there are minor bugs and small nuances to consider everywhere.
601
- * This is a simple wrapper around the tenderly APIs.
602
- */
603
-
604
599
  type TenderlyConfig = {
605
600
  accountSlug: string;
606
601
  projectSlug: string;
@@ -655,6 +650,37 @@ declare function tenderly_createVnet({ slug, displayName, baseChainId, forkChain
655
650
  delete: () => Promise<Response>;
656
651
  }>;
657
652
  declare function tenderly_sim({ accountSlug, projectSlug, accessToken }: TenderlyConfig, body: TenderlySimRequest): Promise<any>;
653
+ type DefaultType = {
654
+ name: string;
655
+ type: string;
656
+ internalType: string;
657
+ indexed: boolean;
658
+ components?: DefaultType[];
659
+ };
660
+ /**
661
+ * Tenderly returns some internal representation of the abi.
662
+ * As our tooling intends to be agnostic to the underlying ecosystem,
663
+ * we need to convert the Tenderly representation to the default abi representation.
664
+ * @param logs
665
+ * @returns
666
+ */
667
+ declare function tenderly_logsToAbiLogs(logs: TenderlyLog[]): {
668
+ inputs?: ({
669
+ name: string;
670
+ type: SoltypeType.Tuple;
671
+ indexed: boolean;
672
+ internalType: SoltypeType.Tuple;
673
+ components: DefaultType[];
674
+ } | {
675
+ name: string;
676
+ type: SoltypeType.Address | SoltypeType.Bool | SoltypeType.Bytes32 | SoltypeType.MappingAddressUint256 | SoltypeType.MappingUint256Uint256 | SoltypeType.String | SoltypeType.TypeAddress | SoltypeType.TypeTuple | SoltypeType.Uint16 | SoltypeType.Uint256 | SoltypeType.Uint48 | SoltypeType.Uint56 | SoltypeType.Uint8;
677
+ indexed: boolean;
678
+ internalType: SoltypeType.Address | SoltypeType.Bool | SoltypeType.Bytes32 | SoltypeType.MappingAddressUint256 | SoltypeType.MappingUint256Uint256 | SoltypeType.String | SoltypeType.TypeAddress | SoltypeType.TypeTuple | SoltypeType.Uint16 | SoltypeType.Uint256 | SoltypeType.Uint48 | SoltypeType.Uint56 | SoltypeType.Uint8;
679
+ components?: undefined;
680
+ })[] | undefined;
681
+ type: string;
682
+ name: string | null;
683
+ }[];
658
684
 
659
685
  declare const EVENT_DB: readonly [];
660
686
 
@@ -13865,7 +13891,7 @@ interface ParseLogsArgs {
13865
13891
  }
13866
13892
  declare function parseLogs({ logs, eventDb }: ParseLogsArgs): LogType[];
13867
13893
 
13868
- declare enum SelfdestuctCheckState {
13894
+ declare enum SelfdestructCheckState {
13869
13895
  TRUSTED = 0,
13870
13896
  EOA = 1,
13871
13897
  EMPTY = 2,
@@ -13873,9 +13899,10 @@ declare enum SelfdestuctCheckState {
13873
13899
  SAFE = 4,
13874
13900
  SELF_DESTRUCT = 5
13875
13901
  }
13902
+ declare function selfDestructStatusToString(state: SelfdestructCheckState): string;
13876
13903
  declare function checkForSelfdestruct(client: Client, addresses: Address[], trustedAddresses: Address[]): Promise<{
13877
13904
  address: Address;
13878
- state: SelfdestuctCheckState;
13905
+ state: SelfdestructCheckState;
13879
13906
  }[]>;
13880
13907
 
13881
13908
  type RenderTenderlyReportParams = {
@@ -13897,8 +13924,15 @@ type RenderTenderlyReportParams = {
13897
13924
  blockNumber: number;
13898
13925
  };
13899
13926
  };
13927
+ eventCache?: AbiEvent[];
13928
+ config: {
13929
+ etherscanApiKey: string;
13930
+ };
13900
13931
  };
13901
- declare function renderTenderlyReport({ client, sim, payloadId, payload, onchainLogs: { createdLog, queuedLog, executedLog }, }: RenderTenderlyReportParams): Promise<string>;
13932
+ declare function renderTenderlyReport({ client, sim, payloadId, payload, onchainLogs: { createdLog, queuedLog, executedLog }, eventCache, config, }: RenderTenderlyReportParams): Promise<{
13933
+ report: string;
13934
+ eventCache: AbiEvent[];
13935
+ }>;
13902
13936
  declare function toTxLink(txn: Hex, client: Client): string;
13903
13937
 
13904
13938
  interface GetVerificationStatusParams {
@@ -13913,6 +13947,7 @@ declare enum VerificationStatus {
13913
13947
  CONTRACT = 1,
13914
13948
  ERROR = 2
13915
13949
  }
13950
+ declare function verificationStatusToString(status: VerificationStatus): "EOA" | "Contract" | "Error";
13916
13951
  /**
13917
13952
  * Iterates a list of addresses and returns their verification status
13918
13953
  * @param param0
@@ -13929,13 +13964,22 @@ type ValueType = string | Record<string, string>;
13929
13964
  type Change = {
13930
13965
  name: string;
13931
13966
  before: string | Record<string, ValueType>;
13932
- after: string;
13933
- type?: string;
13967
+ after: string | Record<string, ValueType>;
13968
+ type: string;
13969
+ key?: string;
13934
13970
  };
13935
13971
  /**
13936
13972
  * Transforms the tenderly state diff into a format that aligns more with foundry state diffs.
13937
13973
  */
13938
- declare function transformTenderlyStateDiff(stateDiff: StateDiff[]): Record<`0x${string}`, Change[]>;
13974
+ declare function transformTenderlyStateDiff(stateDiff: StateDiff[]): Record<Address, Change[]>;
13975
+ /**
13976
+ * Returns the difference between two objects, showing what changed from obj1 to obj2
13977
+ */
13978
+ declare function getObjectDiff(obj1: Record<string, ValueType>, obj2: Record<string, ValueType>): {
13979
+ before: Record<string, ValueType>;
13980
+ after: Record<string, ValueType>;
13981
+ };
13982
+ declare function renderMarkdownStateDiffReport(changes: Record<Address, Change[]>, getContractName?: (address: Address) => string): string;
13939
13983
 
13940
13984
  declare const IReserveInterestRateStrategy_ABI: readonly [{
13941
13985
  readonly type: "function";
@@ -22696,4 +22740,4 @@ declare const IAuthorizedForwarder_ABI: readonly [{
22696
22740
  readonly type: "function";
22697
22741
  }];
22698
22742
 
22699
- export { AggregatorInterface_ABI, Aip, type BlockscoutStyleSourceCode, type BundleParams, ChainId, ChainList, type Change, type ContractObject, EVENT_DB, type EtherscanStyleSourceCode, type ExplorerConfig, type GenericIndexerArgs, type GovernanceContract, HALF_RAY, HALF_WAD, HUMAN_READABLE_PAYLOAD_STATE, HUMAN_READABLE_PROPOSAL_STATE, IAToken_ABI, IAaveOracle_ABI, IAaveV3ConfigEngine_ABI, IAuthorizedForwarder_ABI, ICollector_ABI, IDualAggregator_ABI, IERC20Metadata_ABI, IERC20_ABI, IEmissionManager_ABI, IPoolAddressesProvider_ABI, IPoolConfigurator_ABI, IPool_ABI, IReserveInterestRateStrategy_ABI, IRewardsController_ABI, IStataTokenFactory_ABI, IStataTokenV2_ABI, IWrappedTokenGatewayV3_ABI, type IndexerTopicState, type Input, LTV_PRECISION, type Payload, PayloadState, type PayloadsControllerContract, type Proposal, ProposalState, RAY, type ReserveConfiguration, SECONDS_PER_YEAR, SelfdestuctCheckState, type SoltypeElement, type StandardJsonInput, type StateDiff, type StateObject, type SupportedChainIds, type TenderlyLog, type TenderlyLogRaw, type TenderlySimRequest, type TenderlySimulationResponse, type TenderlySimulationResponseObject, type TenderlyStackTrace, type Tenderly_createVnetParamsResponse, type Trace, type TransactionInfo, WAD, WAD_RAY_RATIO, aaveAddressesProvider_IncentivesControllerSlot, alchemyNetworkMap, alchemySupportedChainIds, assetToBase, bitmapToIndexes, blockscoutExplorers, calculateAvailableBorrowsMarketReferenceCurrency, calculateCompoundedInterest, calculateHealthFactor, calculateHealthFactorFromBalances, calculateLinearInterest, chainlinkFeeds, checkForSelfdestruct, decodeReserveConfiguration, decodeReserveConfigurationV2, decodeUserConfiguration, diffCode, erc1967_AdminSlot, erc1967_ImplementationSlot, etherscanExplorers, fetchImmutablePoolAddresses, fetchMutablePoolAddresses, fetchPoolAddresses, flashbotsClientExtension, flashbotsOnFetchRequest, genericIndexer, getAlchemyRPC, getBits, getClient, getContractDeploymentBlock, getCurrentDebtBalance, getCurrentLiquidityBalance, getExplicitRPC, getExplorer, getGovernance, getHyperRPC, getImplementationSlot, getLogsRecursive, getMarketReferenceCurrencyAndUsdBalance, getNetworkEnv, getNonFinalizedPayloads, getNonFinalizedProposals, getNormalizedDebt, getNormalizedIncome, getPayloadStorageOverrides, getPayloadsController, getPublicRpc, getQuicknodeRpc, getRPCUrl, getReserveConfigurations, getReserveTokens, getSourceCode, getVerificationStatus, hyperRPCSupportedNetworks, isPayloadFinal, isProposalFinal, makePayloadExecutableOnTestClient, makeProposalExecutableOnTestClient, onMevHandler, parseBlockscoutStyleSourceCode, parseEtherscanStyleSourceCode, parseLogs, priceUpdateDecoder, publicRPCs, quicknodeNetworkMap, rayDiv, rayMul, rayToWad, renderTenderlyReport, routescanExplorers, setBits, tenderly_createVnet, tenderly_deleteVnet, tenderly_getVnet, tenderly_sim, tenderly_simVnet, toTxLink, transformTenderlyStateDiff, validateAip, wadDiv, wadToRay };
22743
+ export { AggregatorInterface_ABI, Aip, type BlockscoutStyleSourceCode, type BundleParams, ChainId, ChainList, type Change, type ContractObject, EVENT_DB, type EtherscanStyleSourceCode, type ExplorerConfig, type GenericIndexerArgs, type GovernanceContract, HALF_RAY, HALF_WAD, HUMAN_READABLE_PAYLOAD_STATE, HUMAN_READABLE_PROPOSAL_STATE, IAToken_ABI, IAaveOracle_ABI, IAaveV3ConfigEngine_ABI, IAuthorizedForwarder_ABI, ICollector_ABI, IDualAggregator_ABI, IERC20Metadata_ABI, IERC20_ABI, IEmissionManager_ABI, IPoolAddressesProvider_ABI, IPoolConfigurator_ABI, IPool_ABI, IReserveInterestRateStrategy_ABI, IRewardsController_ABI, IStataTokenFactory_ABI, IStataTokenV2_ABI, IWrappedTokenGatewayV3_ABI, type IndexerTopicState, type Input, LTV_PRECISION, type Payload, PayloadState, type PayloadsControllerContract, type Proposal, ProposalState, RAY, type ReserveConfiguration, SECONDS_PER_YEAR, SelfdestructCheckState, type SoltypeElement, SoltypeType, type StandardJsonInput, type StateDiff, type StateObject, type SupportedChainIds, type TenderlyLog, type TenderlyLogRaw, type TenderlySimRequest, type TenderlySimulationResponse, type TenderlySimulationResponseObject, type TenderlyStackTrace, type Tenderly_createVnetParamsResponse, type Trace, type TransactionInfo, VerificationStatus, WAD, WAD_RAY_RATIO, aaveAddressesProvider_IncentivesControllerSlot, alchemyNetworkMap, alchemySupportedChainIds, assetToBase, bitmapToIndexes, blockscoutExplorers, calculateAvailableBorrowsMarketReferenceCurrency, calculateCompoundedInterest, calculateHealthFactor, calculateHealthFactorFromBalances, calculateLinearInterest, chainlinkFeeds, checkForSelfdestruct, decodeReserveConfiguration, decodeReserveConfigurationV2, decodeUserConfiguration, diffCode, erc1967_AdminSlot, erc1967_ImplementationSlot, etherscanExplorers, fetchImmutablePoolAddresses, fetchMutablePoolAddresses, fetchPoolAddresses, flashbotsClientExtension, flashbotsOnFetchRequest, genericIndexer, getAlchemyRPC, getBits, getClient, getContractDeploymentBlock, getCurrentDebtBalance, getCurrentLiquidityBalance, getExplicitRPC, getExplorer, getGovernance, getHyperRPC, getImplementationSlot, getLogsRecursive, getMarketReferenceCurrencyAndUsdBalance, getNetworkEnv, getNonFinalizedPayloads, getNonFinalizedProposals, getNormalizedDebt, getNormalizedIncome, getObjectDiff, getPayloadStorageOverrides, getPayloadsController, getPublicRpc, getQuicknodeRpc, getRPCUrl, getReserveConfigurations, getReserveTokens, getSourceCode, getVerificationStatus, hyperRPCSupportedNetworks, isPayloadFinal, isProposalFinal, makePayloadExecutableOnTestClient, makeProposalExecutableOnTestClient, onMevHandler, parseBlockscoutStyleSourceCode, parseEtherscanStyleSourceCode, parseLogs, priceUpdateDecoder, publicRPCs, quicknodeNetworkMap, rayDiv, rayMul, rayToWad, renderMarkdownStateDiffReport, renderTenderlyReport, routescanExplorers, selfDestructStatusToString, setBits, tenderly_createVnet, tenderly_deleteVnet, tenderly_getVnet, tenderly_logsToAbiLogs, tenderly_sim, tenderly_simVnet, toTxLink, transformTenderlyStateDiff, validateAip, verificationStatusToString, wadDiv, wadToRay };