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 {