aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/util/injected_provider.ts
diff options
context:
space:
mode:
authorBrandon Millman <brandon@0xproject.com>2018-11-03 06:17:04 +0800
committerGitHub <noreply@github.com>2018-11-03 06:17:04 +0800
commit18fef7ade493798426417c7095d0458219423d14 (patch)
tree76b7ce89cc377078bc93ab39c19192601936617d /packages/instant/src/util/injected_provider.ts
parent6a57a7b5be151114bb06c171560976b09a8c4aa1 (diff)
parent5fc2483be776cab90e7ff868b27536a85d6764c9 (diff)
downloaddexon-0x-contracts-18fef7ade493798426417c7095d0458219423d14.tar.gz
dexon-0x-contracts-18fef7ade493798426417c7095d0458219423d14.tar.zst
dexon-0x-contracts-18fef7ade493798426417c7095d0458219423d14.zip
Merge pull request #1209 from 0xProject/feature/instant/optional-provider
[instant] Provide optional provider API, fallback to injected provider
Diffstat (limited to 'packages/instant/src/util/injected_provider.ts')
-rw-r--r--packages/instant/src/util/injected_provider.ts16
1 files changed, 16 insertions, 0 deletions
diff --git a/packages/instant/src/util/injected_provider.ts b/packages/instant/src/util/injected_provider.ts
new file mode 100644
index 000000000..40f9e2da5
--- /dev/null
+++ b/packages/instant/src/util/injected_provider.ts
@@ -0,0 +1,16 @@
+import { Provider } from 'ethereum-types';
+import * as _ from 'lodash';
+
+export const getInjectedProvider = (): Provider => {
+ const injectedProviderIfExists = (window as any).ethereum;
+ if (!_.isUndefined(injectedProviderIfExists)) {
+ // TODO: call enable here when implementing wallet connection flow
+ return injectedProviderIfExists;
+ }
+ const injectedWeb3IfExists = (window as any).web3;
+ if (!_.isUndefined(injectedWeb3IfExists.currentProvider)) {
+ return injectedWeb3IfExists.currentProvider;
+ } else {
+ throw new Error(`No injected web3 found`);
+ }
+};