We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 494869d commit 1dafe2cCopy full SHA for 1dafe2c
src/index.ts
@@ -1,5 +1,3 @@
1
-import * as util from './util';
2
-
3
export * from './AccountTrackerController';
4
export * from './AddressBookController';
5
export * from './BaseController';
@@ -13,4 +11,4 @@ export * from './PhishingController';
13
11
export * from './PreferencesController';
14
12
export * from './ShapeShiftController';
15
export * from './TokenRatesController';
16
-export { util };
+export * from './util';
src/util.ts
@@ -67,3 +67,9 @@ export async function safelyExecute(operation: () => Promise<any>) {
67
/* tslint:disable-next-line:no-empty */
68
}
69
70
+
71
+export default {
72
+ getBuyURL,
73
+ getGasPrice,
74
+ safelyExecute
75
+};
0 commit comments