UNPKG

@kamino-finance/kliquidity-sdk

Version:

Typescript SDK for interacting with the Kamino Liquidity (kliquidity) protocol

108 lines 3 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 () { 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.Right = exports.Left = void 0; exports.fromDecoded = fromDecoded; exports.fromJSON = fromJSON; exports.layout = layout; const borsh = __importStar(require("@coral-xyz/borsh")); class Left { static discriminator = 0; static kind = "Left"; discriminator = 0; kind = "Left"; toJSON() { return { kind: "Left", }; } toEncodable() { return { Left: {}, }; } } exports.Left = Left; class Right { static discriminator = 1; static kind = "Right"; discriminator = 1; kind = "Right"; toJSON() { return { kind: "Right", }; } toEncodable() { return { Right: {}, }; } } exports.Right = Right; // eslint-disable-next-line @typescript-eslint/no-explicit-any function fromDecoded(obj) { if (typeof obj !== "object") { throw new Error("Invalid enum object"); } if ("Left" in obj) { return new Left(); } if ("Right" in obj) { return new Right(); } throw new Error("Invalid enum object"); } function fromJSON(obj) { switch (obj.kind) { case "Left": { return new Left(); } case "Right": { return new Right(); } } } function layout(property) { const ret = borsh.rustEnum([ borsh.struct([], "Left"), borsh.struct([], "Right"), ]); if (property !== undefined) { return ret.replicate(property); } return ret; } //# sourceMappingURL=Direction.js.map