@kamino-finance/kliquidity-sdk
Version:
Typescript SDK for interacting with the Kamino Liquidity (kliquidity) protocol
15 lines (13 loc) • 301 B
text/typescript
import Decimal from 'decimal.js';
export interface WhirlpoolAprApy {
totalApr: Decimal;
totalApy: Decimal;
feeApr: Decimal;
feeApy: Decimal;
rewardsApr: Decimal[];
rewardsApy: Decimal[];
priceLower: Decimal;
priceUpper: Decimal;
poolPrice: Decimal;
strategyOutOfRange: boolean;
}