UNPKG

@kamino-finance/kliquidity-sdk

Version:

Typescript SDK for interacting with the Kamino Liquidity (kliquidity) protocol

23 lines 1.15 kB
/** * 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 Codec, type Decoder, type Encoder } from '@solana/kit'; import { type RebalanceAutodriftStep, type RebalanceAutodriftStepArgs, type RebalanceAutodriftWindow, type RebalanceAutodriftWindowArgs } from '.'; export type RebalanceAutodriftState = { lastWindow: RebalanceAutodriftWindow; currentWindow: RebalanceAutodriftWindow; step: RebalanceAutodriftStep; }; export type RebalanceAutodriftStateArgs = { lastWindow: RebalanceAutodriftWindowArgs; currentWindow: RebalanceAutodriftWindowArgs; step: RebalanceAutodriftStepArgs; }; export declare function getRebalanceAutodriftStateEncoder(): Encoder<RebalanceAutodriftStateArgs>; export declare function getRebalanceAutodriftStateDecoder(): Decoder<RebalanceAutodriftState>; export declare function getRebalanceAutodriftStateCodec(): Codec<RebalanceAutodriftStateArgs, RebalanceAutodriftState>; //# sourceMappingURL=rebalanceAutodriftState.d.ts.map