aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/util/address.ts
diff options
context:
space:
mode:
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];
};