UNPKG

@kamino-finance/klend-sdk

Version:

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

126 lines 5.05 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.ElevationGroup = void 0; const web3_js_1 = require("@solana/web3.js"); // eslint-disable-line @typescript-eslint/no-unused-vars const bn_js_1 = __importDefault(require("bn.js")); // eslint-disable-line @typescript-eslint/no-unused-vars const borsh = __importStar(require("@coral-xyz/borsh")); class ElevationGroup { maxLiquidationBonusBps; id; ltvPct; liquidationThresholdPct; allowNewLoans; maxReservesAsCollateral; padding0; /** Mandatory debt reserve for this elevation group */ debtReserve; padding1; constructor(fields) { this.maxLiquidationBonusBps = fields.maxLiquidationBonusBps; this.id = fields.id; this.ltvPct = fields.ltvPct; this.liquidationThresholdPct = fields.liquidationThresholdPct; this.allowNewLoans = fields.allowNewLoans; this.maxReservesAsCollateral = fields.maxReservesAsCollateral; this.padding0 = fields.padding0; this.debtReserve = fields.debtReserve; this.padding1 = fields.padding1; } static layout(property) { return borsh.struct([ borsh.u16("maxLiquidationBonusBps"), borsh.u8("id"), borsh.u8("ltvPct"), borsh.u8("liquidationThresholdPct"), borsh.u8("allowNewLoans"), borsh.u8("maxReservesAsCollateral"), borsh.u8("padding0"), borsh.publicKey("debtReserve"), borsh.array(borsh.u64(), 4, "padding1"), ], property); } // eslint-disable-next-line @typescript-eslint/no-explicit-any static fromDecoded(obj) { return new ElevationGroup({ maxLiquidationBonusBps: obj.maxLiquidationBonusBps, id: obj.id, ltvPct: obj.ltvPct, liquidationThresholdPct: obj.liquidationThresholdPct, allowNewLoans: obj.allowNewLoans, maxReservesAsCollateral: obj.maxReservesAsCollateral, padding0: obj.padding0, debtReserve: obj.debtReserve, padding1: obj.padding1, }); } static toEncodable(fields) { return { maxLiquidationBonusBps: fields.maxLiquidationBonusBps, id: fields.id, ltvPct: fields.ltvPct, liquidationThresholdPct: fields.liquidationThresholdPct, allowNewLoans: fields.allowNewLoans, maxReservesAsCollateral: fields.maxReservesAsCollateral, padding0: fields.padding0, debtReserve: fields.debtReserve, padding1: fields.padding1, }; } toJSON() { return { maxLiquidationBonusBps: this.maxLiquidationBonusBps, id: this.id, ltvPct: this.ltvPct, liquidationThresholdPct: this.liquidationThresholdPct, allowNewLoans: this.allowNewLoans, maxReservesAsCollateral: this.maxReservesAsCollateral, padding0: this.padding0, debtReserve: this.debtReserve.toString(), padding1: this.padding1.map((item) => item.toString()), }; } static fromJSON(obj) { return new ElevationGroup({ maxLiquidationBonusBps: obj.maxLiquidationBonusBps, id: obj.id, ltvPct: obj.ltvPct, liquidationThresholdPct: obj.liquidationThresholdPct, allowNewLoans: obj.allowNewLoans, maxReservesAsCollateral: obj.maxReservesAsCollateral, padding0: obj.padding0, debtReserve: new web3_js_1.PublicKey(obj.debtReserve), padding1: obj.padding1.map((item) => new bn_js_1.default(item)), }); } toEncodable() { return ElevationGroup.toEncodable(this); } } exports.ElevationGroup = ElevationGroup; //# sourceMappingURL=ElevationGroup.js.map