Skip to content

Commit

Permalink
generators from ethereum to evm
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudBger committed Aug 5, 2024
1 parent e32e196 commit 0bd9663
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ethfull/convo.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ func init() {
supportedChains = append(supportedChains, conf.DisplayName)
}
codegen.RegisterConversation(
"ethereum-events-calls",
"evm-events-calls",
"Decode Ethereum events/calls and generate a fully functional substreams",
`Given a list of contracts and their ABIs, this will build an Ethereum substreams that decodes events and/or calls.
Supported networks: `+strings.Join(supportedChains, ", "),
codegen.ConversationFactory(NewOnlySubstreams),
80,
)
codegen.RegisterConversation(
"ethereum-subgraph",
"evm-subgraph",
"Decode Ethereum events/calls and and use them as triggers to feed your Subgraph",
`Given a list of contracts and their ABIs, this will build an Ethereum substreams that decodes events and/or calls
and creates entities that can be sent directly into a Subgraph.
Expand All @@ -57,7 +57,7 @@ Supported networks: `+strings.Join(supportedChains, ", "),

codegen.RegisterConversation(

"ethereum-sql",
"evm-sql",
"Decode Ethereum events/calls and insert them into PostgreSQL or Clickhouse",
`Given a list of contracts and their ABIs, this will build an Ethereum substreams that can be used to fill
Expand Down

0 comments on commit 0bd9663

Please sign in to comment.