@@ -8,10 +8,10 @@ import {PendleNAVFeed} from "src/feeds/PendleNAVFeed.sol";
88
99contract PTUSDeFeedSwitchFactory {
1010 address public constant USDeWrapperFeed = 0xB3C1D801A02d88adC96A294123c2Daa382345058 ;
11- address public constant sUSDeWrapper = address ( 0xD723a0910e261de49A90779d38A94aFaAA028F15 ) ;
12- address public constant sUSDe = address ( 0x9D39A5DE30e57443BfF2A8307A4256c8797A3497 ) ;
13- uint256 public constant timelockPeriod = 64800 ;
14- address public constant guardian = 0x4b6c63E6a94ef26E2dF60b89372db2d8e211F1B7 ;
11+ address public constant sUSDeWrapper = 0xD723a0910e261de49A90779d38A94aFaAA028F15 ;
12+ address public constant sUSDe = 0x9D39A5DE30e57443BfF2A8307A4256c8797A3497 ;
13+ uint256 public constant TIMELOCK_PERIOD = 64800 ;
14+ address public constant GUARDIAN = 0x4b6c63E6a94ef26E2dF60b89372db2d8e211F1B7 ;
1515
1616 mapping (address => bool ) public isFromFactory;
1717
@@ -26,7 +26,7 @@ contract PTUSDeFeedSwitchFactory {
2626
2727 feedSwitch = address (
2828 new FeedSwitch (
29- address (navFeed), address (beforeMaturityFeed), USDeWrapperFeed, timelockPeriod , pendlePT, guardian
29+ address (navFeed), address (beforeMaturityFeed), USDeWrapperFeed, TIMELOCK_PERIOD , pendlePT, GUARDIAN
3030 )
3131 );
3232 isFromFactory[feedSwitch] = true ;
@@ -42,7 +42,7 @@ contract PTUSDeFeedSwitchFactory {
4242
4343 feedSwitch = address (
4444 new FeedSwitch (
45- address (navFeed), address (beforeMaturityFeed), USDeWrapperFeed, timelockPeriod , pendlePT, guardian
45+ address (navFeed), address (beforeMaturityFeed), USDeWrapperFeed, TIMELOCK_PERIOD , pendlePT, GUARDIAN
4646 )
4747 );
4848
0 commit comments