@kamino-finance/farms-sdk
Version:
11 lines • 469 B
TypeScript
import { TransactionInstruction, PublicKey } from "@solana/web3.js";
export interface TransferOwnershipArgs {
newOwner: PublicKey;
}
export interface TransferOwnershipAccounts {
owner: PublicKey;
userState: PublicKey;
}
export declare const layout: any;
export declare function transferOwnership(args: TransferOwnershipArgs, accounts: TransferOwnershipAccounts, programId?: PublicKey): TransactionInstruction;
//# sourceMappingURL=transferOwnership.d.ts.map