@strkfarm/sdk 2.0.0-dev.33 → 2.0.0-dev.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1958,6 +1958,18 @@ declare class VesuModifyPositionAdapter extends BaseAdapter<VesuModifyPositionDe
1958
1958
  getDepositCall(params: VesuModifyPositionDepositParams): Promise<ManageCall[]>;
1959
1959
  getWithdrawCall(params: VesuModifyPositionWithdrawParams): Promise<ManageCall[]>;
1960
1960
  getHealthFactor(): Promise<number>;
1961
+ /**
1962
+ * Simulates a deposit of `depositAmount` collateral and returns how much
1963
+ * debt (STRK) would be incrementally borrowed to reach the target LTV.
1964
+ * Used upstream to size the AVNU swap call in the same transaction batch.
1965
+ */
1966
+ getExpectedDepositDebtDelta(depositAmount: Web3Number): Promise<Web3Number>;
1967
+ /**
1968
+ * Simulates a withdrawal of `withdrawAmount` collateral and returns the
1969
+ * incremental debt delta needed to keep the target health factor.
1970
+ * Positive means borrow, negative means repay.
1971
+ */
1972
+ getExpectedWithdrawDebtDelta(withdrawAmount: Web3Number): Promise<Web3Number>;
1961
1973
  }
1962
1974
 
1963
1975
  /**
@@ -2481,6 +2493,11 @@ declare class ExtendedAdapter extends BaseAdapter<DepositParams, WithdrawParams>
2481
2493
  success: boolean;
2482
2494
  data: FundingRate[];
2483
2495
  }>;
2496
+ /** Account funding payment history via `GET /api/v1/account/funding-payments` (USDC amounts). */
2497
+ getFundingPayments(side: string, startTime?: number, limit?: number): Promise<{
2498
+ success: boolean;
2499
+ data: FundingPayment[];
2500
+ }>;
2484
2501
  protected getPosition(supportedPosition: SupportedPosition): Promise<PositionAmount>;
2485
2502
  maxDeposit(amount?: Web3Number): Promise<PositionInfo>;
2486
2503
  maxWithdraw(): Promise<PositionInfo>;
@@ -2526,6 +2543,7 @@ declare class ExtendedAdapter extends BaseAdapter<DepositParams, WithdrawParams>
2526
2543
  }
2527
2544
 
2528
2545
  declare const SIMPLE_SANITIZER: ContractAddr;
2546
+ declare const SVK_SIMPLE_SANITIZER: ContractAddr;
2529
2547
  declare const EXTENDED_SANITIZER: ContractAddr;
2530
2548
  declare const AVNU_LEGACY_SANITIZER: ContractAddr;
2531
2549
  declare const SIMPLE_SANITIZER_V2: ContractAddr;
@@ -2630,6 +2648,17 @@ declare class SvkTrovesAdapter extends BaseAdapter<DepositParams, WithdrawParams
2630
2648
  private _withdrawCallProofReadableId;
2631
2649
  protected getAPY(supportedPosition: SupportedPosition): Promise<PositionAPY>;
2632
2650
  protected getPosition(supportedPosition: SupportedPosition): Promise<PositionAmount | null>;
2651
+ getPendingAssetsFromOwner(owner?: ContractAddr, decimals?: number): Promise<Web3Number>;
2652
+ /**
2653
+ * Get pending assets from owner by scanning redeem request NFTs.
2654
+ * This method iterates backwards through NFT IDs to find all pending redemptions for a specific owner.
2655
+ *
2656
+ * @param redeemRequestNFT - The redeem request NFT contract address
2657
+ * @param owner - The owner address to check for pending redemptions (defaults to positionOwner)
2658
+ * @param decimals - Token decimals for conversion (defaults to baseToken decimals)
2659
+ * @returns Total pending assets from all NFTs owned by the specified address
2660
+ */
2661
+ getPendingAssetsFromOwnerNFTMethod(redeemRequestNFT: ContractAddr, owner?: ContractAddr, decimals?: number): Promise<Web3Number>;
2633
2662
  maxDeposit(amount?: Web3Number): Promise<PositionInfo>;
2634
2663
  maxWithdraw(): Promise<PositionInfo>;
