wasabi-solana-ts 1.2.4 → 1.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cache/index.d.ts +2 -0
- package/dist/cache/index.js +18 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./TokenMintCache"), exports);
|
|
18
|
+
__exportStar(require("./BaseAccountCache"), exports);
|
package/dist/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export * from './bundle-builder/index.js';
|
|
|
11
11
|
export * from './market-deployer/index.js';
|
|
12
12
|
import { WasabiSolana } from './idl/wasabi_solana.js';
|
|
13
13
|
import * as idl from './idl/wasabi_solana.json';
|
|
14
|
+
export * from './cache/index.js';
|
|
14
15
|
export { idl };
|
|
15
16
|
import { Program } from '@coral-xyz/anchor';
|
|
16
17
|
import { OpenPositionCleanupAccounts, OpenPositionSetupAccounts, OpenPositionSetupArgs } from './instructions/openPosition.js';
|
package/dist/index.js
CHANGED
|
@@ -40,6 +40,7 @@ __exportStar(require("./bundle-builder/index.js"), exports);
|
|
|
40
40
|
__exportStar(require("./market-deployer/index.js"), exports);
|
|
41
41
|
const idl = __importStar(require("./idl/wasabi_solana.json"));
|
|
42
42
|
exports.idl = idl;
|
|
43
|
+
__exportStar(require("./cache/index.js"), exports);
|
|
43
44
|
const closeLongPosition_js_1 = require("./instructions/closeLongPosition.js");
|
|
44
45
|
const openLongPosition_js_1 = require("./instructions/openLongPosition.js");
|
|
45
46
|
const openShortPosition_js_1 = require("./instructions/openShortPosition.js");
|