Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Protobuf to include "group" field #20

Merged
merged 1 commit into from
Feb 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions evm-events-calls/convo.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ func init() {
"Given a list of contracts and their ABIs, this will build an Ethereum substreams that decodes events and/or calls",
codegen.ConversationFactory(New),
82,
"evm",
)
}

Expand Down
1 change: 1 addition & 0 deletions evm-minimal/convo.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ func init() {
`Supported networks: `+strings.Join(supportedChains, ", "),
codegen.ConversationFactory(New),
83,
"evm",
)
}

Expand Down
1 change: 1 addition & 0 deletions injective-events/convo.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ func init() {
"Create an Injective Substreams module from specific events",
codegen.ConversationFactory(New),
70,
"cosmos",
)
}

Expand Down
1 change: 1 addition & 0 deletions injective-minimal/convo.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ func init() {
"This creating the most simple substreams on Injective Mainnet",
codegen.ConversationFactory(New),
72,
"cosmos",
)
}

Expand Down
1 change: 1 addition & 0 deletions mantra-events/convo.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ func init() {
"Create an Mantra Substreams module from specific events",
codegen.ConversationFactory(New),
70,
"cosmos",
)
}

Expand Down
1 change: 1 addition & 0 deletions mantra-minimal/convo.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ func init() {
"This creating the most simple substreams on Mantra Mainnet",
codegen.ConversationFactory(New),
72,
"cosmos",
)
}

Expand Down
Loading
Loading