aboutsummaryrefslogtreecommitdiffstats
path: root/src/bignumber_config.ts
blob: 9c1715f86e3ebf9028588e90f068550d0a0ec1bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import * as BigNumber from 'bignumber.js';

export const bigNumberConfigs = {
    configure() {
        // 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,
        });
    },
};