UNPKG

@kamino-finance/klend-sdk

Version:

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

14 lines (10 loc) 514 B
import { PublicKey } from "@solana/web3.js" // Program ID passed with the cli --program-id flag when running the code generator. Do not edit, it will get overwritten. export const PROGRAM_ID_CLI = new PublicKey( "KLend2g3cP87fffoy8q1mQqGKjrxjC8boSyAYavgmjD" ) // This constant will not get overwritten on subsequent code generations and it's safe to modify it's value. export let PROGRAM_ID: PublicKey = PROGRAM_ID_CLI export const setKLendProgramId = (programId: PublicKey) => { PROGRAM_ID = programId; };