@kamino-finance/kliquidity-sdk
Version:
Typescript SDK for interacting with the Kamino Liquidity (kliquidity) protocol
23 lines • 888 B
TypeScript
/**
* This code was AUTOGENERATED using the Codama library.
* Please DO NOT EDIT THIS FILE, instead use visitors
* to add features, then rerun Codama to update it.
*
* @see https://github.com/codama-idl/codama
*/
import { type FixedSizeCodec, type FixedSizeDecoder, type FixedSizeEncoder } from '@solana/kit';
export declare enum RebalanceType {
Manual = 0,
PricePercentage = 1,
PricePercentageWithReset = 2,
Drift = 3,
TakeProfit = 4,
PeriodicRebalance = 5,
Expander = 6,
Autodrift = 7
}
export type RebalanceTypeArgs = RebalanceType;
export declare function getRebalanceTypeEncoder(): FixedSizeEncoder<RebalanceTypeArgs>;
export declare function getRebalanceTypeDecoder(): FixedSizeDecoder<RebalanceType>;
export declare function getRebalanceTypeCodec(): FixedSizeCodec<RebalanceTypeArgs, RebalanceType>;
//# sourceMappingURL=rebalanceType.d.ts.map