Skip to content

Commit

Permalink
fix: add block explorer as default module
Browse files Browse the repository at this point in the history
  • Loading branch information
JackHamer09 committed Oct 13, 2023
1 parent 4bd9de0 commit 97e2d77
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/commands/dev/modules/utils/packages.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import fs from "fs";
import { createRequire } from "module";
import path from "path";
import ModuleBlockExplorer from "zkcli-block-explorer";
import ModuleDockerizedNode from "zkcli-dockerized-node";
import ModuleInMemoryNode from "zkcli-in-memory-node";
import ModulePortal from "zkcli-portal";
Expand Down Expand Up @@ -117,7 +118,7 @@ export const findDefaultModules = async (): Promise<Package[]> => {
version: packages["zkcli-dockerized-node"].version,
},
{
module: ModulePortal as unknown as Module,
module: ModuleBlockExplorer as unknown as Module,
name: packages["zkcli-block-explorer"].name,
version: packages["zkcli-block-explorer"].version,
},
Expand Down

0 comments on commit 97e2d77

Please sign in to comment.