From 6d6ecb5f4eb341267c173303133526b37e6ddf80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Pr=C3=A9vost?= <998369+prevostc@users.noreply.github.com> Date: Mon, 23 Sep 2024 18:44:45 +0200 Subject: [PATCH] Remove hardcoded fix --- src/queries/InvestorTimeline.graphql | 4 ---- src/queries/VaultsHarvests.graphql | 2 -- src/queries/VaultsHarvestsFiltered.graphql | 2 -- 3 files changed, 8 deletions(-) diff --git a/src/queries/InvestorTimeline.graphql b/src/queries/InvestorTimeline.graphql index f3204eb..17ff880 100644 --- a/src/queries/InvestorTimeline.graphql +++ b/src/queries/InvestorTimeline.graphql @@ -161,8 +161,6 @@ query InvestorTimeline( where: { investor: $investor_address totalBalance_gt: 0 - # these vaults are not properly indexed and cause errors - classic_not_in: ["0xbbdeaaa32cbce61e0a2809edcae8d1857c55a5dd"] } ) { ...InvestorTimelineClassicPosition @@ -175,8 +173,6 @@ query InvestorTimeline( orderDirection: asc where: { investor: $investor_address - # these vaults are not properly indexed and cause errors - classic_not_in: ["0xbbdeaaa32cbce61e0a2809edcae8d1857c55a5dd"] type_in: [ VAULT_DEPOSIT VAULT_WITHDRAW diff --git a/src/queries/VaultsHarvests.graphql b/src/queries/VaultsHarvests.graphql index 78480de..76c8525 100644 --- a/src/queries/VaultsHarvests.graphql +++ b/src/queries/VaultsHarvests.graphql @@ -24,8 +24,6 @@ query VaultsHarvests($since: BigInt!, $first: Int = 1000, $skip: Int = 0) { skip: $skip where: { lifecycle_not: INITIALIZING - # these vaults are not properly indexed and cause errors - id_not_in: ["0xbbdeaaa32cbce61e0a2809edcae8d1857c55a5dd"] } ) { vaultAddress: id diff --git a/src/queries/VaultsHarvestsFiltered.graphql b/src/queries/VaultsHarvestsFiltered.graphql index 20163bf..4350676 100644 --- a/src/queries/VaultsHarvestsFiltered.graphql +++ b/src/queries/VaultsHarvestsFiltered.graphql @@ -27,8 +27,6 @@ query VaultsHarvestsFiltered( classics(first: $first, skip: $skip, where: { lifecycle_not: INITIALIZING, id_in: $vaults, - # these vaults are not properly indexed and cause errors - id_not_in: ["0xbbdeaaa32cbce61e0a2809edcae8d1857c55a5dd"] }) { vaultAddress: id underlyingToken {