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 f1d9ff8 commit 6ecfb2fCopy full SHA for 6ecfb2f
src/constants.ts
@@ -1,8 +1,10 @@
1
export const UINT_8_MAX = (1n << 8n) - 1n
2
export const UINT_24_MAX = (1n << 24n) - 1n
3
+export const UINT_16_MAX = (1n << 16n) - 1n
4
export const UINT_32_MAX = (1n << 32n) - 1n
5
export const UINT_40_MAX = (1n << 40n) - 1n
6
export const UINT_48_MAX = (1n << 48n) - 1n
7
+export const UINT_64_MAX = (1n << 64n) - 1n
8
export const UINT_80_MAX = (1n << 80n) - 1n
9
export const UINT_160_MAX = (1n << 160n) - 1n
10
export const UINT_128_MAX = (1n << 128n) - 1n
0 commit comments