@kamino-finance/klend-sdk
Version:
Typescript SDK for interacting with the Kamino Lending (klend) protocol
90 lines • 3.24 kB
JavaScript
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;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.ShortUrl = void 0;
const web3_js_1 = require("@solana/web3.js");
const borsh = __importStar(require("@coral-xyz/borsh")); // eslint-disable-line @typescript-eslint/no-unused-vars
const programId_1 = require("../programId");
class ShortUrl {
referrer;
shortUrl;
static discriminator = Buffer.from([
28, 89, 174, 25, 226, 124, 126, 212,
]);
static layout = borsh.struct([
borsh.publicKey("referrer"),
borsh.str("shortUrl"),
]);
constructor(fields) {
this.referrer = fields.referrer;
this.shortUrl = fields.shortUrl;
}
static async fetch(c, address, programId = programId_1.PROGRAM_ID) {
const info = await c.getAccountInfo(address);
if (info === null) {
return null;
}
if (!info.owner.equals(programId)) {
throw new Error("account doesn't belong to this program");
}
return this.decode(info.data);
}
static async fetchMultiple(c, addresses, programId = programId_1.PROGRAM_ID) {
const infos = await c.getMultipleAccountsInfo(addresses);
return infos.map((info) => {
if (info === null) {
return null;
}
if (!info.owner.equals(programId)) {
throw new Error("account doesn't belong to this program");
}
return this.decode(info.data);
});
}
static decode(data) {
if (!data.slice(0, 8).equals(ShortUrl.discriminator)) {
throw new Error("invalid account discriminator");
}
const dec = ShortUrl.layout.decode(data.slice(8));
return new ShortUrl({
referrer: dec.referrer,
shortUrl: dec.shortUrl,
});
}
toJSON() {
return {
referrer: this.referrer.toString(),
shortUrl: this.shortUrl,
};
}
static fromJSON(obj) {
return new ShortUrl({
referrer: new web3_js_1.PublicKey(obj.referrer),
shortUrl: obj.shortUrl,
});
}
}
exports.ShortUrl = ShortUrl;
//# sourceMappingURL=ShortUrl.js.map
;