@orca-so/whirlpool-sdk
Version:
Whirlpool SDK for the Orca protocol.
10 lines (9 loc) • 437 B
TypeScript
import { PositionData, TickData, WhirlpoolData } from "@orca-so/whirlpool-client-sdk";
import { CollectRewardsQuote } from "../position/public";
export declare type InternalGetCollectRewardsQuoteParam = {
whirlpool: WhirlpoolData;
position: PositionData;
tickLower: TickData;
tickUpper: TickData;
};
export declare function getCollectRewardsQuoteInternal(param: InternalGetCollectRewardsQuoteParam): CollectRewardsQuote;