mirror of
https://github.com/cerc-io/watcher-ts
synced 2026-09-07 16:34:06 +00:00
Add isFEVM flag in config to avoid filtering event logs by topics (#454)
* Pass upstream config to indexer instance * Add isFEVM flag and refactor watcher config fields * Codegen changes for indexer * Add missing getter in dummy indexer for graph-node tests
This commit is contained in:
@@ -17,7 +17,8 @@ import {
|
||||
getResultEvent,
|
||||
ResultEvent,
|
||||
StateKind,
|
||||
EthClient
|
||||
EthClient,
|
||||
UpstreamConfig
|
||||
} from '@cerc-io/util';
|
||||
import { GetStorageAt, getStorageValue, MappingKey, StorageLayout } from '@cerc-io/solidity-mapper';
|
||||
|
||||
@@ -37,6 +38,10 @@ export class Indexer implements IndexerInterface {
|
||||
return {} as ServerConfig;
|
||||
}
|
||||
|
||||
get upstreamConfig () {
|
||||
return {} as UpstreamConfig;
|
||||
}
|
||||
|
||||
get storageLayoutMap (): Map<string, StorageLayout> {
|
||||
return this._storageLayoutMap;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user