diff --git a/packages/api/src/index.ts b/packages/api/src/index.ts index 1d4bbcf7..6e41931c 100644 --- a/packages/api/src/index.ts +++ b/packages/api/src/index.ts @@ -58,7 +58,7 @@ async function main() { }) .map( (networkInfo) => - new NetworkRouter(configuration, repositories, networkInfo), + new NetworkRouter(configuration, Web3, repositories, networkInfo), ) const newFeeds: Array = [] diff --git a/packages/api/tsconfig.json b/packages/api/tsconfig.json index 6bba2833..0041766e 100644 --- a/packages/api/tsconfig.json +++ b/packages/api/tsconfig.json @@ -1,6 +1,7 @@ { "compilerOptions": { "lib": ["ES2021", "DOM"], + "skipLibCheck": true, "target": "es5", "module": "commonjs", "esModuleInterop": true,