20 lines
607 B
Solidity
20 lines
607 B
Solidity
// SPDX-License-Identifier: GPL-3.0
|
|
|
|
pragma solidity =0.6.12;
|
|
|
|
// a library for performing overflow-safe math, courtesy of DappHub (https://github.com/dapphub/ds-math)
|
|
|
|
library SafeMathUniswap {
|
|
function add(uint x, uint y) internal pure returns (uint z) {
|
|
require((z = x + y) >= x, 'ds-math-add-overflow');
|
|
}
|
|
|
|
function sub(uint x, uint y) internal pure returns (uint z) {
|
|
require((z = x - y) <= x, 'ds-math-sub-underflow');
|
|
}
|
|
|
|
function mul(uint x, uint y) internal pure returns (uint z) {
|
|
require(y == 0 || (z = x * y) / y == x, 'ds-math-mul-overflow');
|
|
}
|
|
}
|