aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/util/provider.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/instant/src/util/provider.ts')
-rw-r--r--packages/instant/src/util/provider.ts12
1 files changed, 0 insertions, 12 deletions
diff --git a/packages/instant/src/util/provider.ts b/packages/instant/src/util/provider.ts
deleted file mode 100644
index 49705fd11..000000000
--- a/packages/instant/src/util/provider.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import { Provider } from 'ethereum-types';
-
-export const getProvider = (): Provider => {
- const injectedWeb3 = (window as any).web3 || undefined;
- try {
- // Use MetaMask/Mist provider
- return injectedWeb3.currentProvider;
- } catch (err) {
- // Throws when user doesn't have MetaMask/Mist running
- throw new Error(`No injected web3 found: ${err}`);
- }
-};