dsa-connectors/contracts/arbitrum/connectors/uniswap-sell-beta/libraries/FixedPoint128.sol
pradyuman-verma 69ce278335
update
2021-11-19 18:29:55 +05:30

9 lines
311 B
Solidity

// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.4.0;
/// @title FixedPoint128
/// @notice A library for handling binary fixed point numbers, see https://en.wikipedia.org/wiki/Q_(number_format)
library FixedPoint128 {
uint256 internal constant Q128 = 0x100000000000000000000000000000000;
}