1 | "use strict";
|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
3 | exports.BN_SQRT_MAX_INTEGER = exports.BN_MAX_INTEGER = exports.BN_QUINTILL = exports.BN_BILLION = exports.BN_MILLION = exports.BN_THOUSAND = exports.BN_HUNDRED = exports.BN_TEN = exports.BN_NINE = exports.BN_EIGHT = exports.BN_SEVEN = exports.BN_SIX = exports.BN_FIVE = exports.BN_FOUR = exports.BN_THREE = exports.BN_TWO = exports.BN_ONE = exports.BN_ZERO = void 0;
|
4 | const bn_js_1 = require("./bn.js");
|
5 |
|
6 |
|
7 |
|
8 |
|
9 | exports.BN_ZERO = new bn_js_1.BN(0);
|
10 |
|
11 |
|
12 |
|
13 |
|
14 | exports.BN_ONE = new bn_js_1.BN(1);
|
15 |
|
16 |
|
17 |
|
18 |
|
19 | exports.BN_TWO = new bn_js_1.BN(2);
|
20 |
|
21 |
|
22 |
|
23 |
|
24 | exports.BN_THREE = new bn_js_1.BN(3);
|
25 |
|
26 |
|
27 |
|
28 |
|
29 | exports.BN_FOUR = new bn_js_1.BN(4);
|
30 |
|
31 |
|
32 |
|
33 |
|
34 | exports.BN_FIVE = new bn_js_1.BN(5);
|
35 |
|
36 |
|
37 |
|
38 |
|
39 | exports.BN_SIX = new bn_js_1.BN(6);
|
40 |
|
41 |
|
42 |
|
43 |
|
44 | exports.BN_SEVEN = new bn_js_1.BN(7);
|
45 |
|
46 |
|
47 |
|
48 |
|
49 | exports.BN_EIGHT = new bn_js_1.BN(8);
|
50 |
|
51 |
|
52 |
|
53 |
|
54 | exports.BN_NINE = new bn_js_1.BN(9);
|
55 |
|
56 |
|
57 |
|
58 |
|
59 | exports.BN_TEN = new bn_js_1.BN(10);
|
60 |
|
61 |
|
62 |
|
63 |
|
64 | exports.BN_HUNDRED = new bn_js_1.BN(100);
|
65 |
|
66 |
|
67 |
|
68 |
|
69 | exports.BN_THOUSAND = new bn_js_1.BN(1000);
|
70 |
|
71 |
|
72 |
|
73 |
|
74 | exports.BN_MILLION = new bn_js_1.BN(1000000);
|
75 |
|
76 |
|
77 |
|
78 |
|
79 | exports.BN_BILLION = new bn_js_1.BN(1000000000);
|
80 |
|
81 |
|
82 |
|
83 |
|
84 | exports.BN_QUINTILL = exports.BN_BILLION.mul(exports.BN_BILLION);
|
85 |
|
86 |
|
87 |
|
88 |
|
89 | exports.BN_MAX_INTEGER = new bn_js_1.BN(Number.MAX_SAFE_INTEGER);
|
90 |
|
91 |
|
92 |
|
93 |
|
94 | exports.BN_SQRT_MAX_INTEGER = new bn_js_1.BN(94906265);
|