@dhedge/backend-flatcoin-core 0.2.55 → 0.2.57

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.
@@ -539,7 +539,7 @@ exports.getClosedPositionsQueryByCloseBlockFrom = (0, graphql_request_1.gql) `
539
539
  `;
540
540
  exports.getUnitHoldersQueryPaginated = (0, graphql_request_1.gql) `
541
541
  query GetUnitHolders($skip: Int, $first: Int) {
542
- unitHolders(where: { skip: $skip, first: $first }) {
542
+ unitHolders(skip: $skip, first: $first) {
543
543
  address
544
544
  unitAmount
545
545
  }
@@ -75,7 +75,7 @@ export interface Position {
75
75
  accruedFunding: number;
76
76
  }
77
77
  export interface UnitHolder {
78
- account: string;
78
+ address: string;
79
79
  unitAmount: number;
80
80
  }
81
81
  export interface DepositEventsData {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dhedge/backend-flatcoin-core",
3
- "version": "0.2.55",
3
+ "version": "0.2.57",
4
4
  "description": "Backend Flatcoin Core",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",