@dcl/content-validator 2.0.1-20220610150252.commit-a7fb7c3 → 2.0.1-20220610154219.commit-81cc697

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.
@@ -148,7 +148,7 @@ exports.createTheGraphClient = createTheGraphClient;
148
148
  const QUERY_BLOCKS_FOR_TIMESTAMP = `
149
149
  query getBlockForTimestampRange($timestamp: Int!, $timestamp5Min: Int!) {
150
150
  min: blocks(
151
- where: {timestamp_gte: $timestamp5Min, timestamp_lte: $timestampMax}
151
+ where: {timestamp_gte: $timestamp5Min, timestamp_lte: $timestamp}
152
152
  first: 1
153
153
  orderBy: timestamp
154
154
  orderDirection: desc
@@ -156,7 +156,7 @@ query getBlockForTimestampRange($timestamp: Int!, $timestamp5Min: Int!) {
156
156
  number
157
157
  }
158
158
  max: blocks(
159
- where: {timestamp_gte: $timestamp5Min, timestamp_lte: $timestampMax}
159
+ where: {timestamp_gte: $timestamp5Min, timestamp_lte: $timestamp}
160
160
  first: 1
161
161
  orderBy: timestamp
162
162
  orderDirection: asc
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcl/content-validator",
3
- "version": "2.0.1-20220610150252.commit-a7fb7c3",
3
+ "version": "2.0.1-20220610154219.commit-81cc697",
4
4
  "description": "Catalyst content validations",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -59,5 +59,5 @@
59
59
  "files": [
60
60
  "dist"
61
61
  ],
62
- "commit": "a7fb7c38fc88643b9c084f7907c05ba5ace06ddd"
62
+ "commit": "81cc697d3dc4370196f6a912ff38dc12e34e0444"
63
63
  }