Compute gas price for EIP-1559 transaction (#157)

This commit is contained in:
2022-08-09 10:50:25 +05:30
committed by GitHub
parent 1a903fccc6
commit 5077abc90f
5 changed files with 24 additions and 7 deletions
@@ -41,7 +41,7 @@ export const handler = async (argv: any): Promise<void> => {
const db = new Database(config.database);
await db.init();
const graphDb = new GraphDatabase(config.database, path.resolve(__dirname, '../entity/*'));
const graphDb = new GraphDatabase(config.database, path.resolve(__dirname, '../../entity/*'));
await graphDb.init();
const graphWatcher = new GraphWatcher(graphDb, ethClient, ethProvider, config.server);