aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/util/bignumber_config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/contracts/util/bignumber_config.ts')
-rw-r--r--packages/contracts/util/bignumber_config.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/packages/contracts/util/bignumber_config.ts b/packages/contracts/util/bignumber_config.ts
new file mode 100644
index 000000000..38f59d341
--- /dev/null
+++ b/packages/contracts/util/bignumber_config.ts
@@ -0,0 +1,11 @@
+import {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,
+ });
+ },
+};