@d8x/perpetuals-sdk 0.0.1 → 0.0.3

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.
@@ -1,14 +0,0 @@
1
- import WriteAccessHandler from "./writeAccessHandler";
2
- import { NodeSDKConfig } from "./nodeSDKTypes";
3
- /**
4
- * LiquidatorTool
5
- * Methods to liquidate traders
6
- */
7
- export default class LiquidatorTool extends WriteAccessHandler {
8
- /**
9
- * Constructor
10
- * @param config configuration
11
- * @param privateKey private key of account that trades
12
- */
13
- constructor(config: NodeSDKConfig, privateKey: string);
14
- }
@@ -1,21 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- const writeAccessHandler_1 = __importDefault(require("./writeAccessHandler"));
7
- /**
8
- * LiquidatorTool
9
- * Methods to liquidate traders
10
- */
11
- class LiquidatorTool extends writeAccessHandler_1.default {
12
- /**
13
- * Constructor
14
- * @param config configuration
15
- * @param privateKey private key of account that trades
16
- */
17
- constructor(config, privateKey) {
18
- super(config, privateKey);
19
- }
20
- }
21
- exports.default = LiquidatorTool;
@@ -1,21 +0,0 @@
1
- import WriteAccessHandler from "./writeAccessHandler";
2
- import { NodeSDKConfig } from "./nodeSDKTypes";
3
-
4
- /**
5
- * LiquidatorTool
6
- * Methods to liquidate traders
7
- */
8
- export default class LiquidatorTool extends WriteAccessHandler {
9
- /**
10
- * Constructor
11
- * @param config configuration
12
- * @param privateKey private key of account that trades
13
- */
14
- public constructor(config: NodeSDKConfig, privateKey: string) {
15
- super(config, privateKey);
16
- }
17
-
18
- /*
19
- TODO
20
- */
21
- }