@kamino-finance/klend-sdk
Version:
Typescript SDK for interacting with the Kamino Lending (klend) protocol
116 lines • 4.47 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 () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.GlobalConfig = 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 GlobalConfig {
/** Global admin of the program */
globalAdmin;
/** Pending admin must sign a specific transaction to become the global admin */
pendingAdmin;
/** Fee collector is the only allowed owner of token accounts receiving protocol fees */
feeCollector;
/** Padding to make the struct size 1024 bytes */
padding;
static discriminator = Buffer.from([
149, 8, 156, 202, 160, 252, 176, 217,
]);
static layout = borsh.struct([
borsh.publicKey("globalAdmin"),
borsh.publicKey("pendingAdmin"),
borsh.publicKey("feeCollector"),
borsh.array(borsh.u8(), 928, "padding"),
]);
constructor(fields) {
this.globalAdmin = fields.globalAdmin;
this.pendingAdmin = fields.pendingAdmin;
this.feeCollector = fields.feeCollector;
this.padding = fields.padding;
}
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(GlobalConfig.discriminator)) {
throw new Error("invalid account discriminator");
}
const dec = GlobalConfig.layout.decode(data.slice(8));
return new GlobalConfig({
globalAdmin: dec.globalAdmin,
pendingAdmin: dec.pendingAdmin,
feeCollector: dec.feeCollector,
padding: dec.padding,
});
}
toJSON() {
return {
globalAdmin: this.globalAdmin.toString(),
pendingAdmin: this.pendingAdmin.toString(),
feeCollector: this.feeCollector.toString(),
padding: this.padding,
};
}
static fromJSON(obj) {
return new GlobalConfig({
globalAdmin: new web3_js_1.PublicKey(obj.globalAdmin),
pendingAdmin: new web3_js_1.PublicKey(obj.pendingAdmin),
feeCollector: new web3_js_1.PublicKey(obj.feeCollector),
padding: obj.padding,
});
}
}
exports.GlobalConfig = GlobalConfig;
//# sourceMappingURL=GlobalConfig.js.map
;