@kamino-finance/scope-sdk
Version:
Scope Oracle SDK
102 lines • 3.98 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;
};
})();
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.OracleParams = void 0;
const kit_1 = require("@solana/kit"); // 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 types = __importStar(require("../types")); // eslint-disable-line @typescript-eslint/no-unused-vars
const borsh = __importStar(require("@coral-xyz/borsh"));
const utils_1 = require("../utils");
class OracleParams {
oracleAccount;
oracleType;
maxPriceError;
maxPriceAgeSec;
constructor(fields) {
this.oracleAccount = fields.oracleAccount;
this.oracleType = fields.oracleType;
this.maxPriceError = fields.maxPriceError;
this.maxPriceAgeSec = fields.maxPriceAgeSec;
}
static layout(property) {
return borsh.struct([
(0, utils_1.borshAddress)("oracleAccount"),
types.OracleType.layout("oracleType"),
borsh.u64("maxPriceError"),
borsh.u32("maxPriceAgeSec"),
], property);
}
// eslint-disable-next-line @typescript-eslint/no-explicit-any
static fromDecoded(obj) {
return new OracleParams({
oracleAccount: obj.oracleAccount,
oracleType: types.OracleType.fromDecoded(obj.oracleType),
maxPriceError: obj.maxPriceError,
maxPriceAgeSec: obj.maxPriceAgeSec,
});
}
static toEncodable(fields) {
return {
oracleAccount: fields.oracleAccount,
oracleType: fields.oracleType.toEncodable(),
maxPriceError: fields.maxPriceError,
maxPriceAgeSec: fields.maxPriceAgeSec,
};
}
toJSON() {
return {
oracleAccount: this.oracleAccount,
oracleType: this.oracleType.toJSON(),
maxPriceError: this.maxPriceError.toString(),
maxPriceAgeSec: this.maxPriceAgeSec,
};
}
static fromJSON(obj) {
return new OracleParams({
oracleAccount: (0, kit_1.address)(obj.oracleAccount),
oracleType: types.OracleType.fromJSON(obj.oracleType),
maxPriceError: new bn_js_1.default(obj.maxPriceError),
maxPriceAgeSec: obj.maxPriceAgeSec,
});
}
toEncodable() {
return OracleParams.toEncodable(this);
}
}
exports.OracleParams = OracleParams;
//# sourceMappingURL=OracleParams.js.map
;