@umbra-labs-llc/lendr-client
v1.2.0
Published
> This example uses @solana/web3.js version 1.91.8
Downloads
381
Readme
lendr-client: A TypeScript SDK
Getting Started
Step 1: Initialize the lendr client
This example uses @solana/web3.js version 1.91.8
In order to interact with the lendr SDK, we must first configure the lendr client object using the LendrClient instance:
import { Connection } from "@solana/web3.js";
import { LendrClient, getConfig } from 'lendr-client';
import { NodeWallet } from "./src/common";
const connection = new Connection(CLUSTER_CONNECTION, "confirmed");
const wallet = new NodeWallet(KEYPAIR);
const config = getConfig();
const client = await LendrClient.fetch({ config, wallet, connection });connectionestablishes a connection to a Solana clusterwalletcreates an Anchor-compliant Node.js wallet from your local Solana keypairconfigreturns a configuration object specific to the specified environment (e.g. “production”, “development”)clientis a high-level SDK for interacting with the Lendr protocol
Step 2: Create an Account
Accounts on lendr are the entry point for interacting with the protocol, allowing users to deposit assets, take out loans, and manage their positions. Using the lendr SDK, you can create an account with one line of code. With this ability, you can enable seamless user onboarding by creating dedicated accounts for each new user.
const lendrAccount = await client.createLendrAccount();Step 3: Fetch a Bank
In order to interact with asset pools, or “banks,” on Lendr, you must first fetch the specific bank you want to borrow/lend from:
const bankLabel = "SOL";
const bank = client.getBankByTokenSymbol(bankLabel);
if (!bank) throw Error(`${bankLabel} bank not found`);bankLabelholds the symbol for the bank that you will fetch. Note that you can also query banks by the token mint address (usinggetBankByMint) or by the bank address (usinggetBankByPk).bank1fetches the specified bank usinggetBankByTokenSymbol, using the bank’s token symbol “SOL” as the query parameter.
Step 4: Make a Deposit
Once you’ve fetched the bank you want to interact with, you can make a deposit:
await lendrAccount.deposit(1, bank.address);The deposit method on the lendr account object allows you to make a deposit into the specified bank account using the bank's address as a parameter (second parameter). Note that the first parameter let’s you specify how much (in the denominated asset) you want to deposit into the bank.
Step 5: Borrow From a Bank
After lending liquidity on lendr, your account is eligible to act as a Borrower. You can borrow liquidity from lendr banks using one line of code:
await lendrAccount.borrow(1, bank.address);The structure of the borrow method is identical to the deposit method. You specify the amount you want to borrow using the first parameter, and you specify which bank you want to interact with using the second parameter.
if you followed along with these steps, you just went through the full lending-and-borrowing lifecycle on lendr. To execute your node, simply run ts-node <file-path> in your terminal. Your code should look like this:
import { Connection } from "@solana/web3.js";
import { LendrClient, getConfig } from 'lendr-client';
import { NodeWallet } from "./src/common";
const CLUSTER_CONNECTION = <your-rpc-url>;
const main = async () => {
const connection = new Connection(CLUSTER_CONNECTION, "confirmed");
const wallet = new NodeWallet(KEYPAIR);
const config = getConfig();
const client = await LendrClient.fetch({ config, wallet, connection }); // initialize client
const lendrAccount = await client.createLendrAccount(); // create an account
const bankLabel = "SOL";
const bank = client.getBankByTokenSymbol(bankLabel);
if (!bank) throw Error(`${bankLabel} bank not found`); // fetch a bank
await lendrAccount.deposit(1, bank.address); // make a deposit
await lendrAccount.borrow(1, bank.address); // borrow from a bank
};
main();You’re now have an active position! For more details on the lendr SDK and use cases, refer to the examples and sections below.
Overriding LendrClient's Config
You can override LendrClient's config either by passing an optional overrides object to getConfig():
import {PublicKey} from "@solana/web3.js";
const config = getConfig({
overrides: {
groupPk: new PublicKey("..."),
},
});
const client = await LendrClient.fetch({ config, wallet: {} as Wallet, connection });Or using these environment variables:
- LENDR_GROUP_PK
- LENDR_PROGRAM_ID
- LENDR_CLUSTER_OVERRIDE
