Skip to content

Commit 9de9ff6

Browse files
authored
fix: filter out v3 pool with rebase token breaking routing (#1109)
* fix: filter out v3 pool with rebase token breaking routing * attach ticket
1 parent 3ae8747 commit 9de9ff6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/cron/cache-pools.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,9 @@ const handler: ScheduledHandler = metricScope((metrics) => async (event: EventBr
213213
const shouldFilterOut =
214214
// filter out AMPL-token pools from v3 subgraph, since they are not supported on v3
215215
pool.token0.id.toLowerCase() === '0xd46ba6d942050d489dbd938a2c909a5d5039a161' ||
216-
pool.token1.id.toLowerCase() === '0xd46ba6d942050d489dbd938a2c909a5d5039a161'
216+
pool.token1.id.toLowerCase() === '0xd46ba6d942050d489dbd938a2c909a5d5039a161' ||
217+
// https://linear.app/uniswap/issue/CX-1005
218+
pool.id.toLowerCase() === '0x0f681f10ab1aa1cde04232a199fe3c6f2652a80c'
217219

218220
if (shouldFilterOut) {
219221
log.info(`Filtering out pool ${pool.id} from ${protocol} on ${chainId}`)

0 commit comments

Comments
 (0)