From fe3b26c59133929438e814a7dd180ff7ace91583 Mon Sep 17 00:00:00 2001 From: Tim Date: Fri, 12 Jul 2024 17:10:03 -0400 Subject: [PATCH] export abiPath --- src/common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common.js b/src/common.js index 6cc7e1c..ffa28db 100644 --- a/src/common.js +++ b/src/common.js @@ -111,7 +111,7 @@ const files = { // 'IVaultLogic' : 'IVault', // for example } -function abiPath(name) { +export function abiPath(name) { const file = files[name] return `${file?file:name}.sol/${name}.json` }