@kamino-finance/farms-sdk
Version:
13 lines • 675 B
TypeScript
import { Address, IAccountMeta, IAccountSignerMeta, IInstruction, TransactionSigner } from "@solana/kit";
export interface InitializeUserAccounts {
authority: TransactionSigner;
payer: TransactionSigner;
owner: Address;
delegatee: Address;
userState: Address;
farmState: Address;
systemProgram: Address;
rent: Address;
}
export declare function initializeUser(accounts: InitializeUserAccounts, remainingAccounts?: Array<IAccountMeta | IAccountSignerMeta>, programAddress?: Address): IInstruction<string, readonly (import("@solana/kit").IAccountLookupMeta<string, string> | IAccountMeta<string>)[]>;
//# sourceMappingURL=initializeUser.d.ts.map