aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/util/address.ts
diff options
context:
space:
mode:
authorBrandon Millman <brandon.millman@gmail.com>2018-11-03 04:48:31 +0800
committerBrandon Millman <brandon.millman@gmail.com>2018-11-03 05:39:12 +0800
commit5fc2483be776cab90e7ff868b27536a85d6764c9 (patch)
tree1dedb81a97b4c57c763d4f56cb4952d5df4b586f /packages/instant/src/util/address.ts
parentec83a1d9e735573fe51df7a5854424c0ad4101fb (diff)
downloaddexon-sol-tools-5fc2483be776cab90e7ff868b27536a85d6764c9.tar
dexon-sol-tools-5fc2483be776cab90e7ff868b27536a85d6764c9.tar.gz
dexon-sol-tools-5fc2483be776cab90e7ff868b27536a85d6764c9.tar.bz2
dexon-sol-tools-5fc2483be776cab90e7ff868b27536a85d6764c9.tar.lz
dexon-sol-tools-5fc2483be776cab90e7ff868b27536a85d6764c9.tar.xz
dexon-sol-tools-5fc2483be776cab90e7ff868b27536a85d6764c9.tar.zst
dexon-sol-tools-5fc2483be776cab90e7ff868b27536a85d6764c9.zip
feat(instant): pass in provider through props, fallback to injected provider
Diffstat (limited to 'packages/instant/src/util/address.ts')
-rw-r--r--packages/instant/src/util/address.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/instant/src/util/address.ts b/packages/instant/src/util/address.ts
index 14d42d8c0..b21863a8e 100644
--- a/packages/instant/src/util/address.ts
+++ b/packages/instant/src/util/address.ts
@@ -1,6 +1,6 @@
-import { web3Wrapper } from '../util/web3_wrapper';
+import { Web3Wrapper } from '@0x/web3-wrapper';
-export const getBestAddress = async (): Promise<string | undefined> => {
+export const getBestAddress = async (web3Wrapper: Web3Wrapper): Promise<string | undefined> => {
const addresses = await web3Wrapper.getAvailableAddressesAsync();
return addresses[0];
};