From f24087cdd7b8a7f25002fd79b140bef3ddaedd34 Mon Sep 17 00:00:00 2001 From: Michalis Kargakis Date: Wed, 17 Apr 2024 16:33:35 +0200 Subject: [PATCH] Add version info --- src/FeeCalculator.sol | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/FeeCalculator.sol b/src/FeeCalculator.sol index 6851fa5..1972606 100644 --- a/src/FeeCalculator.sol +++ b/src/FeeCalculator.sol @@ -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);