735546619e
Signed-off-by: T-Hax <>
13 lines
341 B
Solidity
13 lines
341 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity =0.7.6;
|
|
|
|
library TokenRatioSortOrder {
|
|
int256 constant NUMERATOR_MOST = 300;
|
|
int256 constant NUMERATOR_MORE = 200;
|
|
int256 constant NUMERATOR = 100;
|
|
|
|
int256 constant DENOMINATOR_MOST = -300;
|
|
int256 constant DENOMINATOR_MORE = -200;
|
|
int256 constant DENOMINATOR = -100;
|
|
}
|