@kamino-finance/klend-sdk
Version:
Typescript SDK for interacting with the Kamino Lending (klend) protocol
15 lines • 613 B
TypeScript
import { TransactionInstruction, PublicKey } from "@solana/web3.js";
export interface InitReferrerTokenStateArgs {
referrer: PublicKey;
}
export interface InitReferrerTokenStateAccounts {
payer: PublicKey;
lendingMarket: PublicKey;
reserve: PublicKey;
referrerTokenState: PublicKey;
rent: PublicKey;
systemProgram: PublicKey;
}
export declare const layout: any;
export declare function initReferrerTokenState(args: InitReferrerTokenStateArgs, accounts: InitReferrerTokenStateAccounts, programId?: PublicKey): TransactionInstruction;
//# sourceMappingURL=initReferrerTokenState.d.ts.map