@kamino-finance/klend-sdk
Version:
Typescript SDK for interacting with the Kamino Lending (klend) protocol
18 lines • 797 B
TypeScript
import { PublicKey, TransactionInstruction, Connection } from '@solana/web3.js';
import { KaminoMarket } from '../classes';
export declare const getInitAllReferrerTokenStateIxs: ({ referrer, kaminoMarket, payer, }: {
referrer: PublicKey;
kaminoMarket: KaminoMarket;
payer?: PublicKey;
}) => Promise<TransactionInstruction[]>;
export declare const getInitReferrerStateAndShortUrlIxs: ({ referrer, shortUrl, programId, }: {
referrer: PublicKey;
shortUrl: string;
programId: PublicKey;
}) => TransactionInstruction;
export declare const getDeleteReferrerStateAndShortUrlIxs: ({ referrer, connection, programId, }: {
referrer: PublicKey;
connection: Connection;
programId: PublicKey;
}) => Promise<TransactionInstruction>;
//# sourceMappingURL=instructions.d.ts.map