aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/index.tsx
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2017-12-18 09:55:50 +0800
committerFabio Berger <me@fabioberger.com>2017-12-18 09:55:50 +0800
commitf698dd40772eee0b3142028f62b6c56dcfcc5a1e (patch)
tree3c93414de7700c047241cc4b1b2e210d981a82d3 /packages/website/ts/index.tsx
parent0578116f1dbe89a5b3c0c7e5f45948a1434b07b3 (diff)
downloaddexon-sol-tools-f698dd40772eee0b3142028f62b6c56dcfcc5a1e.tar
dexon-sol-tools-f698dd40772eee0b3142028f62b6c56dcfcc5a1e.tar.gz
dexon-sol-tools-f698dd40772eee0b3142028f62b6c56dcfcc5a1e.tar.bz2
dexon-sol-tools-f698dd40772eee0b3142028f62b6c56dcfcc5a1e.tar.lz
dexon-sol-tools-f698dd40772eee0b3142028f62b6c56dcfcc5a1e.tar.xz
dexon-sol-tools-f698dd40772eee0b3142028f62b6c56dcfcc5a1e.tar.zst
dexon-sol-tools-f698dd40772eee0b3142028f62b6c56dcfcc5a1e.zip
Use bigNumberConfigs from @0xproject/utils in website repo
Diffstat (limited to 'packages/website/ts/index.tsx')
-rw-r--r--packages/website/ts/index.tsx7
1 files changed, 2 insertions, 5 deletions
diff --git a/packages/website/ts/index.tsx b/packages/website/ts/index.tsx
index 71565fa4d..69bb03dce 100644
--- a/packages/website/ts/index.tsx
+++ b/packages/website/ts/index.tsx
@@ -1,6 +1,7 @@
// Polyfills
import 'whatwg-fetch';
+import {bigNumberConfigs} from '@0xproject/utils';
import BigNumber from 'bignumber.js';
import {colors, getMuiTheme, MuiThemeProvider} from 'material-ui/styles';
import * as React from 'react';
@@ -22,11 +23,7 @@ import {WebsitePaths} from 'ts/types';
import {constants} from 'ts/utils/constants';
injectTapEventPlugin();
-// By default BigNumber's `toString` method converts to exponential notation if the value has
-// more then 20 digits. We want to avoid this behavior, so we set EXPONENTIAL_AT to a high number
-BigNumber.config({
- EXPONENTIAL_AT: 1000,
-});
+bigNumberConfigs.configure();
// Check if we've introduced an update that requires us to clear the tradeHistory local storage entries
tradeHistoryStorage.clearIfRequired();