UNPKG

kamino-sdk-beta

Version:

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

13 lines 517 B
import { TransactionInstruction, PublicKey } from "@solana/web3.js"; import BN from "bn.js"; export interface WithdrawFromTopupArgs { amount: BN; } export interface WithdrawFromTopupAccounts { adminAuthority: PublicKey; topupVault: PublicKey; system: PublicKey; } export declare const layout: any; export declare function withdrawFromTopup(args: WithdrawFromTopupArgs, accounts: WithdrawFromTopupAccounts, programId?: PublicKey): TransactionInstruction; //# sourceMappingURL=withdrawFromTopup.d.ts.map