@kamino-finance/klend-sdk
Version:
Typescript SDK for interacting with the Kamino Lending (klend) protocol
82 lines • 3.04 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.ScopeConfiguration = void 0;
const web3_js_1 = require("@solana/web3.js"); // eslint-disable-line @typescript-eslint/no-unused-vars
const borsh = __importStar(require("@coral-xyz/borsh"));
class ScopeConfiguration {
/** Pubkey of the scope price feed (disabled if `null` or `default`) */
priceFeed;
/** This is the scope_id price chain that results in a price for the token */
priceChain;
/** This is the scope_id price chain for the twap */
twapChain;
constructor(fields) {
this.priceFeed = fields.priceFeed;
this.priceChain = fields.priceChain;
this.twapChain = fields.twapChain;
}
static layout(property) {
return borsh.struct([
borsh.publicKey("priceFeed"),
borsh.array(borsh.u16(), 4, "priceChain"),
borsh.array(borsh.u16(), 4, "twapChain"),
], property);
}
// eslint-disable-next-line @typescript-eslint/no-explicit-any
static fromDecoded(obj) {
return new ScopeConfiguration({
priceFeed: obj.priceFeed,
priceChain: obj.priceChain,
twapChain: obj.twapChain,
});
}
static toEncodable(fields) {
return {
priceFeed: fields.priceFeed,
priceChain: fields.priceChain,
twapChain: fields.twapChain,
};
}
toJSON() {
return {
priceFeed: this.priceFeed.toString(),
priceChain: this.priceChain,
twapChain: this.twapChain,
};
}
static fromJSON(obj) {
return new ScopeConfiguration({
priceFeed: new web3_js_1.PublicKey(obj.priceFeed),
priceChain: obj.priceChain,
twapChain: obj.twapChain,
});
}
toEncodable() {
return ScopeConfiguration.toEncodable(this);
}
}
exports.ScopeConfiguration = ScopeConfiguration;
//# sourceMappingURL=ScopeConfiguration.js.map
;