Skip to content

Commit

Permalink
Merge pull request #51 from 0xmichalis/version-info
Browse files Browse the repository at this point in the history
[LILA-7056] Add version info
  • Loading branch information
0xmichalis authored Apr 18, 2024
2 parents cfa4f36 + f24087c commit 4609afc
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/FeeCalculator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ import "./interfaces/IPool.sol";
/// @notice This contract calculates deposit and redemption fees for a given pool.
/// @dev It implements the IFeeCalculator interface.
contract FeeCalculator is IFeeCalculator, Ownable {
/// @dev Version-related parameters. VERSION keeps track of production
/// releases. VERSION_RELEASE_CANDIDATE keeps track of iterations
/// of a VERSION in our staging environment.
string public constant VERSION = "1.0.0";
uint256 public constant VERSION_RELEASE_CANDIDATE = 1;

SD59x18 private _zero = sd(0);
SD59x18 private _one = sd(1e18);

Expand Down

0 comments on commit 4609afc

Please sign in to comment.