From 7b7a715a86ac2457d05df07e91c830b194f93250 Mon Sep 17 00:00:00 2001 From: Michael Zhang Date: Wed, 16 Jul 2025 16:22:27 -0400 Subject: [PATCH 1/3] add USD1 to whitelist --- config/ethereum/chain.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/config/ethereum/chain.ts b/config/ethereum/chain.ts index a1362ee9..ab315a88 100644 --- a/config/ethereum/chain.ts +++ b/config/ethereum/chain.ts @@ -32,6 +32,7 @@ export const WHITELIST: string[] = [ '0x1f9840a85d5af5bf1d1762f925bdaddc4201f984', // UNI '0x2260fac5e5542a773aa44fbcfedf7c193bc2c599', // WBTC '0x956f47f50a910163d8bf957cf5846d573e7f87ca', // FEI + '0x8d0d000ee44948fc98c9b98a4fa4921476f08b0d', // USD1 ] export const STABLECOINS = [] From 026cebdd177d7a0597ebd35900becad78c24858d Mon Sep 17 00:00:00 2001 From: Michael Zhang Date: Wed, 16 Jul 2025 16:54:41 -0400 Subject: [PATCH 2/3] pin graph cli --- config/ethereum/chain.ts | 2 +- package.json | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/config/ethereum/chain.ts b/config/ethereum/chain.ts index ab315a88..eb9a97ae 100644 --- a/config/ethereum/chain.ts +++ b/config/ethereum/chain.ts @@ -35,7 +35,7 @@ export const WHITELIST: string[] = [ '0x8d0d000ee44948fc98c9b98a4fa4921476f08b0d', // USD1 ] -export const STABLECOINS = [] +export const STABLECOINS: string[] = [] // minimum liquidity required to count towards tracked volume for pairs with small # of Lps export const MINIMUM_USD_THRESHOLD_NEW_PAIRS = BigDecimal.fromString('400000') diff --git a/package.json b/package.json index efd85bf6..b4957516 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "build": "cross-env ts-node ./script/build" }, "devDependencies": { - "@graphprotocol/graph-cli": "^0.64.1", + "@graphprotocol/graph-cli": "0.64.1", "@graphprotocol/graph-ts": "^0.32.0", "@types/fs-extra": "^11.0.1", "@types/node": "^18.11.18", @@ -18,7 +18,6 @@ "cross-env": "^7.0.3", "dotenv": "^16.0.3", "eslint-config-prettier": "^6.1.0", - "eslint": "^8.57.0", "fs-extra": "^11.1.0", "mustache": "^3.1.0", "prettier": "^1.18.2", From 8ca2b275aa3fa0fb5d3a41aefdb5cd2313c0a490 Mon Sep 17 00:00:00 2001 From: Michael Zhang Date: Wed, 16 Jul 2025 16:55:22 -0400 Subject: [PATCH 3/3] fix package.json --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index b4957516..d1b7003f 100644 --- a/package.json +++ b/package.json @@ -17,6 +17,7 @@ "@uniswap/eslint-config": "^1.2.0", "cross-env": "^7.0.3", "dotenv": "^16.0.3", + "eslint": "^8.57.0", "eslint-config-prettier": "^6.1.0", "fs-extra": "^11.1.0", "mustache": "^3.1.0",