@dhedge/backend-flatcoin-core 0.1.35 → 0.1.37

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.
@@ -183,6 +183,11 @@ exports.LimitOrder = [
183
183
  },
184
184
  {
185
185
  inputs: [
186
+ {
187
+ internalType: 'address',
188
+ name: 'account',
189
+ type: 'address',
190
+ },
186
191
  {
187
192
  internalType: 'uint256',
188
193
  name: 'tokenId',
@@ -204,11 +209,21 @@ exports.LimitOrder = [
204
209
  },
205
210
  {
206
211
  inputs: [
212
+ {
213
+ internalType: 'address',
214
+ name: 'account',
215
+ type: 'address',
216
+ },
207
217
  {
208
218
  internalType: 'uint256',
209
219
  name: 'tokenId',
210
220
  type: 'uint256',
211
221
  },
222
+ {
223
+ internalType: 'uint256',
224
+ name: 'keeperFee',
225
+ type: 'uint256',
226
+ },
212
227
  {
213
228
  internalType: 'uint256',
214
229
  name: 'price',
@@ -1,12 +1,13 @@
1
1
  export * from './apy';
2
+ export * from './apy-history';
3
+ export * from './competitionBoardAccount';
2
4
  export * from './flatcoin.price.one.day';
3
5
  export * from './flatcoin.price.one.month';
4
6
  export * from './flatcoin.price.one.week';
5
7
  export * from './flatcoin.price.one.year';
6
8
  export * from './flatcoin.price.parent';
7
9
  export * from './flatcoin.price';
8
- export * from './apy-history';
9
10
  export * from './flatcoin-pnl';
10
11
  export * from './period-performance';
11
- export * from './flatcoin-pnl';
12
- export * from './competitionBoardAccount';
12
+ export * from './limit-order.entity';
13
+ export * from './position-entity';
@@ -15,14 +15,15 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./apy"), exports);
18
+ __exportStar(require("./apy-history"), exports);
19
+ __exportStar(require("./competitionBoardAccount"), exports);
18
20
  __exportStar(require("./flatcoin.price.one.day"), exports);
19
21
  __exportStar(require("./flatcoin.price.one.month"), exports);
20
22
  __exportStar(require("./flatcoin.price.one.week"), exports);
21
23
  __exportStar(require("./flatcoin.price.one.year"), exports);
22
24
  __exportStar(require("./flatcoin.price.parent"), exports);
23
25
  __exportStar(require("./flatcoin.price"), exports);
24
- __exportStar(require("./apy-history"), exports);
25
26
  __exportStar(require("./flatcoin-pnl"), exports);
26
27
  __exportStar(require("./period-performance"), exports);
27
- __exportStar(require("./flatcoin-pnl"), exports);
28
- __exportStar(require("./competitionBoardAccount"), exports);
28
+ __exportStar(require("./limit-order.entity"), exports);
29
+ __exportStar(require("./position-entity"), exports);
@@ -1,4 +1,6 @@
1
1
  export * from './apy-history.repository';
2
2
  export * from './apy.repository';
3
- export * from './price.repository';
4
3
  export * from './flatcoin-pnl.repository';
4
+ export * from './limit-order.repository';
5
+ export * from './position.repository';
6
+ export * from './price.repository';
@@ -16,5 +16,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./apy-history.repository"), exports);
18
18
  __exportStar(require("./apy.repository"), exports);
19
- __exportStar(require("./price.repository"), exports);
20
19
  __exportStar(require("./flatcoin-pnl.repository"), exports);
20
+ __exportStar(require("./limit-order.repository"), exports);
21
+ __exportStar(require("./position.repository"), exports);
22
+ __exportStar(require("./price.repository"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dhedge/backend-flatcoin-core",
3
- "version": "0.1.35",
3
+ "version": "0.1.37",
4
4
  "description": "Backend Flatcoin Core",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",