Use eth client for getStorageAt query (#302)

This commit is contained in:
prathamesh0
2021-12-06 17:22:09 +05:30
committed by GitHub
parent ec586216db
commit f89a7a07aa
9 changed files with 26 additions and 13 deletions
@@ -69,7 +69,7 @@ export class Indexer {
this._ethClient = ethClient;
this._postgraphileClient = postgraphileClient;
this._ethProvider = ethProvider;
this._baseIndexer = new BaseIndexer(this._db, this._postgraphileClient, this._ethProvider);
this._baseIndexer = new BaseIndexer(this._db, this._ethClient, this._postgraphileClient, this._ethProvider);
const { abi, storageLayout } = artifacts;