@dhedge/backend-flatcoin-core 0.1.40 → 0.1.41
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,5 +1,6 @@
|
|
|
1
1
|
export { FlatcoinV1 } from './abi/flatcoin-v1';
|
|
2
2
|
export { Viewer } from './abi/viewer';
|
|
3
|
+
export { ViewerGetPositionData } from './abi/viewer-get-position-data';
|
|
3
4
|
export { FlatcoinErrors } from './abi/flatcoin-errors';
|
|
4
5
|
export { LeverageModule } from './abi/leverage-module';
|
|
5
6
|
export { LiquidationModule } from './abi/liquidation-module';
|
package/dist/contracts/index.js
CHANGED
|
@@ -14,11 +14,13 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.LimitOrder = exports.LiquidateWithoutPriceFeeds = exports.Liquidate = exports.LiquidationModule = exports.LeverageModule = exports.FlatcoinErrors = exports.Viewer = exports.FlatcoinV1 = void 0;
|
|
17
|
+
exports.LimitOrder = exports.LiquidateWithoutPriceFeeds = exports.Liquidate = exports.LiquidationModule = exports.LeverageModule = exports.FlatcoinErrors = exports.ViewerGetPositionData = exports.Viewer = exports.FlatcoinV1 = void 0;
|
|
18
18
|
var flatcoin_v1_1 = require("./abi/flatcoin-v1");
|
|
19
19
|
Object.defineProperty(exports, "FlatcoinV1", { enumerable: true, get: function () { return flatcoin_v1_1.FlatcoinV1; } });
|
|
20
20
|
var viewer_1 = require("./abi/viewer");
|
|
21
21
|
Object.defineProperty(exports, "Viewer", { enumerable: true, get: function () { return viewer_1.Viewer; } });
|
|
22
|
+
var viewer_get_position_data_1 = require("./abi/viewer-get-position-data");
|
|
23
|
+
Object.defineProperty(exports, "ViewerGetPositionData", { enumerable: true, get: function () { return viewer_get_position_data_1.ViewerGetPositionData; } });
|
|
22
24
|
var flatcoin_errors_1 = require("./abi/flatcoin-errors");
|
|
23
25
|
Object.defineProperty(exports, "FlatcoinErrors", { enumerable: true, get: function () { return flatcoin_errors_1.FlatcoinErrors; } });
|
|
24
26
|
var leverage_module_1 = require("./abi/leverage-module");
|