@kamino-finance/farms-sdk
Version:
13 lines • 707 B
TypeScript
import { Address, IAccountMeta, IAccountSignerMeta, IInstruction, Option, TransactionSigner } from "@solana/kit";
export interface TransferOwnershipAccounts {
oldOwner: TransactionSigner;
newOwner: Address;
oldUserState: Address;
newUserState: Address;
farmState: Address;
scopePrices: Option<Address>;
systemProgram: Address;
rent: Address;
}
export declare function transferOwnership(accounts: TransferOwnershipAccounts, remainingAccounts?: Array<IAccountMeta | IAccountSignerMeta>, programAddress?: Address): IInstruction<string, readonly (import("@solana/kit").IAccountLookupMeta<string, string> | IAccountMeta<string>)[]>;
//# sourceMappingURL=transferOwnership.d.ts.map