diff --git a/proto/tycho/evm/v1/common.proto b/proto/tycho/evm/v1/common.proto index 91a9095..4247351 100644 --- a/proto/tycho/evm/v1/common.proto +++ b/proto/tycho/evm/v1/common.proto @@ -158,7 +158,7 @@ message EntryPoint { // The target contract to analyse this entrypoint on. bytes target = 2; // The signature of the function to analyse. - bytes signature = 3; + string signature = 3; } // A contract and associated storage changes diff --git a/substreams/crates/tycho-substreams/src/pb/tycho.evm.v1.rs b/substreams/crates/tycho-substreams/src/pb/tycho.evm.v1.rs index a5479de..8b98b96 100644 --- a/substreams/crates/tycho-substreams/src/pb/tycho.evm.v1.rs +++ b/substreams/crates/tycho-substreams/src/pb/tycho.evm.v1.rs @@ -187,8 +187,8 @@ pub struct EntryPoint { #[prost(bytes="vec", tag="2")] pub target: ::prost::alloc::vec::Vec, /// The signature of the function to analyse. - #[prost(bytes="vec", tag="3")] - pub signature: ::prost::alloc::vec::Vec, + #[prost(string, tag="3")] + pub signature: ::prost::alloc::string::String, } /// A contract and associated storage changes #[allow(clippy::derive_partial_eq_without_eq)]