From f4f960cc4cf94e9a120a63261fef767563c49a5f Mon Sep 17 00:00:00 2001 From: arnaudberger Date: Wed, 8 May 2024 09:28:03 -0400 Subject: [PATCH] Add index keys within pb --- substreams/src/pb/mod.rs | 13 +++++++++++++ substreams/src/pb/sf.substreams.index.v1.rs | 8 ++++++++ 2 files changed, 21 insertions(+) create mode 100644 substreams/src/pb/sf.substreams.index.v1.rs diff --git a/substreams/src/pb/mod.rs b/substreams/src/pb/mod.rs index 5d14a91..d396e97 100644 --- a/substreams/src/pb/mod.rs +++ b/substreams/src/pb/mod.rs @@ -1,2 +1,15 @@ +// @generated +pub mod sf { + pub mod substreams { + pub mod index { + // @@protoc_insertion_point(attribute:sf.substreams.index.v1) + pub mod v1 { + include!("sf.substreams.index.v1.rs"); + // @@protoc_insertion_point(sf.substreams.index.v1) + } + } + } +} + #[path = "./sf.substreams.v1.rs"] pub mod substreams; diff --git a/substreams/src/pb/sf.substreams.index.v1.rs b/substreams/src/pb/sf.substreams.index.v1.rs new file mode 100644 index 0000000..a954365 --- /dev/null +++ b/substreams/src/pb/sf.substreams.index.v1.rs @@ -0,0 +1,8 @@ +// @generated +#[allow(clippy::derive_partial_eq_without_eq)] +#[derive(Clone, PartialEq, ::prost::Message)] +pub struct Keys { + #[prost(string, repeated, tag="1")] + pub keys: ::prost::alloc::vec::Vec<::prost::alloc::string::String>, +} +// @@protoc_insertion_point(module)