UNPKG

@kamino-finance/klend-sdk

Version:

Typescript SDK for interacting with the Kamino Lending (klend) protocol

15 lines 586 B
import { TransactionInstruction, PublicKey } from "@solana/web3.js"; export interface InitUserMetadataArgs { userLookupTable: PublicKey; } export interface InitUserMetadataAccounts { owner: PublicKey; feePayer: PublicKey; userMetadata: PublicKey; referrerUserMetadata: PublicKey; rent: PublicKey; systemProgram: PublicKey; } export declare const layout: any; export declare function initUserMetadata(args: InitUserMetadataArgs, accounts: InitUserMetadataAccounts, programId?: PublicKey): TransactionInstruction; //# sourceMappingURL=initUserMetadata.d.ts.map