@kamino-finance/kliquidity-sdk
Version:
Typescript SDK for interacting with the Kamino Liquidity (kliquidity) protocol
12 lines (9 loc) • 385 B
text/typescript
import { PriceReferenceType } from './types';
export const PoolPriceReferenceType: PriceReferenceType = {
name: 'Pool',
description: "Use the pool's current price as the reference price for rebalancing",
};
export const TwapPriceReferenceType: PriceReferenceType = {
name: 'TWAP',
description: 'Use the time weighted average price as the reference price for rebalancing',
};