mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
9 lines
311 B
Solidity
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;
|
|
}
|