Refactor create checkpoint CLI to cli package (#247)

* Refactor create checkpoint CLI to cli package

* Update mock indexer
This commit is contained in:
prathamesh0
2022-11-22 10:38:23 +05:30
committed by GitHub
parent 06e5c62fa8
commit 03050e5323
10 changed files with 107 additions and 131 deletions
+5
View File
@@ -263,6 +263,11 @@ export class Indexer implements IndexerInterface {
// TODO Implement
}
async processCLICheckpoint (contractAddress: string, blockHash?: string): Promise<string | undefined> {
// TODO Implement
return '';
}
getStateData (state: State): any {
return this._baseIndexer.getStateData(state);
}