Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
ikprk committed Jun 14, 2024
1 parent 4282269 commit 81f2de7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion db/migrations/1709641962433-Views.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ module.exports = class Views1709641962433 {
}
}

const BLOCKS_PER_DAY = 10 * 60 * 24 // 10 blocs per minute, 60 mins * 24 hours
const ammVolumeCte = `
WITH trading_volumes AS (
SELECT ac.token_id,
Expand Down Expand Up @@ -54,7 +55,7 @@ ldt_oldest_transactions AS (
) oldest ON ldt.token_id = oldest.token_id AND ldt.created_in = oldest.oldest_created_in
)
`
const currentAmmVolumeWithoutCurrentWeek = `
const currentAmmVolumeWithoutCurrentWeek = `
SELECT
amm_id,
SUM(CASE
Expand Down
1 change: 0 additions & 1 deletion src/server-extension/resolvers/CreatorToken/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import {
CreatorToken as TokenReturnType,
MarketplaceTokensReturnType,
TopSellingTokensReturnType,
TopSellingTokensArgs,
} from './types'
import { getResolveTree } from '@subsquid/openreader/lib/util/resolve-tree'
import { parseAnyTree, parseSqlArguments } from '@subsquid/openreader/lib/opencrud/tree'
Expand Down

0 comments on commit 81f2de7

Please sign in to comment.