@tokemak/queries 0.0.16 → 0.0.18
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.cjs +277 -138
- package/dist/index.d.ts +29 -1
- package/dist/index.js +227 -93
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -3314,4 +3314,32 @@ declare const getAutopoolUser: (config: Config, { autopool, address, userActivit
|
|
|
3314
3314
|
};
|
|
3315
3315
|
}>;
|
|
3316
3316
|
|
|
3317
|
-
|
|
3317
|
+
declare const getAutopoolUserHistory: ({ userAddress, autopool, userActivity, }: {
|
|
3318
|
+
userAddress: Address;
|
|
3319
|
+
autopool: IAutopool;
|
|
3320
|
+
userActivity: IUserActivity;
|
|
3321
|
+
}) => Promise<{
|
|
3322
|
+
date: Date;
|
|
3323
|
+
timestamp: any;
|
|
3324
|
+
baseAsset: string;
|
|
3325
|
+
nav: number;
|
|
3326
|
+
events: {
|
|
3327
|
+
timestamp: number;
|
|
3328
|
+
shareChange: string;
|
|
3329
|
+
assetChange: string;
|
|
3330
|
+
vaultAddress: string;
|
|
3331
|
+
eventType: EventType;
|
|
3332
|
+
}[];
|
|
3333
|
+
}[]>;
|
|
3334
|
+
|
|
3335
|
+
declare const getAutopoolHistory: (autopool: IAutopool) => Promise<{
|
|
3336
|
+
date: Date;
|
|
3337
|
+
__typename?: "AutopoolDayData";
|
|
3338
|
+
totalSupply: any;
|
|
3339
|
+
nav: any;
|
|
3340
|
+
timestamp: any;
|
|
3341
|
+
id: string;
|
|
3342
|
+
}[] | undefined>;
|
|
3343
|
+
type IAutopoolHistory = Awaited<ReturnType<typeof getAutopoolHistory>>;
|
|
3344
|
+
|
|
3345
|
+
export { AggregatedDayData, AutopoolCategory, AutopoolsApr, BASE_ASSETS, BATCH_SIZE, BaseAsset, BaseAssetWithUsd, BaseDataEntry, ChainAutopoolsAprResponse, ChainSTokeRewardsType, ChainSTokeType, ChainSTokeVotes, Currencies, CurveLP, ETH_BASE_ASSETS, EUR_BASE_ASSETS, EnhancedUserHistoryEntry, EventType, ExtraReward, FillData, GetLayerzeroStatusConfig, HistoricalTokenPrices, IAutopool, IAutopoolHistory, IAutopools, IAutopoolsHistory, IRebalance, IStoke, IStokeRewards, ISushiLP, ITopAutopoolHolder, ITopAutopoolHolders, IUserActivity, IUserAutopool, IUserAutopools, IUserAutopoolsRewards, IUserExtraRewards, IUserReward, LayerzeroStatus, MessageStatus, Order, PRICED_TOKENS, PoolRewardsBalanceDayData, QuoteAndPriceBaseConfig, QuoteAndPriceBaseResult, QuoteResult, RawRebalance, Reward, RewardDetails, STokeVotes, SendParam, SwapQuoteParams, SwapQuoteResponse, TokenPrices, USD_BASE_ASSETS, UserActivity, UserActivityTotalsType, UserAutopoolsVotes, UserDayDataEntry, UserSTokeVotes, VaultAddedMapping, aggregateSTokeRewardsDayData, arraysToObject, calculateRebalanceStats, convertBaseAssetToTokenPrices, convertBaseAssetToTokenPricesAndDenom, fetchChainDataMap, fetchChainRebalances, fillMissingDates, findClosestDateEntry, findClosestEntry, findClosestTimestampEntry, formatDateRange, getAddressFromSystemRegistry, getAllowance, getAmountDeposited, getAmountWithdrawn, getAutopilotRouter, getAutopoolCategory, getAutopoolDayData, getAutopoolHistory, getAutopoolInfo, getAutopoolRebalances, getAutopoolUser, getAutopoolUserActivity, getAutopoolUserHistory, getAutopools, getAutopoolsHistory, getAutopoolsRebalances, getBlobData, getBlobHistoricalTokenPrices, getBridgeFee, getChainAutopools, getChainAutopoolsApr, getChainCycleRolloverBlockNumber, getChainSToke, getChainSTokeRewards, getChainSubgraphStatus, getChainUserActivity, getChainUserAutopools, getChainUserSToke, getChainUserSTokeRewards, getChainUserSTokeVotes, getChainsForEnv, getCurrentCycleId, getCurveLP, getCycleV1, getDefillamaPrice, getDynamicSwap, getEthPrice, getEthPriceAtBlock, getExchangeNames, getGenStratAprs, getHistoricalTokenPrices, getLayerzeroStatus, getMutlipleAutopoolRebalances, getPoolStats, getPoolsAndDestinations, getPoolsAndDestinationsReturnType, getProtocolStats, getRebalanceStats, getRebalanceValueUsd, getRewardsPayloadV1, getSToke, getSTokeChainsForEnv, getSTokeRewards, getSTokeVotes, getSubgraphStatus, getSushiLP, getSwapQuote, getSystemConfig, getTimestampDaysFromStart, getTokePrice, getTokenList, getTokenPrice, getTokenPrices, getTopAutopoolHolders, getUserActivity, getUserAutoEthRewards, getUserAutopool, getUserAutopools, getUserAutopoolsHistory, getUserAutopoolsRewards, getUserCurveLP, getUserRewardsV1, getUserSToke, getUserSTokeVotes, getUserSushiLP, getUserTokenBalances, getUserV1, mergeArrays, mergeArraysWithKey, mergeStringArrays, minAmountDepositedBaseConfig, minAmountDepositedFunctionConfig, minAmountWithdrawnBaseConfig, minAmountWithdrawnFunctionConfig, modifyAutopoolName, nestedArrayToObject, paginateQuery, processRebalance, processRebalancesInBatches, rewardsData, systemRegistryFunctionNames, updateRebalanceStats, waitForMessageReceived };
|