We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72b4c01 commit 51786acCopy full SHA for 51786ac
mod.ts
@@ -21,6 +21,10 @@ globalThis.process = process
21
22
const soljsonPath = `file://${Deno.cwd()}/.cache/soljson.js'`
23
24
-if (!(await exists(soljsonPath))) await download()
+if (!(await exists(soljsonPath))) {
25
+ console.log(`Downloading soljson to ${soljsonPath}`)
26
+
27
+ await download()
28
+}
29
30
export const solc = setupMethods(require(soljsonPath))
0 commit comments