2635
2664
  protected _getDepositLeaf(): {
@@ -2873,7 +2902,7 @@ declare abstract class SVKStrategy<S extends UniversalStrategySettings> extends
2873
2902
  */
2874
2903
  protected buildManageCallFromAdapter(adapter: {
2875
2904
  getProofs: (isDeposit: boolean, tree: any) => any;
2876
- }, isDeposit: boolean, amount: Web3Number): Promise<Call>;
2905
+ }, isDeposit: boolean, amount: Web3Number, additionalParams?: Record<string, any>): Promise<Call>;
2877
2906
  /**
2878
2907
  * Bridges liquidity from the vault allocator back to the vault.
2879
2908
  * Note: This function is common for any SVK strategy.
@@ -3001,6 +3030,79 @@ declare const _riskFactor: RiskFactor[];
3001
3030
  declare function getInvestmentSteps(lstSymbol: string, underlyingSymbol: string): string[];
3002
3031
  declare const HyperLSTStrategies: IStrategyMetadata<HyperLSTStrategySettings>[];
3003
3032
 
3033
+ interface USDCBoostedStrategySettings extends UniversalStrategySettings {
3034
+ vesuPoolId: ContractAddr;
3035
+ collateralToken: TokenInfo;
3036
+ debtToken: TokenInfo;
3037
+ maxLTV: number;
3038
+ targetLTV: number;
3039
+ hyperxSTRKVaultAddress: ContractAddr;
3040
+ }
3041
+ declare class USDCBoostedStrategy<S extends USDCBoostedStrategySettings> extends SVKStrategy<S> {
3042
+ constructor(config: IConfig, pricer: PricerBase, metadata: IStrategyMetadata<S>);
3043
+ getTag(): string;
3044
+ private getAdapterById;
3045
+ getVesuModifyPositionCall(params: {
3046
+ isDeposit: boolean;
3047
+ leg1DepositAmount: Web3Number;
3048
+ debtAmount?: Web3Number;
3049
+ }): Promise<Call>;
3050
+ getVesuPositions(): Promise<VaultPosition[]>;
3051
+ getVesuHealthFactor(blockNumber?: BlockIdentifier): Promise<number>;
3052
+ getModifyHyperPositionCall(params: {
3053
+ isDeposit: boolean;
3054
+ amount: Web3Number;
3055
+ }): Promise<Call>;
3056
+ getAvnuSwapCall(params: {
3057
+ isDeposit: boolean;
3058
+ amount: Web3Number;
3059
+ }): Promise<Call>;
3060
+ /**
3061
+ * Returns the USDC balance sitting idle inside the vault contract itself.
3062
+ * This balance can offset the required liquidity during withdrawal processing.
3063
+ */
3064
+ getUnusedBalanceVault(): Promise<Web3Number>;
3065
+ /**
3066
+ * Returns the current STRK balance sitting unused in the vault allocator.
3067
+ * This covers STRK from prior borrow cycles that hasn't been swapped yet.
3068
+ */
3069
+ getUnusedDebt(): Promise<Web3Number>;
3070
+ /**
3071
+ * Returns the xSTRK balance sitting in the vault allocator.
3072
+ * This is non-zero when the previous cycle's request_redeem on the HyperPosition
3073
+ * has been settled — the redeemed xSTRK lands here and is ready to be swapped.
3074
+ */
3075
+ getxSTRKInVault(): Promise<Web3Number>;
3076
+ /**
3077
+ * Simulates depositing `depositAmount` USDC on Vesu and returns the
3078
+ * incremental STRK that would be borrowed. Needed to size the AVNU swap
3079
+ * call that is batched together with the Vesu call in the same transaction.
3080
+ */
3081
+ computeVesuDepositBorrowAmount(depositAmount: Web3Number): Promise<Web3Number>;
3082
+ computeVesuWithdrawDebtDelta(withdrawAmount: Web3Number): Promise<Web3Number>;
3083
+ getPendingHyperAssets(): Promise<Web3Number>;
3084
+ getUserTVL(user: ContractAddr, blockIdentifier?: BlockIdentifier): Promise<{
3085
+ tokenInfo: TokenInfo;
3086
+ amount: Web3Number;
3087
+ usdValue: number;
3088
+ }>;
3089
+ getTVL(): Promise<{
3090
+ tokenInfo: TokenInfo;
3091
+ amount: Web3Number;
3092
+ usdValue: number;
3093
+ }>;
3094
+ getAUM(): Promise<{
3095
+ net: SingleTokenInfo;
3096
+ prevAum: Web3Number;
3097
+ splits: PositionInfo[];
3098
+ }>;
3099
+ getFundManagementCall(params: {
3100
+ isDeposit: boolean;
3101
+ leg1DepositAmount: Web3Number;
3102
+ }): Promise<Call[] | null>;
3103
+ }
3104
+ declare const USDCBoostedStrategies: IStrategyMetadata<USDCBoostedStrategySettings>[];
3105
+
3004
3106
  /**
3005
3107
  * Snapshot of a single Vesu pool's position: collateral, debt, and their prices.
3006
3108
  */
