From 16a7f68705cf78d162ad25e99095ee4d45d92651 Mon Sep 17 00:00:00 2001 From: Chris Steege Date: Thu, 27 Jul 2023 14:11:03 -0500 Subject: [PATCH] Blacklist the X token --- deployment/deployment.json | 2 +- .../config/deployments/uniswap-v3-ethereum/configurations.ts | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/deployment/deployment.json b/deployment/deployment.json index f358c7c7dc..97747dee73 100644 --- a/deployment/deployment.json +++ b/deployment/deployment.json @@ -3732,7 +3732,7 @@ "status": "prod", "versions": { "schema": "4.0.0", - "subgraph": "1.5.0", + "subgraph": "1.6.0", "methodology": "1.0.0" }, "files": { diff --git a/subgraphs/uniswap-v3-forks/protocols/uniswap-v3/config/deployments/uniswap-v3-ethereum/configurations.ts b/subgraphs/uniswap-v3-forks/protocols/uniswap-v3/config/deployments/uniswap-v3-ethereum/configurations.ts index bf46c64819..5bece54a19 100644 --- a/subgraphs/uniswap-v3-forks/protocols/uniswap-v3/config/deployments/uniswap-v3-ethereum/configurations.ts +++ b/subgraphs/uniswap-v3-forks/protocols/uniswap-v3/config/deployments/uniswap-v3-ethereum/configurations.ts @@ -97,7 +97,9 @@ export class UniswapV3MainnetConfigurations implements Configurations { return stringToBytesList([]); } getUntrackedTokens(): Bytes[] { - return stringToBytesList([]); + return stringToBytesList([ + "0x0df66b8644771fae9400d93e74a509a3546cd13e", // X token + ]); } getMinimumLiquidityThreshold(): BigDecimal { return BigDecimal.fromString("200000");