Files
openzeppelin-contracts/test/helpers/constants.js
Hadrien Croubois 994399d3cf Address audit findings (5.3 diff audit) (#5584)
Co-authored-by: Arr00 <13561405+arr00@users.noreply.github.com>
Co-authored-by: Ernesto García <ernestognw@gmail.com>
2025-03-19 17:00:49 +01:00

6 lines
112 B
JavaScript

module.exports = {
MAX_UINT32: 2n ** 32n - 1n,
MAX_UINT48: 2n ** 48n - 1n,
MAX_UINT64: 2n ** 64n - 1n,
};