From 6cc1dcc505dbc4565122cac297cb15a6405c04fa Mon Sep 17 00:00:00 2001 From: TAMARA LIPOWSKI Date: Sat, 20 Sep 2025 01:30:38 -0400 Subject: [PATCH] fix: UniswapV3 proto definition This fixes the error: test-runner-1 | 2025-09-20T00:59:08.199125Z ERROR Substreams pack command failed: Error: validation failed: module "map_balance_changes" has invalid proto output type "proto:tycho.evm.uniswap.v3.BalanceDeltas": proto message type "tycho.evm.uniswap.v3.BalanceDeltas" not found in package proto definitions And now it matches how it's done in UniswapV2 --- substreams/ethereum-uniswap-v3/proto/v1/uniswap.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/substreams/ethereum-uniswap-v3/proto/v1/uniswap.proto b/substreams/ethereum-uniswap-v3/proto/v1/uniswap.proto index c81955f..42cce58 100644 --- a/substreams/ethereum-uniswap-v3/proto/v1/uniswap.proto +++ b/substreams/ethereum-uniswap-v3/proto/v1/uniswap.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -package uniswap.v3; +package tycho.evm.uniswap.v3; message Pool { bytes address = 1;