Implement compare CLI for multiple entities for given block range (#108)

* Implement compare CLI for multiple entities at blocks

* Implement caching for gql requests
This commit is contained in:
2022-01-17 15:18:44 +05:30
committed by GitHub
parent aabf9f8e15
commit 9a8ae3f308
10 changed files with 275 additions and 98 deletions
+9
View File
@@ -0,0 +1,9 @@
#! /usr/bin/env node
const { main } = require('../dist/cli/compare/compare-blocks')
main().catch(err => {
console.log(err);
}).finally(() => {
process.exit(0);
});