TVL Extractors
TVL extractors are the functions that calculate the balances of assets locked in a protocol.
Structure
type TvlExtractor = {
category: TVL_Category;
extractor: (chain: Chain, block: number, timestamp: number, cache?: LogsCache) => Promise<Record<string, string>>;
startBlock: number;
};Property
Type
Description
Last updated