@kamino-finance/kliquidity-sdk
Version:
Typescript SDK for interacting with the Kamino Liquidity (kliquidity) protocol
13 lines • 553 B
TypeScript
import { Address, IInstruction, TransactionSigner } from "@solana/kit";
import BN from "bn.js";
export interface WithdrawFromTopupArgs {
amount: BN;
}
export interface WithdrawFromTopupAccounts {
adminAuthority: TransactionSigner;
topupVault: Address;
system: Address;
}
export declare const layout: import("buffer-layout").Layout<unknown>;
export declare function withdrawFromTopup(args: WithdrawFromTopupArgs, accounts: WithdrawFromTopupAccounts, programAddress?: Address): IInstruction;
//# sourceMappingURL=withdrawFromTopup.d.ts.map