@@ -5356,4 +5458,4 @@ declare class PasswordJsonCryptoUtil {
5356
5458
  decrypt(encryptedData: string, password: string): any;
5357
5459
  }
5358
5460
 
5359
- export { type APYInfo, APYType, AUDIT_URL, AUMTypes, AVNU_EXCHANGE, AVNU_EXCHANGE_FOR_LEGACY_USDC, AVNU_LEGACY_SANITIZER, AVNU_MIDDLEWARE, AVNU_QUOTE_URL, AbisConfig, type AccessControlInfo, AccessControlType, type AccountInfo, type AdapterLeafType, AddressesConfig, type AllAccountsStore, type AmountInfo, type AmountsInfo, type ApiResponse, type ApproveCallParams, type AssetOperation, AssetOperationStatus, AssetOperationType, AuditStatus, AutoCompounderSTRK, AvnuAdapter, type AvnuAdapterConfig, type AvnuSwapCallParams, AvnuWrapper, type Balance, BaseAdapter, type BaseAdapterConfig, BaseStrategy, type BringLiquidityRoute, CASE_ROUTE_TYPES, type CLVaultStrategySettings, COLLATERAL_PRECISION, type CancelOrderRequest, CaseCategory, CaseId, CommonAdapter, type CommonAdapterConfig, ContractAddr, type CreateOrderRequest, type CrisisBorrowRoute, type CrisisExtendedLeverRoute, CycleType, DEFAULT_TROVES_STRATEGIES_API, type DecreaseLeverParams, Deployer, type DepositParams, type DualActionAmount, type DualTokenInfo, ERC20, EXTENDED_CONTRACT, EXTENDED_SANITIZER, type EkuboBounds, EkuboCLVault, EkuboCLVaultStrategies, type EkuboPoolKey, type EkuboQuote, EkuboQuoter, type EkuboRouteNode, type EkuboSplit, type ExecutionCallback, type ExecutionConfig, type ExecutionEventMetadata, ExecutionEventType, type ExecutionRoute, ExecutionService, ExitType, ExtendedAdapter, type ExtendedAdapterConfig, type ExtendedApiResponse, type ExtendedBalanceState, ExtendedConfig, type ExtendedLeverRoute, type ExtendedPositionDelta, type ExtendedPositionState, ExtendedSVKVesuStateManager, ExtendedWrapper, type ExtendedWrapperConfig, type FAQ, FactoryStrategyType, FatalError, type FilterOption, type FlashloanCallParams, FlowChartColors, type FundingPayment, type FundingRate, type GenerateCallFn, Global, HealthFactorMath, HyperLSTStrategies, type HyperLSTStrategySettings, type IConfig, type IInvestmentFlow, ILending, type ILendingMetadata, type ILendingPosition, type IProtocol, type IStrategyMetadata, type IncreaseLeverParams, Initializable, InstantWithdrawalVault, type L2Config, LSTAPRService, LSTPriceType, type LSTStats, type LeafAdapterFn, type LeafData, type LendingToken, type LoggerConfig, type LoggerLevel, type ManageCall, MarginType, type Market, type MarketStats, Midas, MyNumber, type NetAPYDetails, type NetAPYSplit, Network, type OpenOrder, OrderSide, OrderStatus, OrderStatusReason, OrderType, PRICE_ROUTER, type ParsedStarknetCall, PasswordJsonCryptoUtil, type PlacedOrder, type Position, type PositionAPY, type PositionAmount, type PositionHistory, type PositionInfo, PositionSide, PositionTypeAvnuExtended, Pragma, type PriceInfo, Pricer, PricerBase, PricerFromApi, PricerLST, PricerRedis, Protocols, type RealisePnlRoute, type RedemptionInfo, type RequiredFields, type RequiredKeys, type RequiredStoreConfig, type RiskFactor, type RiskFactorConfig, RiskType, type Route, type RouteNode, RouteType, SIMPLE_SANITIZER, SIMPLE_SANITIZER_V2, SIMPLE_SANITIZER_VESU_V1_DELEGATIONS, type SecurityMetadata, SenseiStrategies, SenseiVault, type SenseiVaultSettings, type SettlementSignature, type SignedWithdrawRequest, type SingleActionAmount, type SingleTokenInfo, SolveBudget, type SolveCase, type SolveCaseEntry, type SolveResult, type SourceCodeInfo, SourceCodeType, StandardMerkleTree, type StandardMerkleTreeData, type StarkDebuggingOrderAmounts, type StarkSettlement, StarknetCallParser, type StarknetCallParserOptions, type StateManagerConfig, Store, type StoreConfig, type StrategyAlert, type StrategyCapabilities, type StrategyFilterMetadata, StrategyLiveStatus, type StrategyMetadata, type StrategyRegistryEntry, type StrategySettings, StrategyTag, StrategyType, type SupportedPosition, SvkTrovesAdapter, type SvkTrovesAdapterConfig, type Swap, type SwapInfo, type SwapPriceInfo, type SwapRoute, TRANSFER_SANITIZER, TelegramGroupNotif, TelegramNotif, TimeInForce, type TokenAmount, type TokenBalance, type TokenInfo, TokenMarketData, TokenTransferAdapter, type TokenTransferAdapterConfig, type TradingConfig, type TransactionMetadata, type TransactionResult, type TransferRoute, UNIVERSAL_ADAPTERS, UNIVERSAL_MANAGE_IDS, UniversalLstMultiplierStrategy, type UniversalManageCall, UniversalStrategies, UniversalStrategy, type UniversalStrategySettings, type UpdateLeverageRequest, VESU_SINGLETON, VESU_V2_MODIFY_POSITION_SANITIZER, type VaultPosition, VaultType, VesuAdapter, type VesuAdapterConfig, type VesuAmount, VesuAmountDenomination, VesuAmountType, VesuConfig, type VesuDebtRoute, type VesuDefiSpringRewardsCallParams, type VesuDepositParams, VesuExtendedMultiplierStrategy, type VesuExtendedStrategySettings, VesuExtendedTestStrategies, type VesuModifyDelegationCallParams, VesuModifyPositionAdapter, type VesuModifyPositionAdapterConfig, type VesuModifyPositionCallParams, type VesuModifyPositionDepositParams, type VesuModifyPositionWithdrawParams, VesuMultiplyAdapter, type VesuMultiplyAdapterConfig, type VesuMultiplyCallParams, type VesuMultiplyRoute, type VesuPoolDelta, VesuPoolMetadata, type VesuPoolState, VesuPools, VesuRebalance, type VesuRebalanceSettings, VesuRebalanceStrategies, VesuSupplyOnlyAdapter, type VesuSupplyOnlyAdapterConfig, type VesuWithdrawParams, type WaitRoute, Web3Number, type WithdrawParams, type WithdrawRequest, ZkLend, _riskFactor, assert, buildStrategyRegistry, calculateAmountDepositOnExtendedWhenIncurringLosses, calculateAmountDistribution, calculateAmountDistributionForWithdrawal, calculateBTCPriceDelta, calculateDebtAmount, calculateDebtReductionAmountForWithdrawal, calculateDeltaDebtAmount, calculateExposureDelta, calculateExtendedLevergae, calculatePositionToCloseToWithdrawAmount, calculateVesUPositionSizeGivenExtended, calculateVesuLeverage, calculateWBTCAmountToMaintainLTV, configureLogger, createEkuboCLStrategy, createHyperLSTStrategy, createSenseiStrategy, createSolveBudgetFromRawState, createStrategy, createUniversalStrategy, createVesuRebalanceStrategy, detectCapabilities, extensionMap, getAPIUsingHeadlessBrowser, getAllStrategyMetadata, getAllStrategyTags, getContractDetails, getDefaultStoreConfig, getFAQs, getFilterMetadata, getInvestmentSteps, getLiveStrategies, getMainnetConfig, getNoRiskTags, getRiskColor, getRiskExplaination, getStrategiesByType, getStrategyTagDesciption, getStrategyTypeFromMetadata, getTrovesEndpoint, getVesuSingletonAddress, highlightTextWithLinks, type i257, isDualTokenStrategy, logger, returnFormattedAmount, routeSummary, toAmountsInfo, toBigInt };
5461
+ export { type APYInfo, APYType, AUDIT_URL, AUMTypes, AVNU_EXCHANGE, AVNU_EXCHANGE_FOR_LEGACY_USDC, AVNU_LEGACY_SANITIZER, AVNU_MIDDLEWARE, AVNU_QUOTE_URL, AbisConfig, type AccessControlInfo, AccessControlType, type AccountInfo, type AdapterLeafType, AddressesConfig, type AllAccountsStore, type AmountInfo, type AmountsInfo, type ApiResponse, type ApproveCallParams, type AssetOperation, AssetOperationStatus, AssetOperationType, AuditStatus, AutoCompounderSTRK, AvnuAdapter, type AvnuAdapterConfig, type AvnuSwapCallParams, AvnuWrapper, type Balance, BaseAdapter, type BaseAdapterConfig, BaseStrategy, type BringLiquidityRoute, CASE_ROUTE_TYPES, type CLVaultStrategySettings, COLLATERAL_PRECISION, type CancelOrderRequest, CaseCategory, CaseId, CommonAdapter, type CommonAdapterConfig, ContractAddr, type CreateOrderRequest, type CrisisBorrowRoute, type CrisisExtendedLeverRoute, CycleType, DEFAULT_TROVES_STRATEGIES_API, type DecreaseLeverParams, Deployer, type DepositParams, type DualActionAmount, type DualTokenInfo, ERC20, EXTENDED_CONTRACT, EXTENDED_SANITIZER, type EkuboBounds, EkuboCLVault, EkuboCLVaultStrategies, type EkuboPoolKey, type EkuboQuote, EkuboQuoter, type EkuboRouteNode, type EkuboSplit, type ExecutionCallback, type ExecutionConfig, type ExecutionEventMetadata, ExecutionEventType, type ExecutionRoute, ExecutionService, ExitType, ExtendedAdapter, type ExtendedAdapterConfig, type ExtendedApiResponse, type ExtendedBalanceState, ExtendedConfig, type ExtendedLeverRoute, type ExtendedPositionDelta, type ExtendedPositionState, ExtendedSVKVesuStateManager, ExtendedWrapper, type ExtendedWrapperConfig, type FAQ, FactoryStrategyType, FatalError, type FilterOption, type FlashloanCallParams, FlowChartColors, type FundingPayment, type FundingRate, type GenerateCallFn, Global, HealthFactorMath, HyperLSTStrategies, type HyperLSTStrategySettings, type IConfig, type IInvestmentFlow, ILending, type ILendingMetadata, type ILendingPosition, type IProtocol, type IStrategyMetadata, type IncreaseLeverParams, Initializable, InstantWithdrawalVault, type L2Config, LSTAPRService, LSTPriceType, type LSTStats, type LeafAdapterFn, type LeafData, type LendingToken, type LoggerConfig, type LoggerLevel, type ManageCall, MarginType, type Market, type MarketStats, Midas, MyNumber, type NetAPYDetails, type NetAPYSplit, Network, type OpenOrder, OrderSide, OrderStatus, OrderStatusReason, OrderType, PRICE_ROUTER, type ParsedStarknetCall, PasswordJsonCryptoUtil, type PlacedOrder, type Position, type PositionAPY, type PositionAmount, type PositionHistory, type PositionInfo, PositionSide, PositionTypeAvnuExtended, Pragma, type PriceInfo, Pricer, PricerBase, PricerFromApi, PricerLST, PricerRedis, Protocols, type RealisePnlRoute, type RedemptionInfo, type RequiredFields, type RequiredKeys, type RequiredStoreConfig, type RiskFactor, type RiskFactorConfig, RiskType, type Route, type RouteNode, RouteType, SIMPLE_SANITIZER, SIMPLE_SANITIZER_V2, SIMPLE_SANITIZER_VESU_V1_DELEGATIONS, SVK_SIMPLE_SANITIZER, type SecurityMetadata, SenseiStrategies, SenseiVault, type SenseiVaultSettings, type SettlementSignature, type SignedWithdrawRequest, type SingleActionAmount, type SingleTokenInfo, SolveBudget, type SolveCase, type SolveCaseEntry, type SolveResult, type SourceCodeInfo, SourceCodeType, StandardMerkleTree, type StandardMerkleTreeData, type StarkDebuggingOrderAmounts, type StarkSettlement, StarknetCallParser, type StarknetCallParserOptions, type StateManagerConfig, Store, type StoreConfig, type StrategyAlert, type StrategyCapabilities, type StrategyFilterMetadata, StrategyLiveStatus, type StrategyMetadata, type StrategyRegistryEntry, type StrategySettings, StrategyTag, StrategyType, type SupportedPosition, SvkTrovesAdapter, type SvkTrovesAdapterConfig, type Swap, type SwapInfo, type SwapPriceInfo, type SwapRoute, TRANSFER_SANITIZER, TelegramGroupNotif, TelegramNotif, TimeInForce, type TokenAmount, type TokenBalance, type TokenInfo, TokenMarketData, TokenTransferAdapter, type TokenTransferAdapterConfig, type TradingConfig, type TransactionMetadata, type TransactionResult, type TransferRoute, UNIVERSAL_ADAPTERS, UNIVERSAL_MANAGE_IDS, USDCBoostedStrategies, USDCBoostedStrategy, type USDCBoostedStrategySettings, UniversalLstMultiplierStrategy, type UniversalManageCall, UniversalStrategies, UniversalStrategy, type UniversalStrategySettings, type UpdateLeverageRequest, VESU_SINGLETON, VESU_V2_MODIFY_POSITION_SANITIZER, type VaultPosition, VaultType, VesuAdapter, type VesuAdapterConfig, type VesuAmount, VesuAmountDenomination, VesuAmountType, VesuConfig, type VesuDebtRoute, type VesuDefiSpringRewardsCallParams, type VesuDepositParams, VesuExtendedMultiplierStrategy, type VesuExtendedStrategySettings, VesuExtendedTestStrategies, type VesuModifyDelegationCallParams, VesuModifyPositionAdapter, type VesuModifyPositionAdapterConfig, type VesuModifyPositionCallParams, type VesuModifyPositionDepositParams, type VesuModifyPositionWithdrawParams, VesuMultiplyAdapter, type VesuMultiplyAdapterConfig, type VesuMultiplyCallParams, type VesuMultiplyRoute, type VesuPoolDelta, VesuPoolMetadata, type VesuPoolState, VesuPools, VesuRebalance, type VesuRebalanceSettings, VesuRebalanceStrategies, VesuSupplyOnlyAdapter, type VesuSupplyOnlyAdapterConfig, type VesuWithdrawParams, type WaitRoute, Web3Number, type WithdrawParams, type WithdrawRequest, ZkLend, _riskFactor, assert, buildStrategyRegistry, calculateAmountDepositOnExtendedWhenIncurringLosses, calculateAmountDistribution, calculateAmountDistributionForWithdrawal, calculateBTCPriceDelta, calculateDebtAmount, calculateDebtReductionAmountForWithdrawal, calculateDeltaDebtAmount, calculateExposureDelta, calculateExtendedLevergae, calculatePositionToCloseToWithdrawAmount, calculateVesUPositionSizeGivenExtended, calculateVesuLeverage, calculateWBTCAmountToMaintainLTV, configureLogger, createEkuboCLStrategy, createHyperLSTStrategy, createSenseiStrategy, createSolveBudgetFromRawState, createStrategy, createUniversalStrategy, createVesuRebalanceStrategy, detectCapabilities, extensionMap, getAPIUsingHeadlessBrowser, getAllStrategyMetadata, getAllStrategyTags, getContractDetails, getDefaultStoreConfig, getFAQs, getFilterMetadata, getInvestmentSteps, getLiveStrategies, getMainnetConfig, getNoRiskTags, getRiskColor, getRiskExplaination, getStrategiesByType, getStrategyTagDesciption, getStrategyTypeFromMetadata, getTrovesEndpoint, getVesuSingletonAddress, highlightTextWithLinks, type i257, isDualTokenStrategy, logger, returnFormattedAmount, routeSummary, toAmountsInfo, toBigInt };