@kamino-finance/klend-sdk
Version:
Typescript SDK for interacting with the Kamino Lending (klend) protocol
94 lines (89 loc) • 3.25 kB
text/typescript
import { TransactionInstruction, PublicKey, AccountMeta } from "@solana/web3.js" // eslint-disable-line @typescript-eslint/no-unused-vars
import BN from "bn.js" // eslint-disable-line @typescript-eslint/no-unused-vars
import * as borsh from "@coral-xyz/borsh" // eslint-disable-line @typescript-eslint/no-unused-vars
import * as types from "../types" // eslint-disable-line @typescript-eslint/no-unused-vars
import { PROGRAM_ID } from "../programId"
export interface WithdrawArgs {
sharesAmount: BN
}
export interface WithdrawAccounts {
user: PublicKey
vaultState: PublicKey
reserve: PublicKey
tokenVault: PublicKey
ctokenVault: PublicKey
baseVaultAuthority: PublicKey
tokenAta: PublicKey
tokenMint: PublicKey
userSharesAta: PublicKey
sharesMint: PublicKey
tokenProgram: PublicKey
/** CPI accounts */
lendingMarket: PublicKey
lendingMarketAuthority: PublicKey
reserveLiquiditySupply: PublicKey
reserveCollateralMint: PublicKey
klendProgram: PublicKey
instructionSysvarAccount: PublicKey
reserveCollateralTokenProgram: PublicKey
sharesTokenProgram: PublicKey
}
export const layout = borsh.struct([borsh.u64("sharesAmount")])
export function withdraw(
args: WithdrawArgs,
accounts: WithdrawAccounts,
programId: PublicKey = PROGRAM_ID
) {
const keys: Array<AccountMeta> = [
{ pubkey: accounts.user, isSigner: true, isWritable: true },
{ pubkey: accounts.vaultState, isSigner: false, isWritable: true },
{ pubkey: accounts.reserve, isSigner: false, isWritable: true },
{ pubkey: accounts.tokenVault, isSigner: false, isWritable: true },
{ pubkey: accounts.ctokenVault, isSigner: false, isWritable: true },
{ pubkey: accounts.baseVaultAuthority, isSigner: false, isWritable: true },
{ pubkey: accounts.tokenAta, isSigner: false, isWritable: true },
{ pubkey: accounts.tokenMint, isSigner: false, isWritable: true },
{ pubkey: accounts.userSharesAta, isSigner: false, isWritable: true },
{ pubkey: accounts.sharesMint, isSigner: false, isWritable: true },
{ pubkey: accounts.tokenProgram, isSigner: false, isWritable: false },
{ pubkey: accounts.lendingMarket, isSigner: false, isWritable: false },
{
pubkey: accounts.lendingMarketAuthority,
isSigner: false,
isWritable: false,
},
{
pubkey: accounts.reserveLiquiditySupply,
isSigner: false,
isWritable: true,
},
{
pubkey: accounts.reserveCollateralMint,
isSigner: false,
isWritable: true,
},
{ pubkey: accounts.klendProgram, isSigner: false, isWritable: false },
{
pubkey: accounts.instructionSysvarAccount,
isSigner: false,
isWritable: false,
},
{
pubkey: accounts.reserveCollateralTokenProgram,
isSigner: false,
isWritable: false,
},
{ pubkey: accounts.sharesTokenProgram, isSigner: false, isWritable: false },
]
const identifier = Buffer.from([183, 18, 70, 156, 148, 109, 161, 34])
const buffer = Buffer.alloc(1000)
const len = layout.encode(
{
sharesAmount: args.sharesAmount,
},
buffer
)
const data = Buffer.concat([identifier, buffer]).slice(0, 8 + len)
const ix = new TransactionInstruction({ keys, programId, data })
return ix
}