@1delta/margin-fetcher 0.0.410 → 0.0.411
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 +119 -36
- package/dist/index.js +107 -210
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -444,16 +444,33 @@ interface FixedTermInfo {
|
|
|
444
444
|
*/
|
|
445
445
|
auction?: FixedTermAuction;
|
|
446
446
|
}
|
|
447
|
-
/**
|
|
447
|
+
/**
|
|
448
|
+
* A single fixed-term loan, attached to its own entry in the positions array.
|
|
449
|
+
*
|
|
450
|
+
* Named for Lista (the first producer) but SHARED by every fixed-term lender
|
|
451
|
+
* that emits per-loan rows — Lista, Exactly, TermMax, Teller. Fields are
|
|
452
|
+
* therefore mostly optional and several are lender-specific; see
|
|
453
|
+
* [FIXED_TERM_REPAY_TERMS.md](../../../../FIXED_TERM_REPAY_TERMS.md) for which
|
|
454
|
+
* lender populates what and for the exact repay economics behind each number.
|
|
455
|
+
*
|
|
456
|
+
* `loanId` is the WRITE TARGET and its meaning differs per lender (Lista posId /
|
|
457
|
+
* Exactly maturity-as-string / TermMax gtId / Teller bidId) — check the lender
|
|
458
|
+
* before using it. `termId` is the RATE-MENU id and is NOT interchangeable with
|
|
459
|
+
* it (Exactly is the only lender where the two coincide, both = maturity).
|
|
460
|
+
*/
|
|
448
461
|
interface ListaTermLoan {
|
|
449
462
|
/** loanId — the repay target for the LISTA_BROKER_REPAY composer op. For fixed loans this is the
|
|
450
|
-
* posId; for the dynamic (flexible) loan it is the dynamic sentinel (type(uint128).max).
|
|
463
|
+
* posId; for the dynamic (flexible) loan it is the dynamic sentinel (type(uint128).max).
|
|
464
|
+
* Other lenders reuse the slot: Exactly = String(maturity), TermMax = gtId, Teller = bidId. */
|
|
451
465
|
loanId: string;
|
|
452
466
|
/** true for the flexible (dynamic / variable-rate) loan; fixed loans omit it */
|
|
453
467
|
isDynamic?: boolean;
|
|
454
468
|
/** best-effort term product id (matched from duration vs the current menu); may be undefined */
|
|
455
469
|
termId?: number;
|
|
456
|
-
/** outstanding debt in loan-token units
|
|
470
|
+
/** outstanding debt in loan-token units. Lista: principal + accrued interest.
|
|
471
|
+
* Static-face-value lenders (Exactly / TermMax / Term): the EXIT-NOW cost —
|
|
472
|
+
* for Exactly that is discounted early and penalty-inflated when overdue, so
|
|
473
|
+
* compare against `faceValue` rather than assuming it is the face. */
|
|
457
474
|
debt: string;
|
|
458
475
|
/** locked annualised borrow rate in PERCENT (e.g. 3.857 = 3.857% APR) */
|
|
459
476
|
apr?: number;
|
|
@@ -462,9 +479,27 @@ interface ListaTermLoan {
|
|
|
462
479
|
termDays?: number;
|
|
463
480
|
/** outstanding accrued interest in loan-token units */
|
|
464
481
|
accruedInterest?: string;
|
|
465
|
-
/** early-repayment penalty (loan-token units) to close the loan now; 0 once matured
|
|
482
|
+
/** early-repayment penalty (loan-token units) to close the loan now; 0 once matured.
|
|
483
|
+
* Lista only — the OPPOSITE sign to Exactly's `earlyRepayDiscount` below. */
|
|
466
484
|
earlyRepayPenalty?: string;
|
|
467
485
|
isMatured?: boolean;
|
|
486
|
+
/** amount owed AT maturity (principal + fee). Static — no accrual index; it
|
|
487
|
+
* grows only via a late penalty where the protocol has one. */
|
|
488
|
+
faceValue?: string;
|
|
489
|
+
/** Exactly: rebate for repaying BEFORE maturity (`faceValue − debt`). Exactly
|
|
490
|
+
* never charges an early-repay fee, but this is 0 when the fixed pool has no
|
|
491
|
+
* unassigned earnings left, so it is not a guaranteed saving. */
|
|
492
|
+
earlyRepayDiscount?: string;
|
|
493
|
+
/** Exactly: penalty accrued so far past maturity (`debt − faceValue`). */
|
|
494
|
+
latePenalty?: string;
|
|
495
|
+
/** Exactly: further penalty per additional day overdue — LINEAR on face, not
|
|
496
|
+
* compounding. */
|
|
497
|
+
latePenaltyPerDay?: string;
|
|
498
|
+
/** annualized late-penalty rate in PERCENT (Exactly `penaltyRate`; ~164 %/yr).
|
|
499
|
+
* A mutable market parameter, snapshotted per fetch. */
|
|
500
|
+
latePenaltyApr?: number;
|
|
501
|
+
/** seconds past maturity; 0 until overdue */
|
|
502
|
+
secondsLate?: number;
|
|
468
503
|
}
|
|
469
504
|
interface MorphoLendingPositions extends BaseLendingPositions {
|
|
470
505
|
isWhitelisted?: boolean;
|
|
@@ -1560,6 +1595,26 @@ interface MarketBook {
|
|
|
1560
1595
|
bids: PublicBookLevel[];
|
|
1561
1596
|
asks: PublicBookLevel[];
|
|
1562
1597
|
}
|
|
1598
|
+
/**
|
|
1599
|
+
* One entry in a fixed-term rate menu. Lives on `params.market.terms` for
|
|
1600
|
+
* single-borrowable-asset markets, and on `data[*].terms` for cross-margin
|
|
1601
|
+
* multi-asset lenders (Exactly), where each asset has its own fixed pools.
|
|
1602
|
+
*
|
|
1603
|
+
* `termId` semantics are LENDER-SPECIFIC — Exactly/TermMax = the unix maturity,
|
|
1604
|
+
* Teller = duration in seconds, Lista = the broker product id, Midnight/Term =
|
|
1605
|
+
* `0` placeholder. See FIXED_TERM_REPAY_TERMS.md.
|
|
1606
|
+
*/
|
|
1607
|
+
interface MarketTermEntry {
|
|
1608
|
+
termId: number;
|
|
1609
|
+
durationSecs: number;
|
|
1610
|
+
durationDays: number;
|
|
1611
|
+
/** annualised borrow rate in PERCENT (e.g. 3.857 = 3.857% APR) */
|
|
1612
|
+
apr: number;
|
|
1613
|
+
/** annualised fixed LEND rate in PERCENT at this maturity (Exactly only) */
|
|
1614
|
+
depositApr?: number;
|
|
1615
|
+
/** borrowable liquidity at this maturity, loan-token human units (Exactly only) */
|
|
1616
|
+
available?: number;
|
|
1617
|
+
}
|
|
1563
1618
|
interface MorphoMarket {
|
|
1564
1619
|
/** the 1delta lender enum */
|
|
1565
1620
|
lender: string;
|
|
@@ -1590,19 +1645,13 @@ interface MorphoMarket {
|
|
|
1590
1645
|
/** IRM rate floor */
|
|
1591
1646
|
rateFloor?: string;
|
|
1592
1647
|
/** Fixed-term rate menu — available term products (Lista brokered markets,
|
|
1593
|
-
* Term/Midnight single-maturity markets
|
|
1594
|
-
*
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
apr: number;
|
|
1601
|
-
/** annualised fixed LEND rate in PERCENT at this maturity (Exactly only) */
|
|
1602
|
-
depositApr?: number;
|
|
1603
|
-
/** borrowable liquidity at this maturity, loan-token human units (Exactly only) */
|
|
1604
|
-
available?: number;
|
|
1605
|
-
}[];
|
|
1648
|
+
* Term/Midnight single-maturity markets).
|
|
1649
|
+
*
|
|
1650
|
+
* MARKET-LEVEL menu, valid only when the lender key has ONE borrowable asset
|
|
1651
|
+
* (every isolated-market fixed-term lender). CROSS-MARGIN multi-asset
|
|
1652
|
+
* lenders — Exactly — carry a menu PER ASSET on `data[*].terms` instead,
|
|
1653
|
+
* since each asset has its own fixed pools. */
|
|
1654
|
+
terms?: MarketTermEntry[];
|
|
1606
1655
|
/**
|
|
1607
1656
|
* Canonical cross-protocol fixed-term descriptor (Lista brokered + Morpho
|
|
1608
1657
|
* Midnight). Present on fixed-rate/fixed-maturity markets only. See
|
|
@@ -1663,6 +1712,20 @@ interface MorphoGeneralPublicResponse {
|
|
|
1663
1712
|
* only for an effective-cost-since-open view.
|
|
1664
1713
|
*/
|
|
1665
1714
|
originationFee?: number;
|
|
1715
|
+
/**
|
|
1716
|
+
* PER-ASSET fixed-term rate menu, for CROSS-MARGIN multi-asset fixed-term
|
|
1717
|
+
* lenders (Exactly): one lender key covers every asset, and each asset has
|
|
1718
|
+
* its own fixed pools, so the menu cannot live on `params.market`.
|
|
1719
|
+
* Isolated-market fixed-term lenders (Midnight, Term, Lista broker,
|
|
1720
|
+
* TermMax, Teller) keep using `params.market.terms` — read that as the
|
|
1721
|
+
* fallback when this is absent.
|
|
1722
|
+
*/
|
|
1723
|
+
terms?: MarketTermEntry[];
|
|
1724
|
+
/**
|
|
1725
|
+
* PER-ASSET fixed-term descriptor, same rationale as `terms` above
|
|
1726
|
+
* (Exactly). Falls back to `params.market.fixedTerm` when absent.
|
|
1727
|
+
*/
|
|
1728
|
+
fixedTerm?: FixedTermInfo;
|
|
1666
1729
|
rewards?: RewardsList;
|
|
1667
1730
|
decimals: number;
|
|
1668
1731
|
config: {
|
|
@@ -2521,26 +2584,46 @@ interface ExactlyMarketsRaw {
|
|
|
2521
2584
|
*/
|
|
2522
2585
|
declare function fetchExactlyMarkets(chainId: string): Promise<ExactlyMarketsRaw>;
|
|
2523
2586
|
|
|
2524
|
-
/** Synthesized per-market lender key, e.g. `EXACTLY_<MARKET_ADDRESS_HEX_UPPER>`. */
|
|
2525
|
-
declare function exactlyLenderKey(market: string): string;
|
|
2526
|
-
/** Recover the Market address from an `EXACTLY_<HEX>` lender key (or undefined). */
|
|
2527
|
-
declare function exactlyMarketFromLenderKey(lender: string): string | undefined;
|
|
2528
2587
|
/**
|
|
2529
|
-
*
|
|
2530
|
-
* shape (identical to Midnight/Term), keyed by `EXACTLY_<MARKET_ADDRESS>` — one
|
|
2531
|
-
* key per asset Market (NOT per maturity; the maturity menu is the market's
|
|
2532
|
-
* `params.market.terms[]`, `termId` = maturity timestamp).
|
|
2588
|
+
* The ONE Exactly lender key per chain.
|
|
2533
2589
|
*
|
|
2534
|
-
*
|
|
2535
|
-
*
|
|
2536
|
-
*
|
|
2537
|
-
*
|
|
2538
|
-
*
|
|
2539
|
-
*
|
|
2540
|
-
*
|
|
2541
|
-
*
|
|
2542
|
-
*
|
|
2543
|
-
*
|
|
2590
|
+
* Exactly is a CROSS-MARGIN protocol: a single per-chain `Auditor` (a
|
|
2591
|
+
* Compound-V2-shaped comptroller, NOT a Euler controller) holds one
|
|
2592
|
+
* `enterMarket` bitmap per account, every entered deposit backs debt in ANY
|
|
2593
|
+
* market simultaneously, and health is one global check. The per-asset `Market`
|
|
2594
|
+
* contracts exist because each is the ERC-4626 share token for its asset and
|
|
2595
|
+
* carries that asset's rates / fixed pools — exactly like cUSDC and cETH under
|
|
2596
|
+
* one Comptroller. They are NOT isolated markets.
|
|
2597
|
+
*
|
|
2598
|
+
* So Exactly is modeled like Compound V2: ONE lender key, one entry per asset.
|
|
2599
|
+
* (It was previously split into synthesized `EXACTLY_<MARKET_ADDR>` keys — that
|
|
2600
|
+
* only ever existed because `terms[]` / `fixedTerm` lived on `params.market`,
|
|
2601
|
+
* which assumes one borrowable asset per key. Both now also exist per asset on
|
|
2602
|
+
* `data[*]`, so the split is gone along with the cross-margin collateral
|
|
2603
|
+
* mirroring, the double-count hazard and the optimistic per-key health it
|
|
2604
|
+
* forced. Resolve a Market contract from the ASSET via
|
|
2605
|
+
* `exactlyMarketByAsset(chainId, asset)` — or from the entry's `poolId`.)
|
|
2606
|
+
*/
|
|
2607
|
+
declare const EXACTLY_LENDER_KEY = "EXACTLY";
|
|
2608
|
+
/**
|
|
2609
|
+
* Map the on-chain Previewer batch into the shared `MorphoGeneralPublicResponse`
|
|
2610
|
+
* shape, under the SINGLE cross-margin {@link EXACTLY_LENDER_KEY} — one entry
|
|
2611
|
+
* per ASSET (the Compound V2 shape), never one key per Market.
|
|
2612
|
+
*
|
|
2613
|
+
* Per asset entry:
|
|
2614
|
+
* - FLOATING rates (`depositRate` / `variableBorrowRate`) plus the best live
|
|
2615
|
+
* fixed borrow APR on `stableBorrowRate`;
|
|
2616
|
+
* - its OWN `terms[]` maturity menu (`termId` = the pool's maturity) and its
|
|
2617
|
+
* OWN `fixedTerm` descriptor pointing at that asset's Market — per-asset
|
|
2618
|
+
* because each asset has its own fixed pools;
|
|
2619
|
+
* - risk as `collateralFactor = adjustFactor` + `borrowFactor = 1/adjustFactor`,
|
|
2620
|
+
* which is the Auditor's own formula (their product = the pairwise LTV);
|
|
2621
|
+
* - `poolId` / `exactly.market` = the Market contract (the write target).
|
|
2622
|
+
*
|
|
2623
|
+
* Every asset is simultaneously borrowable AND collateral for every other, so
|
|
2624
|
+
* there are no sibling-collateral rows. `params.market` carries only the
|
|
2625
|
+
* pool-wide descriptor (Auditor as `id`, a market-level `fixedTerm` without a
|
|
2626
|
+
* provider address). See the wrapper README for the repay mechanics.
|
|
2544
2627
|
*/
|
|
2545
2628
|
declare function convertExactlyMarketsToResponse(raw: ExactlyMarketsRaw, chainId: string, prices?: {
|
|
2546
2629
|
[asset: string]: number;
|
|
@@ -7629,4 +7712,4 @@ interface FetchTokenBalancesOptions {
|
|
|
7629
7712
|
*/
|
|
7630
7713
|
declare function fetchTokenBalances(chainId: string, account: string, tokens: string[], options?: FetchTokenBalancesOptions): Promise<TokenBalanceResult>;
|
|
7631
7714
|
|
|
7632
|
-
export { type AaveMetadata, type AaveV2Public, type AaveV2UserReserveResponse, type AaveV3Public, type AaveV3UserReserveResponse, type AdditionalYields, ApiBookSource, type AprData, type BalanceData, type BaseLendingPosition, type BasicReserveResponse, type ChainDiagnostic, type ChainLinkResponse, type ChainQuery, type ChainSummary, type CompoundV2Metadata, type CompoundV3Public, type CompoundV3UserReserveResponse, type ConfigEntry, type CoreValidators, DEFAULT_MIDNIGHT_API, DEFAULT_OUTLIER_GUARD, DEFAULT_STALE_REJECT_SECONDS, DEFAULT_TERMMAX_API, type Denomination, type DepthMap, EMPTY_BALANCE, type EModeAssets, type EModeData, type EModeResult, type EulerEarnVault, type EulerEarnVaults, type EulerV2Metadata, type ExactlyFixedPool, type ExactlyFixedPosition, type ExactlyMarketAccount, type ExactlyMarketsRaw, type ExactlyUserFixedPosition, type ExtraValidationCall, type FeedObservation, type FeedStat, type FeedStatsMap, type FeedTimestampMap, type FetchListaVaultsFromChainOptions, type FetchMorphoVaultsFromChainOptions, type FetchOraclePricesOptions, type FetchTokenBalancesOptions, type FlattenPriorityConfig, type FluidFToken, type FluidFTokens, type FullLenderRewardsMap, GMX_API_HOSTS, GMX_READ_CONTRACTS, GMX_SUPPORTED_CHAINS, type GenericCurrency, type GenericTokenList, type GetVaultPublicDataAllOptions, type GmxExecutionFees, type GmxPendingDeposit, type GmxPendingWithdrawal, type GmxReadContracts, type GmxUserBalance, type GmxUserPositions, type GmxUserPositionsOptions, type GmxVault, type GmxVaultKind, type GmxVaults, type GmxVaultsFetchOptions, type GroupAccumulator, HYPERCORE_VAULT_REGISTRY, type HypercoreLockStatus, type HypercoreUserPositionsOptions, type HypercoreVault, type HypercoreVaultPosition, type HypercoreVaultRegistryEntry, type HypercoreVaults, type HypercoreVaultsFetchOptions, IDLE_MARKET_ID, INTERFACE_IDS, type InitMetadata, type InitPublic, type InitUserReserveResponse, type InterfaceKind, type InverseMarketRaw, type InverseMarketsRaw, type InversePositionInfo, LAGOON_API_URL, LAGOON_CHAIN_IDS, type LagoonApiVault, type LagoonSyncMode, type LagoonVault, type LagoonVaults, type LenderConfigData, type LenderConfigMap, type LenderCrossPoolMeta, type LenderData, type LenderDataEntry, type LenderInfo, type LenderInfoMap, type LenderPublicBase, type LenderRewardsMap, type LenderSummary, type LenderToLenderCrossPoolMeta, type LenderTotalAmounts, type LenderUserQuery, type LenderUserResponse, type LenderYieldComplete, type LenderYields$1 as LenderYields, LendingMode, type LiquityBranchRaw, type LiquityDiscoveredTrove, type LiquityDiscovery, type LiquityMarketsRaw, type LiquitySpInfo, type LiquityTroveInfo, type ListaMarketOverrides, type LoopPostTradeMetrics, type LstDelegation, type LstDelegationKind, type LstValidator, type LstWithdrawalFetchOptions, type LstWithdrawalRegistryEntry, type LstWithdrawalRequest, type LstWithdrawalRequestsByLst, type LstWithdrawalStatus, MORPHO_LENS, MaxParamThresholds, type MergedUserData, type MidnightBook, type MidnightBookLevel, type MidnightBookSource, type ModeBase, type MorphoMarketOverrides, type MorphoSubgraphProxyConfig, type MorphoUserMarketBalance, type MorphoUserReserveResponse, type MorphoVault, type MorphoVaults, type MulticallRpcBatch, type NumberMap, type OracleDiagnostics, type OraclePriceEntry, type OraclePricesResult, type OutlierGuardConfig, type ParsedBalanceData, type ParsedResponse, type ParsedUserBalance, type PermissionParams, type PoolData, type PoolWithMeta, type PortfolioSummary, type PortfolioTotals, type PostTradeMetrics, type PreparedCall, type PreparedMergedMulticallParams, type PreparedMergedRpcCalls, type PreparedTokenBalanceRpcCalls, type PreparedUserDataRpcCalls, type PriceDerivation, type PriceSelection, type ProtocolParams, type ProviderOptions, type RawRpcBatch, type RawRpcCall, type RawRpcResponse, type RiverMarketRaw, type RiverMarketsRaw, type RiverPositionInfo, STABLECOIN_SYMBOLS, STCELO_MANAGER_ADDRESS, type SelectPricesOptions, type SiloVault, type SiloVaults, type StCeloValidatorGroup, type StaleFeedEntry, type StructuredOraclePrices, type SubAccountSummary, type SumerPositionInput, type SummaryAprData, type SummaryBalanceData, TELLER_CALLS_PER_BID, TERMMAX_CALLS_PER_ACCOUNT, DECIMAL_BASE as TERMMAX_DECIMAL_BASE, TERMMAX_LIQUIDATION_PENALTY, TERMMAX_LIQUIDATION_WINDOW_SECS, TERMMAX_LIQUIDATOR_BONUS, TERMMAX_PARTIAL_CLOSE_FACTOR, TERMMAX_PARTIAL_LIQUIDATION_THRESHOLD_USD, type TellerDiscoveredBid, type TellerDiscovery, type TellerMarketsRaw, type TellerPoolRaw, type TermAuctionOrder, type TermAuctionOrders, type TermBookSource, type TermBookTop, type TermListing, type TermMarketRaw, TermMaxApiSource, type TermMaxBookTop, type TermMaxCurveSegment, type TermMaxDataSource, type TermMaxDiscovery, type TermMaxFeeConfig, type TermMaxMarketConfig, type TermMaxMarketRaw, type TermMaxOrderState, TermSubgraphSource, type TokenApprovalMeta, type TokenApprovalParams, type TokenBalanceEntry, type TokenBalanceQuery, type TokenBalanceResult, type TokenEntry, type TokenList, type TokenListInput, type TrackerDiagnostic, UPSHIFT_CHAIN_IDS, UPSHIFT_VAULTS_URL, type USDPriceMap, type UpshiftApiAsset, type UpshiftApiVault, type UpshiftVault, type UpshiftVaults, type UsddMarketRaw, type UsddMarketsRaw, type UsddPositionInfo, type UserApr, type UserConfig, type UserData, type UserDataResult, type UserLendingPosition, VAULT_SHARE_PRICE_PROBE, VOLATILE_VAULT_OVERRIDES, type VaultAprResult, type VaultClassification, type VaultClassificationFields, type VaultLookupEntry, type VaultMarketExposure, type VaultProvider, type VaultPublicDataAll, type VaultPublicDataResult, type VaultYieldSeries, type VaultYieldSnapshot, type YDaemonVault, YEARN_CHAIN_IDS, YEARN_YDAEMON_BASE, type YearnVault, type YearnVaultKind, type YearnVaults, type YieldProfile, accountDepositListKey, accountWithdrawalListKey, appendSnapshot, applyPositionDelta, attachPricesToFlashLiquidity, buildFluidFTokensCall, buildLiquityUserCall, buildLoopResult, buildMorphoTypeCall, buildMorphoTypeUserCallWithLens, buildPortfolioTotals, buildSumerAccumulators, buildSummaries, buildTellerUserCall, buildTermMaxUserCall, buildVaultLookup, calculateLeverage, calculateNetApr, calculateOverallNetApr, calculateWeightedAverage, classifyFreshness, classifyReliability, classifyVault, collectFeedObservations, computeBorrowDelta, computeCloseTradeDeltas, computeCollateralSwapDeltas, computeDebtSwapDeltas, computeDepositDelta, computeEModeAnalysis, computeOpenTradeDeltas, computePostTradeMetrics, computeRepayDelta, computeSumerBorrowDelta, computeSumerDepositDelta, computeSumerRepayDelta, computeSumerWaterfall, computeSumerWithdrawDelta, computeVaultApr, computeWithdrawDelta, computeZapTradeDeltas, consensusReference, convertExactlyMarketsToResponse, convertInverseMarketsToResponse, convertLenderUserDataResult, convertLiquityMarketsToResponse, convertRiverMarketsToResponse, convertTellerMarketsToResponse, convertTermMarketsToResponse, convertTermMaxMarketsToResponse, convertUsddMarketsToResponse, createMarketUid, createMidnightBookSource, createMulticallRpcCall, createRawRpcCalls, createTermBookSource, createTermMaxDataSource, decodeListaMarkets, decodeMarkets, decodePackedListaUserDataset, decodePackedMorphoUserDataset, detectInterfaceKinds, encodeBalanceFetcherCalldata, exactlyLenderKey, exactlyMarketFromLenderKey, exactlyPairLtv, exactlyPenaltyRateToAprPercent, exactlyWadRateToPercent, feedKeyOf, feedStatKey, fetchDolomiteAccountNumbers, fetchEulerEarnVaults, fetchEulerEarnVaultsFromSubgraph, fetchEulerSubAccountIndexes, fetchExactlyMarkets, fetchFlashLiquidityForChain, fetchFluidFTokens, fetchGeneralYields, fetchGeneralYieldsByMarketUid, fetchGmxExecutionFees, fetchGmxTickerPrices, fetchGmxVaults, fetchHypercoreVaults, fetchInverseMarkets, fetchLagoonApiVaults, fetchLagoonVaults, fetchLiquityMarkets, fetchListaVaultsFromChain, fetchMorphoUserBalances, fetchMorphoUserPositionMarkets, fetchMorphoVaults, fetchMorphoVaultsFromApi, fetchMorphoVaultsFromChain, fetchOraclePrices, fetchPendlePrices, fetchRiverMarkets, fetchSiloVaults, fetchTellerMarkets, fetchTermMarkets, fetchTermMaxMarkets, fetchTokenBalances, fetchTokenMetadata, fetchUpshiftApiVaults, fetchUpshiftVaults, fetchUsddMarkets, fetchYearnApiVaults, fetchYearnVaults, filterActiveLenders, filterLendersByProtocol, fuseLenderData, generateLendingPools, getAavesForChain, getAssetConfig, getBalanceForMarketUid, getBorrowCapacity, getCachedLiquityTroves, getCachedTellerBids, getCachedTermMaxDiscovery, getCachedTermMaxMarket, getCachedTermMaxMarkets, getCoreValidators, getFluidFTokensConverter, getGmxApiHost, getGmxReadContracts, getGmxUserPositions, getHealthFactor, getHypercoreUserPositions, getHypercoreVaultRegistry, getLenderAssets, getLenderPublicData, getLenderPublicDataAll, getLenderPublicDataViaApi, getLenderUserDataMulti, getLenderUserDataResult, getLendersForChain, getLstDelegation, getLstValidators, getLstWithdrawalRegistry, getLstWithdrawalRequests, getMaxAmountClose, getMaxAmountCollateralSwap, getMaxAmountDebtSwap, getMaxAmountOpen, getMergedUserData, getMorphoTypeMarketConverter, getResolvedDolomiteAccountNumbers, getStCeloValidatorGroups, getSubAccountAddress, getSubAccountIndex, getVaultPublicDataAll, getVaultWithdrawalRequests, hasEulerEarnVaultSubgraph, hasLagoonVaults, hasMorphoPositionIndex, hasMorphoUserApi, hasMorphoUserSubgraph, hasUpshiftVaults, hasYearnVaults, inverseKeyParts, inverseLenderKey, isStablecoinSymbol, isYearnV3, keysFromMaps, lenderApiOnly, lenderFamily, liquityCandidateTroveIds, liquityKeyParts, liquityLenderKey, multicall3Abi, nanTo, needsLenderApproval, needsTokenApproval, noOpResult, normalizeToBytes, parseBalanceFetcherResult, parseMergedResult, parseMulticallRpcResponses, parseRawRpcBatchResponses, parseRawRpcResponses, parseTermMaxLtv, parseTokenBalanceResult, positivePart, predictInverseEscrow, prepareLenderUserDataRpcCalls, prepareMergedMulticallParams, prepareMergedRpcCalls, prepareMulticallInputs, prepareTokenBalanceRpcCalls, priceGlvVaults, priceGmMarkets, probeAaveFeedTimestamps, pruneFeedStats, readVaultSharePrices, rejectOutliers as rejectPriceOutliers, resolveDerivation, resolveStCeloDepositGroup, riverKeyParts, riverLenderKey, selectAssetGroupPrices, stampVaultClassification, tellerBpsToPercent, tellerImpliedLtv, tellerLenderKey, tellerPoolFromLenderKey, termLenderKey, termMaxApiBase, borrowNif as termMaxBorrowNif, curveApr as termMaxCurveApr, curveAprNumber as termMaxCurveAprNumber, daysToMaturity as termMaxDaysToMaturity, lendNif as termMaxLendNif, mintGtFeeRatio as termMaxMintGtFeeRatio, ratioToNumber as termMaxRatioToNumber, ratioToPercent as termMaxRatioToPercent, tickToAprNumber, tickToPrice, unflattenLenderData, updateFeedStats, usddIlkBytes32, usddKeyParts, usddLenderKey };
|
|
7715
|
+
export { type AaveMetadata, type AaveV2Public, type AaveV2UserReserveResponse, type AaveV3Public, type AaveV3UserReserveResponse, type AdditionalYields, ApiBookSource, type AprData, type BalanceData, type BaseLendingPosition, type BasicReserveResponse, type ChainDiagnostic, type ChainLinkResponse, type ChainQuery, type ChainSummary, type CompoundV2Metadata, type CompoundV3Public, type CompoundV3UserReserveResponse, type ConfigEntry, type CoreValidators, DEFAULT_MIDNIGHT_API, DEFAULT_OUTLIER_GUARD, DEFAULT_STALE_REJECT_SECONDS, DEFAULT_TERMMAX_API, type Denomination, type DepthMap, EMPTY_BALANCE, type EModeAssets, type EModeData, type EModeResult, EXACTLY_LENDER_KEY, type EulerEarnVault, type EulerEarnVaults, type EulerV2Metadata, type ExactlyFixedPool, type ExactlyFixedPosition, type ExactlyMarketAccount, type ExactlyMarketsRaw, type ExactlyUserFixedPosition, type ExtraValidationCall, type FeedObservation, type FeedStat, type FeedStatsMap, type FeedTimestampMap, type FetchListaVaultsFromChainOptions, type FetchMorphoVaultsFromChainOptions, type FetchOraclePricesOptions, type FetchTokenBalancesOptions, type FlattenPriorityConfig, type FluidFToken, type FluidFTokens, type FullLenderRewardsMap, GMX_API_HOSTS, GMX_READ_CONTRACTS, GMX_SUPPORTED_CHAINS, type GenericCurrency, type GenericTokenList, type GetVaultPublicDataAllOptions, type GmxExecutionFees, type GmxPendingDeposit, type GmxPendingWithdrawal, type GmxReadContracts, type GmxUserBalance, type GmxUserPositions, type GmxUserPositionsOptions, type GmxVault, type GmxVaultKind, type GmxVaults, type GmxVaultsFetchOptions, type GroupAccumulator, HYPERCORE_VAULT_REGISTRY, type HypercoreLockStatus, type HypercoreUserPositionsOptions, type HypercoreVault, type HypercoreVaultPosition, type HypercoreVaultRegistryEntry, type HypercoreVaults, type HypercoreVaultsFetchOptions, IDLE_MARKET_ID, INTERFACE_IDS, type InitMetadata, type InitPublic, type InitUserReserveResponse, type InterfaceKind, type InverseMarketRaw, type InverseMarketsRaw, type InversePositionInfo, LAGOON_API_URL, LAGOON_CHAIN_IDS, type LagoonApiVault, type LagoonSyncMode, type LagoonVault, type LagoonVaults, type LenderConfigData, type LenderConfigMap, type LenderCrossPoolMeta, type LenderData, type LenderDataEntry, type LenderInfo, type LenderInfoMap, type LenderPublicBase, type LenderRewardsMap, type LenderSummary, type LenderToLenderCrossPoolMeta, type LenderTotalAmounts, type LenderUserQuery, type LenderUserResponse, type LenderYieldComplete, type LenderYields$1 as LenderYields, LendingMode, type LiquityBranchRaw, type LiquityDiscoveredTrove, type LiquityDiscovery, type LiquityMarketsRaw, type LiquitySpInfo, type LiquityTroveInfo, type ListaMarketOverrides, type LoopPostTradeMetrics, type LstDelegation, type LstDelegationKind, type LstValidator, type LstWithdrawalFetchOptions, type LstWithdrawalRegistryEntry, type LstWithdrawalRequest, type LstWithdrawalRequestsByLst, type LstWithdrawalStatus, MORPHO_LENS, MaxParamThresholds, type MergedUserData, type MidnightBook, type MidnightBookLevel, type MidnightBookSource, type ModeBase, type MorphoMarketOverrides, type MorphoSubgraphProxyConfig, type MorphoUserMarketBalance, type MorphoUserReserveResponse, type MorphoVault, type MorphoVaults, type MulticallRpcBatch, type NumberMap, type OracleDiagnostics, type OraclePriceEntry, type OraclePricesResult, type OutlierGuardConfig, type ParsedBalanceData, type ParsedResponse, type ParsedUserBalance, type PermissionParams, type PoolData, type PoolWithMeta, type PortfolioSummary, type PortfolioTotals, type PostTradeMetrics, type PreparedCall, type PreparedMergedMulticallParams, type PreparedMergedRpcCalls, type PreparedTokenBalanceRpcCalls, type PreparedUserDataRpcCalls, type PriceDerivation, type PriceSelection, type ProtocolParams, type ProviderOptions, type RawRpcBatch, type RawRpcCall, type RawRpcResponse, type RiverMarketRaw, type RiverMarketsRaw, type RiverPositionInfo, STABLECOIN_SYMBOLS, STCELO_MANAGER_ADDRESS, type SelectPricesOptions, type SiloVault, type SiloVaults, type StCeloValidatorGroup, type StaleFeedEntry, type StructuredOraclePrices, type SubAccountSummary, type SumerPositionInput, type SummaryAprData, type SummaryBalanceData, TELLER_CALLS_PER_BID, TERMMAX_CALLS_PER_ACCOUNT, DECIMAL_BASE as TERMMAX_DECIMAL_BASE, TERMMAX_LIQUIDATION_PENALTY, TERMMAX_LIQUIDATION_WINDOW_SECS, TERMMAX_LIQUIDATOR_BONUS, TERMMAX_PARTIAL_CLOSE_FACTOR, TERMMAX_PARTIAL_LIQUIDATION_THRESHOLD_USD, type TellerDiscoveredBid, type TellerDiscovery, type TellerMarketsRaw, type TellerPoolRaw, type TermAuctionOrder, type TermAuctionOrders, type TermBookSource, type TermBookTop, type TermListing, type TermMarketRaw, TermMaxApiSource, type TermMaxBookTop, type TermMaxCurveSegment, type TermMaxDataSource, type TermMaxDiscovery, type TermMaxFeeConfig, type TermMaxMarketConfig, type TermMaxMarketRaw, type TermMaxOrderState, TermSubgraphSource, type TokenApprovalMeta, type TokenApprovalParams, type TokenBalanceEntry, type TokenBalanceQuery, type TokenBalanceResult, type TokenEntry, type TokenList, type TokenListInput, type TrackerDiagnostic, UPSHIFT_CHAIN_IDS, UPSHIFT_VAULTS_URL, type USDPriceMap, type UpshiftApiAsset, type UpshiftApiVault, type UpshiftVault, type UpshiftVaults, type UsddMarketRaw, type UsddMarketsRaw, type UsddPositionInfo, type UserApr, type UserConfig, type UserData, type UserDataResult, type UserLendingPosition, VAULT_SHARE_PRICE_PROBE, VOLATILE_VAULT_OVERRIDES, type VaultAprResult, type VaultClassification, type VaultClassificationFields, type VaultLookupEntry, type VaultMarketExposure, type VaultProvider, type VaultPublicDataAll, type VaultPublicDataResult, type VaultYieldSeries, type VaultYieldSnapshot, type YDaemonVault, YEARN_CHAIN_IDS, YEARN_YDAEMON_BASE, type YearnVault, type YearnVaultKind, type YearnVaults, type YieldProfile, accountDepositListKey, accountWithdrawalListKey, appendSnapshot, applyPositionDelta, attachPricesToFlashLiquidity, buildFluidFTokensCall, buildLiquityUserCall, buildLoopResult, buildMorphoTypeCall, buildMorphoTypeUserCallWithLens, buildPortfolioTotals, buildSumerAccumulators, buildSummaries, buildTellerUserCall, buildTermMaxUserCall, buildVaultLookup, calculateLeverage, calculateNetApr, calculateOverallNetApr, calculateWeightedAverage, classifyFreshness, classifyReliability, classifyVault, collectFeedObservations, computeBorrowDelta, computeCloseTradeDeltas, computeCollateralSwapDeltas, computeDebtSwapDeltas, computeDepositDelta, computeEModeAnalysis, computeOpenTradeDeltas, computePostTradeMetrics, computeRepayDelta, computeSumerBorrowDelta, computeSumerDepositDelta, computeSumerRepayDelta, computeSumerWaterfall, computeSumerWithdrawDelta, computeVaultApr, computeWithdrawDelta, computeZapTradeDeltas, consensusReference, convertExactlyMarketsToResponse, convertInverseMarketsToResponse, convertLenderUserDataResult, convertLiquityMarketsToResponse, convertRiverMarketsToResponse, convertTellerMarketsToResponse, convertTermMarketsToResponse, convertTermMaxMarketsToResponse, convertUsddMarketsToResponse, createMarketUid, createMidnightBookSource, createMulticallRpcCall, createRawRpcCalls, createTermBookSource, createTermMaxDataSource, decodeListaMarkets, decodeMarkets, decodePackedListaUserDataset, decodePackedMorphoUserDataset, detectInterfaceKinds, encodeBalanceFetcherCalldata, exactlyPairLtv, exactlyPenaltyRateToAprPercent, exactlyWadRateToPercent, feedKeyOf, feedStatKey, fetchDolomiteAccountNumbers, fetchEulerEarnVaults, fetchEulerEarnVaultsFromSubgraph, fetchEulerSubAccountIndexes, fetchExactlyMarkets, fetchFlashLiquidityForChain, fetchFluidFTokens, fetchGeneralYields, fetchGeneralYieldsByMarketUid, fetchGmxExecutionFees, fetchGmxTickerPrices, fetchGmxVaults, fetchHypercoreVaults, fetchInverseMarkets, fetchLagoonApiVaults, fetchLagoonVaults, fetchLiquityMarkets, fetchListaVaultsFromChain, fetchMorphoUserBalances, fetchMorphoUserPositionMarkets, fetchMorphoVaults, fetchMorphoVaultsFromApi, fetchMorphoVaultsFromChain, fetchOraclePrices, fetchPendlePrices, fetchRiverMarkets, fetchSiloVaults, fetchTellerMarkets, fetchTermMarkets, fetchTermMaxMarkets, fetchTokenBalances, fetchTokenMetadata, fetchUpshiftApiVaults, fetchUpshiftVaults, fetchUsddMarkets, fetchYearnApiVaults, fetchYearnVaults, filterActiveLenders, filterLendersByProtocol, fuseLenderData, generateLendingPools, getAavesForChain, getAssetConfig, getBalanceForMarketUid, getBorrowCapacity, getCachedLiquityTroves, getCachedTellerBids, getCachedTermMaxDiscovery, getCachedTermMaxMarket, getCachedTermMaxMarkets, getCoreValidators, getFluidFTokensConverter, getGmxApiHost, getGmxReadContracts, getGmxUserPositions, getHealthFactor, getHypercoreUserPositions, getHypercoreVaultRegistry, getLenderAssets, getLenderPublicData, getLenderPublicDataAll, getLenderPublicDataViaApi, getLenderUserDataMulti, getLenderUserDataResult, getLendersForChain, getLstDelegation, getLstValidators, getLstWithdrawalRegistry, getLstWithdrawalRequests, getMaxAmountClose, getMaxAmountCollateralSwap, getMaxAmountDebtSwap, getMaxAmountOpen, getMergedUserData, getMorphoTypeMarketConverter, getResolvedDolomiteAccountNumbers, getStCeloValidatorGroups, getSubAccountAddress, getSubAccountIndex, getVaultPublicDataAll, getVaultWithdrawalRequests, hasEulerEarnVaultSubgraph, hasLagoonVaults, hasMorphoPositionIndex, hasMorphoUserApi, hasMorphoUserSubgraph, hasUpshiftVaults, hasYearnVaults, inverseKeyParts, inverseLenderKey, isStablecoinSymbol, isYearnV3, keysFromMaps, lenderApiOnly, lenderFamily, liquityCandidateTroveIds, liquityKeyParts, liquityLenderKey, multicall3Abi, nanTo, needsLenderApproval, needsTokenApproval, noOpResult, normalizeToBytes, parseBalanceFetcherResult, parseMergedResult, parseMulticallRpcResponses, parseRawRpcBatchResponses, parseRawRpcResponses, parseTermMaxLtv, parseTokenBalanceResult, positivePart, predictInverseEscrow, prepareLenderUserDataRpcCalls, prepareMergedMulticallParams, prepareMergedRpcCalls, prepareMulticallInputs, prepareTokenBalanceRpcCalls, priceGlvVaults, priceGmMarkets, probeAaveFeedTimestamps, pruneFeedStats, readVaultSharePrices, rejectOutliers as rejectPriceOutliers, resolveDerivation, resolveStCeloDepositGroup, riverKeyParts, riverLenderKey, selectAssetGroupPrices, stampVaultClassification, tellerBpsToPercent, tellerImpliedLtv, tellerLenderKey, tellerPoolFromLenderKey, termLenderKey, termMaxApiBase, borrowNif as termMaxBorrowNif, curveApr as termMaxCurveApr, curveAprNumber as termMaxCurveAprNumber, daysToMaturity as termMaxDaysToMaturity, lendNif as termMaxLendNif, mintGtFeeRatio as termMaxMintGtFeeRatio, ratioToNumber as termMaxRatioToNumber, ratioToPercent as termMaxRatioToPercent, tickToAprNumber, tickToPrice, unflattenLenderData, updateFeedStats, usddIlkBytes32, usddKeyParts, usddLenderKey };
|