UNPKG
@uniswap/v4-core
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
🦄 Core smart contracts of Uniswap v4
github.com/Uniswap/v4-core
Uniswap/v4-core
@uniswap/v4-core
/
lib
/
openzeppelin-contracts
/
test
/
helpers
/
constants.js
8 lines
(6 loc)
•
185 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
const
MAX_UINT48
=
web3.utils.toBN(
1
).shln(
48
).subn(
1
).toString();
const
MAX_UINT64
=
web3.utils.toBN(
1
).shln(
64
).subn(
1
).toString();
module
.
exports
= { MAX_UINT48, MAX_UINT64, };