aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sol-compiler/test/util/provider.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/sol-compiler/test/util/provider.ts')
-rw-r--r--packages/sol-compiler/test/util/provider.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/packages/sol-compiler/test/util/provider.ts b/packages/sol-compiler/test/util/provider.ts
new file mode 100644
index 000000000..e0fcb362a
--- /dev/null
+++ b/packages/sol-compiler/test/util/provider.ts
@@ -0,0 +1,9 @@
+import { web3Factory } from '@0xproject/dev-utils';
+import { Provider } from '@0xproject/types';
+import * as Web3 from 'web3';
+
+const providerConfigs = { shouldUseInProcessGanache: true };
+const web3Instance = web3Factory.create(providerConfigs);
+const provider: Provider = web3Instance.currentProvider;
+
+export { provider };