Skip to content

Commit

Permalink
Merge pull request #1 from streamingfast/enol/fix-base
Browse files Browse the repository at this point in the history
Use correct module name for EVM chains
  • Loading branch information
sduchesneau authored Aug 27, 2024
2 parents cd7bb0e + 5135b9c commit a097ee9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ethfull/chain_configs.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ var ChainConfigByID = map[string]*ChainConfig{
ApiEndpoint: "https://api.basescan.org",
FirehoseEndpoint: "base-mainnet.streamingfast.io",
FirstStreamableBlock: 0,
Network: "base-mainnet",
Network: "base",
abiCache: make(map[string]*ABI),
initialBlockCache: make(map[string]uint64),
SupportsCalls: true,
Expand Down
2 changes: 1 addition & 1 deletion ethfull/templates/triggers/subgraph.yaml.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dataSources:
network: {{ .ChainName }}
source:
package:
moduleName: {{ if and $.TrackAnyEvents $.TrackAnyCalls }}zipped_events_calls{{ else if $.TrackAnyEvents }}map_events{{ else if $.TrackAnyCalls }}map_calls{{ end }}
moduleName: {{ if and $.TrackAnyEvents $.TrackAnyCalls }}map_events_calls{{ else if $.TrackAnyEvents }}map_events{{ else if $.TrackAnyCalls }}map_calls{{ end }}
file: {{ $.KebabName }}-v0.1.0.spkg
mapping:
apiVersion: 0.0.7
Expand Down

0 comments on commit a097ee9

Please sign in to comment.