Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions remappings.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ lib/eigenlayer-contracts/=lib/eigenlayer-contracts/
@openzeppelin/contracts/=lib/eigenlayer-contracts/lib/openzeppelin-contracts-v4.9.0/contracts/
@openzeppelin-upgradeable/=lib/eigenlayer-contracts/lib/openzeppelin-contracts-upgradeable-v4.9.0/
@openzeppelin-upgradeable/contracts/=lib/eigenlayer-contracts/lib/openzeppelin-contracts-upgradeable-v4.9.0/contracts/
@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol=lib/eigenlayer-contracts/lib/openzeppelin-contracts-v4.9.0/contracts/proxy/transparent/TransparentUpgradeableProxy.sol
@openzeppelin/contracts/proxy/beacon/IBeacon.sol=lib/eigenlayer-contracts/lib/openzeppelin-contracts-v4.9.0/contracts/proxy/beacon/IBeacon.sol
@chainlink/contracts/src/interfaces/feeds/=lib/foundry-chainlink-toolkit/src/interfaces/feeds/
@chainlink/contracts/src/interfaces/feeds/=lib/foundry-chainlink-toolkit/src/interfaces/feeds/
@lsr/=lsr-contracts/
lsr-contracts/=lsr-contracts/
@openzeppelin/contracts/utils/ReentrancyGuard.sol=lib/eigenlayer-contracts/lib/openzeppelin-contracts-v4.9.0/contracts/security/ReentrancyGuard.sol
@openzeppelin/contracts/utils/Pausable.sol=lib/eigenlayer-contracts/lib/openzeppelin-contracts-v4.9.0/contracts/security/Pausable.sol
2 changes: 1 addition & 1 deletion src/core/LiquidToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -424,4 +424,4 @@ contract LiquidToken is
function unpause() external onlyRole(DEFAULT_ADMIN_ROLE) {
_unpause();
}
}
}
2 changes: 1 addition & 1 deletion src/core/LiquidTokenManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -1388,4 +1388,4 @@ contract LiquidTokenManager is

return strategy.underlyingToSharesView(amount);
}
}
}
2 changes: 1 addition & 1 deletion src/core/RewardsManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -290,4 +290,4 @@ contract RewardsManager is
function _balanceAsset(IERC20 asset) internal view returns (uint256) {
return unsupportedAssetBalances[address(asset)];
}
}
}
2 changes: 1 addition & 1 deletion src/core/StakerNode.sol
Original file line number Diff line number Diff line change
Expand Up @@ -247,4 +247,4 @@ contract StakerNode is IStakerNode, Initializable, ReentrancyGuardUpgradeable {
}
_;
}
}
}
2 changes: 1 addition & 1 deletion src/core/StakerNodeCoordinator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -264,4 +264,4 @@ contract StakerNodeCoordinator is IStakerNodeCoordinator, AccessControlUpgradeab
}
_;
}
}
}
2 changes: 1 addition & 1 deletion src/core/WithdrawalManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -432,4 +432,4 @@ contract WithdrawalManager is IWithdrawalManager, Initializable, AccessControlUp

return redemption;
}
}
}
2 changes: 1 addition & 1 deletion src/interfaces/ILiquidToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -184,4 +184,4 @@ interface ILiquidToken {

/// @notice Unpauses the contract
function unpause() external;
}
}
2 changes: 1 addition & 1 deletion src/interfaces/ILiquidTokenManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -527,4 +527,4 @@ interface ILiquidTokenManager {
/// @notice Returns the LSTSwapRouter contract
/// @return The ILSTSwapRouter interface
function lstSwapRouter() external view returns (ILSTSwapRouter);
}
}
2 changes: 1 addition & 1 deletion src/interfaces/IRewardsManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,4 @@ interface IRewardsManager {
/// @param assetList The list of assets to get balances for
/// @return An array of asset balances
function balanceAssets(IERC20[] calldata assetList) external view returns (uint256[] memory);
}
}
2 changes: 1 addition & 1 deletion src/interfaces/IStakerNode.sol
Original file line number Diff line number Diff line change
Expand Up @@ -134,4 +134,4 @@ interface IStakerNode {
/// Returns the address of the operator the node is delegate to
/// @return The address of the delegated operator or zero address if not delegated
function getOperatorDelegation() external view returns (address);
}
}
2 changes: 1 addition & 1 deletion src/interfaces/IStakerNodeCoordinator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -172,4 +172,4 @@ interface IStakerNodeCoordinator {
/// @notice Gets the maximum number of nodes allowed
/// @return The maximum number of nodes
function maxNodes() external view returns (uint256);
}
}
2 changes: 1 addition & 1 deletion src/interfaces/IWithdrawalManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -244,4 +244,4 @@ interface IWithdrawalManager {
/// @notice Returns all redemption details for a given redemption ID
/// @param redemptionId The ID of the redemption
function getRedemption(bytes32 redemptionId) external view returns (ILiquidTokenManager.Redemption memory);
}
}
Loading
Loading