Skip to content

Commit

Permalink
feat(constants): add UINT_128_MAX
Browse files Browse the repository at this point in the history
  • Loading branch information
vbrvk committed Jun 6, 2024
1 parent 7f8296c commit d208d64
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ export const UINT_32_MAX = (1n << 32n) - 1n
export const UINT_40_MAX = (1n << 40n) - 1n
export const UINT_80_MAX = (1n << 80n) - 1n
export const UINT_160_MAX = (1n << 160n) - 1n
export const UINT_128_MAX = (1n << 128n) - 1n
export const UINT_256_MAX = (1n << 256n) - 1n

0 comments on commit d208d64

Please sign in to comment.