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.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/instant/src/util/address.ts b/packages/instant/src/util/address.ts
index 97ed30a00..14d42d8c0 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';
-export const getBestAddress = async (): Promise<string> => {
+export const getBestAddress = async (): Promise<string | undefined> => {
const addresses = await web3Wrapper.getAvailableAddressesAsync();
return addresses[0];
};