@marinade.finance/kamino-sdk
Version:
10 lines (9 loc) • 370 B
TypeScript
import { TransactionInstruction, PublicKey } from "@solana/web3.js";
export interface CloseProgramAccountAccounts {
adminAuthority: PublicKey;
program: PublicKey;
programData: PublicKey;
closingAccount: PublicKey;
systemProgram: PublicKey;
}
export declare function closeProgramAccount(accounts: CloseProgramAccountAccounts): TransactionInstruction;