Overview
S Balance
0 S
S Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 11,824 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Execute | 5336129 | 7 mins ago | IN | 18,000 S | 0.00882101 | ||||
Execute | 5336122 | 7 mins ago | IN | 0 S | 0.00956337 | ||||
Execute | 5335628 | 15 mins ago | IN | 0 S | 0.00963435 | ||||
Execute | 5335452 | 18 mins ago | IN | 3,512 S | 0.00819245 | ||||
Execute | 5335361 | 20 mins ago | IN | 3,710 S | 0.00819005 | ||||
Execute | 5335288 | 21 mins ago | IN | 3,912 S | 0.00819405 | ||||
Execute | 5335211 | 23 mins ago | IN | 4,163 S | 0.00909525 | ||||
Execute | 5335198 | 23 mins ago | IN | 0 S | 0.01080645 | ||||
Execute | 5335125 | 25 mins ago | IN | 1,520 S | 0.00983322 | ||||
Execute | 5334882 | 29 mins ago | IN | 0 S | 0.0093295 | ||||
Execute | 5334831 | 30 mins ago | IN | 0 S | 0.0080462 | ||||
Execute | 5334774 | 31 mins ago | IN | 0 S | 0.00804425 | ||||
Execute | 5334400 | 39 mins ago | IN | 851 S | 0.00956862 | ||||
Execute | 5333971 | 46 mins ago | IN | 2,300 S | 0.00881914 | ||||
Execute | 5333629 | 52 mins ago | IN | 42,560 S | 0.00881776 | ||||
Execute | 5333574 | 53 mins ago | IN | 32,100 S | 0.01201035 | ||||
Execute | 5333427 | 55 mins ago | IN | 0 S | 0.01162173 | ||||
Execute | 5333358 | 56 mins ago | IN | 0 S | 0.008849 | ||||
Execute | 5333246 | 1 hrs ago | IN | 0 S | 0.0110734 | ||||
Execute | 5332933 | 1 hr ago | IN | 0 S | 0.01413734 | ||||
Execute | 5332502 | 1 hr ago | IN | 1,279 S | 0.00900977 | ||||
Execute | 5332345 | 1 hr ago | IN | 1,827 S | 0.00901351 | ||||
Execute | 5332239 | 1 hr ago | IN | 3,197 S | 0.00901191 | ||||
Execute | 5332160 | 1 hr ago | IN | 3,655 S | 0.00901202 | ||||
Execute | 5332064 | 1 hr ago | IN | 7,528 S | 0.01000796 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
5336129 | 7 mins ago | 18,000 S | ||||
5335452 | 18 mins ago | 3,512 S | ||||
5335361 | 20 mins ago | 3,710 S | ||||
5335288 | 21 mins ago | 3,912 S | ||||
5335211 | 23 mins ago | 4,163 S | ||||
5335125 | 25 mins ago | 1,520 S | ||||
5334400 | 39 mins ago | 851 S | ||||
5333971 | 46 mins ago | 2,300 S | ||||
5333629 | 52 mins ago | 42,560 S | ||||
5333574 | 53 mins ago | 32,100 S | ||||
5332502 | 1 hr ago | 1,279 S | ||||
5332345 | 1 hr ago | 1,827 S | ||||
5332239 | 1 hr ago | 3,197 S | ||||
5332160 | 1 hr ago | 3,655 S | ||||
5332064 | 1 hr ago | 7,528 S | ||||
5331573 | 1 hr ago | 285 S | ||||
5330785 | 1 hr ago | 46.08 S | ||||
5330697 | 1 hr ago | 52.5 S | ||||
5330602 | 1 hr ago | 60.37 S | ||||
5330549 | 1 hr ago | 46.07 S | ||||
5330040 | 1 hr ago | 184 S | ||||
5329631 | 2 hrs ago | 18,469.0206 S | ||||
5328612 | 2 hrs ago | 1,900 S | ||||
5328516 | 2 hrs ago | 700 S | ||||
5328472 | 2 hrs ago | 2,000 S |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
SiloRouter
Compiler Version
v0.8.28+commit.7893614a
Optimization Enabled:
Yes with 200 runs
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.28; import {IERC20} from "openzeppelin5/token/ERC20/IERC20.sol"; import {SafeERC20} from "openzeppelin5/token/ERC20/utils/SafeERC20.sol"; import {IWrappedNativeToken} from "./interfaces/IWrappedNativeToken.sol"; import {ISilo} from "./interfaces/ISilo.sol"; import {TokenHelper} from "./lib/TokenHelper.sol"; /// @title SiloRouter /// @notice Silo Router is a utility contract that aims to improve UX. It can batch any number or combination /// of actions (Deposit, Withdraw, Borrow, Repay) and execute them in a single transaction. /// @dev SiloRouter requires only first action asset to be approved /// @custom:security-contact [email protected] contract SiloRouter { using SafeERC20 for IERC20; // @notice Action types that are supported enum ActionType { Deposit, Mint, Repay, RepayShares } struct AnyAction { // how much assets or shares do you want to use? uint256 amount; // are you using Protected, Collateral ISilo.CollateralType assetType; } struct Action { // what do you want to do? ActionType actionType; // which Silo are you interacting with? ISilo silo; // what asset do you want to use? IERC20 asset; // options specific for actions bytes options; } /// @dev native asset wrapped token. In case of Ether, it's WETH. IWrappedNativeToken public immutable WRAPPED_NATIVE_TOKEN; error ApprovalFailed(); error ERC20TransferFailed(); error EthTransferFailed(); error InvalidSilo(); constructor(address _wrappedNativeToken) { TokenHelper.assertAndGetDecimals(_wrappedNativeToken); WRAPPED_NATIVE_TOKEN = IWrappedNativeToken(_wrappedNativeToken); } /// @dev needed for unwrapping WETH receive() external payable { // `execute` method calls `IWrappedNativeToken.withdraw()` // and we need to receive the withdrawn ETH unconditionally } /// @notice Execute actions /// @dev User can bundle any combination and number of actions. It's possible to do multiple deposits, /// withdraws etc. For that reason router may need to send multiple tokens back to the user. Combining /// Ether and WETH deposits will make this function revert. /// @param _actions array of actions to execute function execute(Action[] calldata _actions) external payable { uint256 len = _actions.length; // execute actions for (uint256 i = 0; i < len; i++) { _executeAction(_actions[i]); } // send all assets to user for (uint256 i = 0; i < len; i++) { IERC20 asset = _actions[i].asset; uint256 remainingBalance = asset.balanceOf(address(this)); if (remainingBalance != 0) { _sendAsset(asset, remainingBalance); } } // should never have leftover ETH, however if (msg.value != 0 && address(this).balance != 0) { // solhint-disable-next-line avoid-low-level-calls (bool success,) = msg.sender.call{value: address(this).balance}(""); require(success, EthTransferFailed()); } } /// @dev Execute actions /// @param _action action to execute, this can be one of many actions in the whole flow // solhint-disable-next-line code-complexity function _executeAction(Action calldata _action) internal { if (_action.actionType == ActionType.Deposit) { AnyAction memory data = abi.decode(_action.options, (AnyAction)); _pullAssetIfNeeded(_action.asset, data.amount); _approveIfNeeded(_action.asset, address(_action.silo), data.amount); _action.silo.deposit(data.amount, msg.sender, data.assetType); } else if (_action.actionType == ActionType.Mint) { AnyAction memory data = abi.decode(_action.options, (AnyAction)); uint256 assetsAmount = _action.silo.previewMint(data.amount); _pullAssetIfNeeded(_action.asset, assetsAmount); _approveIfNeeded(_action.asset, address(_action.silo), assetsAmount); _action.silo.mint(data.amount, msg.sender, data.assetType); } else if (_action.actionType == ActionType.Repay) { AnyAction memory data = abi.decode(_action.options, (AnyAction)); _pullAssetIfNeeded(_action.asset, data.amount); _approveIfNeeded(_action.asset, address(_action.silo), data.amount); _action.silo.repay(data.amount, msg.sender); } else if (_action.actionType == ActionType.RepayShares) { AnyAction memory data = abi.decode(_action.options, (AnyAction)); uint256 assetsAmount = _action.silo.previewRepayShares(data.amount); _pullAssetIfNeeded(_action.asset, assetsAmount); _approveIfNeeded(_action.asset, address(_action.silo), assetsAmount); _action.silo.repayShares(data.amount, msg.sender); } } /// @dev Approve Silo to transfer token if current allowance is not enough /// @param _asset token to be approved /// @param _spender Silo address that spends the token /// @param _amount amount of token to be spent function _approveIfNeeded(IERC20 _asset, address _spender, uint256 _amount) internal { if (_asset.allowance(address(this), _spender) < _amount) { // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory data) = address(_asset).call( abi.encodeCall(IERC20.approve, (_spender, type(uint256).max)) ); // Support non-standard tokens that don't return bool require(success && (data.length == 0 || abi.decode(data, (bool))), ApprovalFailed()); } } /// @dev Transfer funds from msg.sender to this contract if balance is not enough /// @param _asset token to be approved /// @param _amount amount of token to be spent function _pullAssetIfNeeded(IERC20 _asset, uint256 _amount) internal { uint256 remainingBalance = _asset.balanceOf(address(this)); // There can't be an underflow in the subtraction because of the previous check _amount = remainingBalance < _amount ? _amount - remainingBalance : 0; if (_amount > 0) { _pullAsset(_asset, _amount); } } /// @dev Transfer asset from user to router /// @param _asset asset address to be transferred /// @param _amount amount of asset to be transferred function _pullAsset(IERC20 _asset, uint256 _amount) internal { if (msg.value != 0 && _asset == WRAPPED_NATIVE_TOKEN) { WRAPPED_NATIVE_TOKEN.deposit{value: _amount}(); } else { _asset.safeTransferFrom(msg.sender, address(this), _amount); } } /// @dev Transfer asset from router to user /// @param _asset asset address to be transferred /// @param _amount amount of asset to be transferred function _sendAsset(IERC20 _asset, uint256 _amount) internal { if (address(_asset) == address(WRAPPED_NATIVE_TOKEN)) { WRAPPED_NATIVE_TOKEN.withdraw(_amount); // solhint-disable-next-line avoid-low-level-calls (bool success,) = msg.sender.call{value: _amount}(""); require(success, ERC20TransferFailed()); } else { _asset.safeTransfer(msg.sender, _amount); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; import {IERC1363} from "../../../interfaces/IERC1363.sol"; import {Address} from "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC-20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev An operation with an ERC-20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value))); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value))); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @dev Performs an {ERC1363} transferAndCall, with a fallback to the simple {ERC20} transfer if the target has no * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when * targeting contracts. * * Reverts if the returned value is other than `true`. */ function transferAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal { if (to.code.length == 0) { safeTransfer(token, to, value); } else if (!token.transferAndCall(to, value, data)) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Performs an {ERC1363} transferFromAndCall, with a fallback to the simple {ERC20} transferFrom if the target * has no code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when * targeting contracts. * * Reverts if the returned value is other than `true`. */ function transferFromAndCallRelaxed( IERC1363 token, address from, address to, uint256 value, bytes memory data ) internal { if (to.code.length == 0) { safeTransferFrom(token, from, to, value); } else if (!token.transferFromAndCall(from, to, value, data)) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Performs an {ERC1363} approveAndCall, with a fallback to the simple {ERC20} approve if the target has no * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when * targeting contracts. * * NOTE: When the recipient address (`to`) has no code (i.e. is an EOA), this function behaves as {forceApprove}. * Opposedly, when the recipient address (`to`) has code, this function only attempts to call {ERC1363-approveAndCall} * once without retrying, and relies on the returned value to be true. * * Reverts if the returned value is other than `true`. */ function approveAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal { if (to.code.length == 0) { forceApprove(token, to, value); } else if (!token.approveAndCall(to, value, data)) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data); if (returndata.length != 0 && !abi.decode(returndata, (bool))) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; import {IERC20} from "openzeppelin5/token/ERC20/IERC20.sol"; interface IWrappedNativeToken is IERC20 { function deposit() external payable; function withdraw(uint256 amount) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; import {IERC4626, IERC20, IERC20Metadata} from "openzeppelin5/interfaces/IERC4626.sol"; import {IERC3156FlashLender} from "./IERC3156FlashLender.sol"; import {ISiloConfig} from "./ISiloConfig.sol"; import {ISiloFactory} from "./ISiloFactory.sol"; import {IHookReceiver} from "./IHookReceiver.sol"; // solhint-disable ordering interface ISilo is IERC20, IERC4626, IERC3156FlashLender { /// @dev Interest accrual happens on each deposit/withdraw/borrow/repay. View methods work on storage that might be /// outdate. Some calculations require accrued interest to return current state of Silo. This struct is used /// to make a decision inside functions if interest should be accrued in memory to work on updated values. enum AccrueInterestInMemory { No, Yes } /// @dev Silo has two separate oracles for solvency and maxLtv calculations. MaxLtv oracle is optional. Solvency /// oracle can also be optional if asset is used as denominator in Silo config. For example, in ETH/USDC Silo /// one could setup only solvency oracle for ETH that returns price in USDC. Then USDC does not need an oracle /// because it's used as denominator for ETH and it's "price" can be assume as 1. enum OracleType { Solvency, MaxLtv } /// @dev There are 3 types of accounting in the system: for non-borrowable collateral deposit called "protected", /// for borrowable collateral deposit called "collateral" and for borrowed tokens called "debt". System does /// identical calculations for each type of accounting but it uses different data. To avoid code duplication /// this enum is used to decide which data should be read. enum AssetType { Protected, // default Collateral, Debt } /// @dev There are 2 types of accounting in the system: for non-borrowable collateral deposit called "protected" and /// for borrowable collateral deposit called "collateral". System does /// identical calculations for each type of accounting but it uses different data. To avoid code duplication /// this enum is used to decide which data should be read. enum CollateralType { Protected, // default Collateral } /// @dev Types of calls that can be made by the hook receiver on behalf of Silo via `callOnBehalfOfSilo` fn enum CallType { Call, // default Delegatecall } /// @param _assets Amount of assets the user wishes to withdraw. Use 0 if shares are provided. /// @param _shares Shares the user wishes to burn in exchange for the withdrawal. Use 0 if assets are provided. /// @param _receiver Address receiving the withdrawn assets /// @param _owner Address of the owner of the shares being burned /// @param _spender Address executing the withdrawal; may be different than `_owner` if an allowance was set /// @param _collateralType Type of the asset being withdrawn (Collateral or Protected) struct WithdrawArgs { uint256 assets; uint256 shares; address receiver; address owner; address spender; ISilo.CollateralType collateralType; } /// @param assets Number of assets the borrower intends to borrow. Use 0 if shares are provided. /// @param shares Number of shares corresponding to the assets that the borrower intends to borrow. Use 0 if /// assets are provided. /// @param receiver Address that will receive the borrowed assets /// @param borrower The user who is borrowing the assets struct BorrowArgs { uint256 assets; uint256 shares; address receiver; address borrower; } /// @param shares Amount of shares the user wishes to transit. /// @param owner owner of the shares after transition. /// @param transitionFrom type of collateral that will be transitioned. struct TransitionCollateralArgs { uint256 shares; address owner; ISilo.CollateralType transitionFrom; } struct UtilizationData { /// @dev COLLATERAL: Amount of asset token that has been deposited to Silo plus interest earned by depositors. /// It also includes token amount that has been borrowed. uint256 collateralAssets; /// @dev DEBT: Amount of asset token that has been borrowed plus accrued interest. uint256 debtAssets; /// @dev timestamp of the last interest accrual uint64 interestRateTimestamp; } struct SiloStorage { /// @param daoAndDeployerRevenue Current amount of assets (fees) accrued by DAO and Deployer /// but not yet withdrawn uint192 daoAndDeployerRevenue; /// @dev timestamp of the last interest accrual uint64 interestRateTimestamp; /// @dev silo is just for one asset, /// but this one asset can be of three types: mapping key is uint256(AssetType), so we store `assets` by type. /// Assets based on type: /// - PROTECTED COLLATERAL: Amount of asset token that has been deposited to Silo that can be ONLY used /// as collateral. These deposits do NOT earn interest and CANNOT be borrowed. /// - COLLATERAL: Amount of asset token that has been deposited to Silo plus interest earned by depositors. /// It also includes token amount that has been borrowed. /// - DEBT: Amount of asset token that has been borrowed plus accrued interest. /// `totalAssets` can have outdated value (without interest), if you doing view call (of off-chain call) /// please use getters eg `getCollateralAssets()` to fetch value that includes interest. mapping(AssetType assetType => uint256 assets) totalAssets; } /// @notice Emitted on protected deposit /// @param sender wallet address that deposited asset /// @param owner wallet address that received shares in Silo /// @param assets amount of asset that was deposited /// @param shares amount of shares that was minted event DepositProtected(address indexed sender, address indexed owner, uint256 assets, uint256 shares); /// @notice Emitted on protected withdraw /// @param sender wallet address that sent transaction /// @param receiver wallet address that received asset /// @param owner wallet address that owned asset /// @param assets amount of asset that was withdrew /// @param shares amount of shares that was burn event WithdrawProtected( address indexed sender, address indexed receiver, address indexed owner, uint256 assets, uint256 shares ); /// @notice Emitted on borrow /// @param sender wallet address that sent transaction /// @param receiver wallet address that received asset /// @param owner wallet address that owes assets /// @param assets amount of asset that was borrowed /// @param shares amount of shares that was minted event Borrow( address indexed sender, address indexed receiver, address indexed owner, uint256 assets, uint256 shares ); /// @notice Emitted on repayment /// @param sender wallet address that repaid asset /// @param owner wallet address that owed asset /// @param assets amount of asset that was repaid /// @param shares amount of shares that was burn event Repay(address indexed sender, address indexed owner, uint256 assets, uint256 shares); /// @notice emitted only when collateral has been switched to other one event CollateralTypeChanged(address indexed borrower); event HooksUpdated(uint24 hooksBefore, uint24 hooksAfter); event AccruedInterest(uint256 hooksBefore); event FlashLoan(uint256 amount); event WithdrawnFeed(uint256 daoFees, uint256 deployerFees); error Unsupported(); error NothingToWithdraw(); error NotEnoughLiquidity(); error NotSolvent(); error BorrowNotPossible(); error EarnedZero(); error FlashloanFailed(); error AboveMaxLtv(); error SiloInitialized(); error OnlyHookReceiver(); error NoLiquidity(); error InputCanBeAssetsOrShares(); error CollateralSiloAlreadySet(); error RepayTooHigh(); error ZeroAmount(); error InputZeroShares(); error ReturnZeroAssets(); error ReturnZeroShares(); /// @return siloFactory The associated factory of the silo function factory() external view returns (ISiloFactory siloFactory); /// @notice Method for HookReceiver only to call on behalf of Silo /// @param _target address of the contract to call /// @param _value amount of ETH to send /// @param _callType type of the call (Call or Delegatecall) /// @param _input calldata for the call function callOnBehalfOfSilo(address _target, uint256 _value, CallType _callType, bytes calldata _input) external payable returns (bool success, bytes memory result); /// @notice Initialize Silo /// @param _siloConfig address of ISiloConfig with full config for this Silo function initialize(ISiloConfig _siloConfig) external; /// @notice Update hooks configuration for Silo /// @dev This function must be called after the hooks configuration is changed in the hook receiver function updateHooks() external; /// @notice Fetches the silo configuration contract /// @return siloConfig Address of the configuration contract associated with the silo function config() external view returns (ISiloConfig siloConfig); /// @notice Fetches the utilization data of the silo used by IRM function utilizationData() external view returns (UtilizationData memory utilizationData); /// @notice Fetches the real (available to borrow) liquidity in the silo, it does include interest /// @return liquidity The amount of liquidity function getLiquidity() external view returns (uint256 liquidity); /// @notice Determines if a borrower is solvent /// @param _borrower Address of the borrower to check for solvency /// @return True if the borrower is solvent, otherwise false function isSolvent(address _borrower) external view returns (bool); /// @notice Retrieves the raw total amount of assets based on provided type (direct storage access) function getTotalAssetsStorage(AssetType _assetType) external view returns (uint256); /// @notice Direct storage access to silo storage /// @dev See struct `SiloStorage` for more details function getSiloStorage() external view returns ( uint192 daoAndDeployerRevenue, uint64 interestRateTimestamp, uint256 protectedAssets, uint256 collateralAssets, uint256 debtAssets ); /// @notice Retrieves the total amount of collateral (borrowable) assets with interest /// @return totalCollateralAssets The total amount of assets of type 'Collateral' function getCollateralAssets() external view returns (uint256 totalCollateralAssets); /// @notice Retrieves the total amount of debt assets with interest /// @return totalDebtAssets The total amount of assets of type 'Debt' function getDebtAssets() external view returns (uint256 totalDebtAssets); /// @notice Retrieves the total amounts of collateral and protected (non-borrowable) assets /// @return totalCollateralAssets The total amount of assets of type 'Collateral' /// @return totalProtectedAssets The total amount of protected (non-borrowable) assets function getCollateralAndProtectedTotalsStorage() external view returns (uint256 totalCollateralAssets, uint256 totalProtectedAssets); /// @notice Retrieves the total amounts of collateral and debt assets /// @return totalCollateralAssets The total amount of assets of type 'Collateral' /// @return totalDebtAssets The total amount of debt assets of type 'Debt' function getCollateralAndDebtTotalsStorage() external view returns (uint256 totalCollateralAssets, uint256 totalDebtAssets); /// @notice Implements IERC4626.convertToShares for each asset type function convertToShares(uint256 _assets, AssetType _assetType) external view returns (uint256 shares); /// @notice Implements IERC4626.convertToAssets for each asset type function convertToAssets(uint256 _shares, AssetType _assetType) external view returns (uint256 assets); /// @notice Implements IERC4626.previewDeposit for protected (non-borrowable) collateral and collateral /// @dev Reverts for debt asset type function previewDeposit(uint256 _assets, CollateralType _collateralType) external view returns (uint256 shares); /// @notice Implements IERC4626.deposit for protected (non-borrowable) collateral and collateral /// @dev Reverts for debt asset type function deposit(uint256 _assets, address _receiver, CollateralType _collateralType) external returns (uint256 shares); /// @notice Implements IERC4626.previewMint for protected (non-borrowable) collateral and collateral /// @dev Reverts for debt asset type function previewMint(uint256 _shares, CollateralType _collateralType) external view returns (uint256 assets); /// @notice Implements IERC4626.mint for protected (non-borrowable) collateral and collateral /// @dev Reverts for debt asset type function mint(uint256 _shares, address _receiver, CollateralType _collateralType) external returns (uint256 assets); /// @notice Implements IERC4626.maxWithdraw for protected (non-borrowable) collateral and collateral /// @dev Reverts for debt asset type function maxWithdraw(address _owner, CollateralType _collateralType) external view returns (uint256 maxAssets); /// @notice Implements IERC4626.previewWithdraw for protected (non-borrowable) collateral and collateral /// @dev Reverts for debt asset type function previewWithdraw(uint256 _assets, CollateralType _collateralType) external view returns (uint256 shares); /// @notice Implements IERC4626.withdraw for protected (non-borrowable) collateral and collateral /// @dev Reverts for debt asset type function withdraw(uint256 _assets, address _receiver, address _owner, CollateralType _collateralType) external returns (uint256 shares); /// @notice Implements IERC4626.maxRedeem for protected (non-borrowable) collateral and collateral /// @dev Reverts for debt asset type function maxRedeem(address _owner, CollateralType _collateralType) external view returns (uint256 maxShares); /// @notice Implements IERC4626.previewRedeem for protected (non-borrowable) collateral and collateral /// @dev Reverts for debt asset type function previewRedeem(uint256 _shares, CollateralType _collateralType) external view returns (uint256 assets); /// @notice Implements IERC4626.redeem for protected (non-borrowable) collateral and collateral /// @dev Reverts for debt asset type function redeem(uint256 _shares, address _receiver, address _owner, CollateralType _collateralType) external returns (uint256 assets); /// @notice Calculates the maximum amount of assets that can be borrowed by the given address /// @param _borrower Address of the potential borrower /// @return maxAssets Maximum amount of assets that the borrower can borrow, this value is underestimated /// That means, in some cases when you borrow maxAssets, you will be able to borrow again eg. up to 2wei /// Reason for underestimation is to return value that will not cause borrow revert function maxBorrow(address _borrower) external view returns (uint256 maxAssets); /// @notice Previews the amount of shares equivalent to the given asset amount for borrowing /// @param _assets Amount of assets to preview the equivalent shares for /// @return shares Amount of shares equivalent to the provided asset amount function previewBorrow(uint256 _assets) external view returns (uint256 shares); /// @notice Allows an address to borrow a specified amount of assets /// @param _assets Amount of assets to borrow /// @param _receiver Address receiving the borrowed assets /// @param _borrower Address responsible for the borrowed assets /// @return shares Amount of shares equivalent to the borrowed assets function borrow(uint256 _assets, address _receiver, address _borrower) external returns (uint256 shares); /// @notice Calculates the maximum amount of shares that can be borrowed by the given address /// @param _borrower Address of the potential borrower /// @return maxShares Maximum number of shares that the borrower can borrow function maxBorrowShares(address _borrower) external view returns (uint256 maxShares); /// @notice Previews the amount of assets equivalent to the given share amount for borrowing /// @param _shares Amount of shares to preview the equivalent assets for /// @return assets Amount of assets equivalent to the provided share amount function previewBorrowShares(uint256 _shares) external view returns (uint256 assets); /// @notice Calculates the maximum amount of assets that can be borrowed by the given address /// @param _borrower Address of the potential borrower /// @return maxAssets Maximum amount of assets that the borrower can borrow, this value is underestimated /// That means, in some cases when you borrow maxAssets, you will be able to borrow again eg. up to 2wei /// Reason for underestimation is to return value that will not cause borrow revert function maxBorrowSameAsset(address _borrower) external view returns (uint256 maxAssets); /// @notice Allows an address to borrow a specified amount of assets that will be back up with deposit made with the /// same asset /// @param _assets Amount of assets to borrow /// @param _receiver Address receiving the borrowed assets /// @param _borrower Address responsible for the borrowed assets /// @return shares Amount of shares equivalent to the borrowed assets function borrowSameAsset(uint256 _assets, address _receiver, address _borrower) external returns (uint256 shares); /// @notice Allows a user to borrow assets based on the provided share amount /// @param _shares Amount of shares to borrow against /// @param _receiver Address to receive the borrowed assets /// @param _borrower Address responsible for the borrowed assets /// @return assets Amount of assets borrowed function borrowShares(uint256 _shares, address _receiver, address _borrower) external returns (uint256 assets); /// @notice Calculates the maximum amount an address can repay based on their debt shares /// @param _borrower Address of the borrower /// @return assets Maximum amount of assets the borrower can repay function maxRepay(address _borrower) external view returns (uint256 assets); /// @notice Provides an estimation of the number of shares equivalent to a given asset amount for repayment /// @param _assets Amount of assets to be repaid /// @return shares Estimated number of shares equivalent to the provided asset amount function previewRepay(uint256 _assets) external view returns (uint256 shares); /// @notice Repays a given asset amount and returns the equivalent number of shares /// @param _assets Amount of assets to be repaid /// @param _borrower Address of the borrower whose debt is being repaid /// @return shares The equivalent number of shares for the provided asset amount function repay(uint256 _assets, address _borrower) external returns (uint256 shares); /// @notice Calculates the maximum number of shares that can be repaid for a given borrower /// @param _borrower Address of the borrower /// @return shares The maximum number of shares that can be repaid for the borrower function maxRepayShares(address _borrower) external view returns (uint256 shares); /// @notice Provides a preview of the equivalent assets for a given number of shares to repay /// @param _shares Number of shares to preview repayment for /// @return assets Equivalent assets for the provided shares function previewRepayShares(uint256 _shares) external view returns (uint256 assets); /// @notice Allows a user to repay a loan using shares instead of assets /// @param _shares The number of shares the borrower wants to repay with /// @param _borrower The address of the borrower for whom to repay the loan /// @return assets The equivalent assets amount for the provided shares function repayShares(uint256 _shares, address _borrower) external returns (uint256 assets); /// @notice Transitions assets between borrowable (collateral) and non-borrowable (protected) states /// @dev This function allows assets to move between collateral and protected (non-borrowable) states without /// leaving the protocol /// @param _shares Amount of shares to be transitioned /// @param _owner Owner of the assets being transitioned /// @param _transitionFrom Specifies if the transition is from collateral or protected assets /// @return assets Amount of assets transitioned function transitionCollateral(uint256 _shares, address _owner, CollateralType _transitionFrom) external returns (uint256 assets); /// @notice Switches the collateral silo to this silo /// @dev Revert if the collateral silo is already set function switchCollateralToThisSilo() external; /// @notice Accrues interest for the asset and returns the accrued interest amount /// @return accruedInterest The total interest accrued during this operation function accrueInterest() external returns (uint256 accruedInterest); /// @notice only for SiloConfig function accrueInterestForConfig( address _interestRateModel, uint256 _daoFee, uint256 _deployerFee ) external; /// @notice Withdraws earned fees and distributes them to the DAO and deployer fee receivers function withdrawFees() external; }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.28; import {IERC20Metadata} from "openzeppelin5/token/ERC20/extensions/IERC20Metadata.sol"; import {IsContract} from "./IsContract.sol"; library TokenHelper { uint256 private constant _BYTES32_SIZE = 32; error TokenIsNotAContract(); function assertAndGetDecimals(address _token) internal view returns (uint256) { (bool hasMetadata, bytes memory data) = _tokenMetadataCall(_token, abi.encodeCall(IERC20Metadata.decimals, ())); // decimals() is optional in the ERC20 standard, so if metadata is not accessible // we assume there are no decimals and use 0. if (!hasMetadata) { return 0; } return abi.decode(data, (uint8)); } /// @dev Returns the symbol for the provided ERC20 token. /// An empty string is returned if the call to the token didn't succeed. /// @param _token address of the token to get the symbol for /// @return assetSymbol the token symbol function symbol(address _token) internal view returns (string memory assetSymbol) { (bool hasMetadata, bytes memory data) = _tokenMetadataCall(_token, abi.encodeCall(IERC20Metadata.symbol, ())); if (!hasMetadata || data.length == 0) { return "?"; } else if (data.length == _BYTES32_SIZE) { return string(removeZeros(data)); } else { return abi.decode(data, (string)); } } /// @dev Removes bytes with value equal to 0 from the provided byte array. /// @param _data byte array from which to remove zeroes /// @return result byte array with zeroes removed function removeZeros(bytes memory _data) internal pure returns (bytes memory result) { uint256 n = _data.length; for (uint256 i; i < n; i++) { if (_data[i] == 0) continue; result = abi.encodePacked(result, _data[i]); } } /// @dev Performs a staticcall to the token to get its metadata (symbol, decimals, name) function _tokenMetadataCall(address _token, bytes memory _data) private view returns (bool, bytes memory) { // We need to do this before the call, otherwise the call will succeed even for EOAs require(IsContract.isContract(_token), TokenIsNotAContract()); (bool success, bytes memory result) = _token.staticcall(_data); // If the call reverted we assume the token doesn't follow the metadata extension if (!success) { return (false, ""); } return (true, result); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC1363.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC165} from "./IERC165.sol"; /** * @title IERC1363 * @dev Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363]. * * Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract * after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction. */ interface IERC1363 is IERC20, IERC165 { /* * Note: the ERC-165 identifier for this interface is 0xb0202a11. * 0xb0202a11 === * bytes4(keccak256('transferAndCall(address,uint256)')) ^ * bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^ * bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^ * bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)')) ^ * bytes4(keccak256('approveAndCall(address,uint256)')) ^ * bytes4(keccak256('approveAndCall(address,uint256,bytes)')) */ /** * @dev Moves a `value` amount of tokens from the caller's account to `to` * and then calls {IERC1363Receiver-onTransferReceived} on `to`. * @param to The address which you want to transfer to. * @param value The amount of tokens to be transferred. * @return A boolean value indicating whether the operation succeeded unless throwing. */ function transferAndCall(address to, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from the caller's account to `to` * and then calls {IERC1363Receiver-onTransferReceived} on `to`. * @param to The address which you want to transfer to. * @param value The amount of tokens to be transferred. * @param data Additional data with no specified format, sent in call to `to`. * @return A boolean value indicating whether the operation succeeded unless throwing. */ function transferAndCall(address to, uint256 value, bytes calldata data) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism * and then calls {IERC1363Receiver-onTransferReceived} on `to`. * @param from The address which you want to send tokens from. * @param to The address which you want to transfer to. * @param value The amount of tokens to be transferred. * @return A boolean value indicating whether the operation succeeded unless throwing. */ function transferFromAndCall(address from, address to, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism * and then calls {IERC1363Receiver-onTransferReceived} on `to`. * @param from The address which you want to send tokens from. * @param to The address which you want to transfer to. * @param value The amount of tokens to be transferred. * @param data Additional data with no specified format, sent in call to `to`. * @return A boolean value indicating whether the operation succeeded unless throwing. */ function transferFromAndCall(address from, address to, uint256 value, bytes calldata data) external returns (bool); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`. * @param spender The address which will spend the funds. * @param value The amount of tokens to be spent. * @return A boolean value indicating whether the operation succeeded unless throwing. */ function approveAndCall(address spender, uint256 value) external returns (bool); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`. * @param spender The address which will spend the funds. * @param value The amount of tokens to be spent. * @param data Additional data with no specified format, sent in call to `spender`. * @return A boolean value indicating whether the operation succeeded unless throwing. */ function approveAndCall(address spender, uint256 value, bytes calldata data) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; import {Errors} from "./Errors.sol"; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert Errors.InsufficientBalance(address(this).balance, amount); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert Errors.FailedCall(); } } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {Errors.FailedCall} error. * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert Errors.InsufficientBalance(address(this).balance, value); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case * of an unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {Errors.FailedCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}. */ function _revert(bytes memory returndata) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert Errors.FailedCall(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC4626.sol) pragma solidity ^0.8.20; import {IERC20} from "../token/ERC20/IERC20.sol"; import {IERC20Metadata} from "../token/ERC20/extensions/IERC20Metadata.sol"; /** * @dev Interface of the ERC-4626 "Tokenized Vault Standard", as defined in * https://eips.ethereum.org/EIPS/eip-4626[ERC-4626]. */ interface IERC4626 is IERC20, IERC20Metadata { event Deposit(address indexed sender, address indexed owner, uint256 assets, uint256 shares); event Withdraw( address indexed sender, address indexed receiver, address indexed owner, uint256 assets, uint256 shares ); /** * @dev Returns the address of the underlying token used for the Vault for accounting, depositing, and withdrawing. * * - MUST be an ERC-20 token contract. * - MUST NOT revert. */ function asset() external view returns (address assetTokenAddress); /** * @dev Returns the total amount of the underlying asset that is “managed” by Vault. * * - SHOULD include any compounding that occurs from yield. * - MUST be inclusive of any fees that are charged against assets in the Vault. * - MUST NOT revert. */ function totalAssets() external view returns (uint256 totalManagedAssets); /** * @dev Returns the amount of shares that the Vault would exchange for the amount of assets provided, in an ideal * scenario where all the conditions are met. * * - MUST NOT be inclusive of any fees that are charged against assets in the Vault. * - MUST NOT show any variations depending on the caller. * - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange. * - MUST NOT revert. * * NOTE: This calculation MAY NOT reflect the “per-user” price-per-share, and instead should reflect the * “average-user’s” price-per-share, meaning what the average user should expect to see when exchanging to and * from. */ function convertToShares(uint256 assets) external view returns (uint256 shares); /** * @dev Returns the amount of assets that the Vault would exchange for the amount of shares provided, in an ideal * scenario where all the conditions are met. * * - MUST NOT be inclusive of any fees that are charged against assets in the Vault. * - MUST NOT show any variations depending on the caller. * - MUST NOT reflect slippage or other on-chain conditions, when performing the actual exchange. * - MUST NOT revert. * * NOTE: This calculation MAY NOT reflect the “per-user” price-per-share, and instead should reflect the * “average-user’s” price-per-share, meaning what the average user should expect to see when exchanging to and * from. */ function convertToAssets(uint256 shares) external view returns (uint256 assets); /** * @dev Returns the maximum amount of the underlying asset that can be deposited into the Vault for the receiver, * through a deposit call. * * - MUST return a limited value if receiver is subject to some deposit limit. * - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of assets that may be deposited. * - MUST NOT revert. */ function maxDeposit(address receiver) external view returns (uint256 maxAssets); /** * @dev Allows an on-chain or off-chain user to simulate the effects of their deposit at the current block, given * current on-chain conditions. * * - MUST return as close to and no more than the exact amount of Vault shares that would be minted in a deposit * call in the same transaction. I.e. deposit should return the same or more shares as previewDeposit if called * in the same transaction. * - MUST NOT account for deposit limits like those returned from maxDeposit and should always act as though the * deposit would be accepted, regardless if the user has enough tokens approved, etc. * - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees. * - MUST NOT revert. * * NOTE: any unfavorable discrepancy between convertToShares and previewDeposit SHOULD be considered slippage in * share price or some other type of condition, meaning the depositor will lose assets by depositing. */ function previewDeposit(uint256 assets) external view returns (uint256 shares); /** * @dev Mints shares Vault shares to receiver by depositing exactly amount of underlying tokens. * * - MUST emit the Deposit event. * - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the * deposit execution, and are accounted for during deposit. * - MUST revert if all of assets cannot be deposited (due to deposit limit being reached, slippage, the user not * approving enough underlying tokens to the Vault contract, etc). * * NOTE: most implementations will require pre-approval of the Vault with the Vault’s underlying asset token. */ function deposit(uint256 assets, address receiver) external returns (uint256 shares); /** * @dev Returns the maximum amount of the Vault shares that can be minted for the receiver, through a mint call. * - MUST return a limited value if receiver is subject to some mint limit. * - MUST return 2 ** 256 - 1 if there is no limit on the maximum amount of shares that may be minted. * - MUST NOT revert. */ function maxMint(address receiver) external view returns (uint256 maxShares); /** * @dev Allows an on-chain or off-chain user to simulate the effects of their mint at the current block, given * current on-chain conditions. * * - MUST return as close to and no fewer than the exact amount of assets that would be deposited in a mint call * in the same transaction. I.e. mint should return the same or fewer assets as previewMint if called in the * same transaction. * - MUST NOT account for mint limits like those returned from maxMint and should always act as though the mint * would be accepted, regardless if the user has enough tokens approved, etc. * - MUST be inclusive of deposit fees. Integrators should be aware of the existence of deposit fees. * - MUST NOT revert. * * NOTE: any unfavorable discrepancy between convertToAssets and previewMint SHOULD be considered slippage in * share price or some other type of condition, meaning the depositor will lose assets by minting. */ function previewMint(uint256 shares) external view returns (uint256 assets); /** * @dev Mints exactly shares Vault shares to receiver by depositing amount of underlying tokens. * * - MUST emit the Deposit event. * - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the mint * execution, and are accounted for during mint. * - MUST revert if all of shares cannot be minted (due to deposit limit being reached, slippage, the user not * approving enough underlying tokens to the Vault contract, etc). * * NOTE: most implementations will require pre-approval of the Vault with the Vault’s underlying asset token. */ function mint(uint256 shares, address receiver) external returns (uint256 assets); /** * @dev Returns the maximum amount of the underlying asset that can be withdrawn from the owner balance in the * Vault, through a withdraw call. * * - MUST return a limited value if owner is subject to some withdrawal limit or timelock. * - MUST NOT revert. */ function maxWithdraw(address owner) external view returns (uint256 maxAssets); /** * @dev Allows an on-chain or off-chain user to simulate the effects of their withdrawal at the current block, * given current on-chain conditions. * * - MUST return as close to and no fewer than the exact amount of Vault shares that would be burned in a withdraw * call in the same transaction. I.e. withdraw should return the same or fewer shares as previewWithdraw if * called * in the same transaction. * - MUST NOT account for withdrawal limits like those returned from maxWithdraw and should always act as though * the withdrawal would be accepted, regardless if the user has enough shares, etc. * - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees. * - MUST NOT revert. * * NOTE: any unfavorable discrepancy between convertToShares and previewWithdraw SHOULD be considered slippage in * share price or some other type of condition, meaning the depositor will lose assets by depositing. */ function previewWithdraw(uint256 assets) external view returns (uint256 shares); /** * @dev Burns shares from owner and sends exactly assets of underlying tokens to receiver. * * - MUST emit the Withdraw event. * - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the * withdraw execution, and are accounted for during withdraw. * - MUST revert if all of assets cannot be withdrawn (due to withdrawal limit being reached, slippage, the owner * not having enough shares, etc). * * Note that some implementations will require pre-requesting to the Vault before a withdrawal may be performed. * Those methods should be performed separately. */ function withdraw(uint256 assets, address receiver, address owner) external returns (uint256 shares); /** * @dev Returns the maximum amount of Vault shares that can be redeemed from the owner balance in the Vault, * through a redeem call. * * - MUST return a limited value if owner is subject to some withdrawal limit or timelock. * - MUST return balanceOf(owner) if owner is not subject to any withdrawal limit or timelock. * - MUST NOT revert. */ function maxRedeem(address owner) external view returns (uint256 maxShares); /** * @dev Allows an on-chain or off-chain user to simulate the effects of their redeemption at the current block, * given current on-chain conditions. * * - MUST return as close to and no more than the exact amount of assets that would be withdrawn in a redeem call * in the same transaction. I.e. redeem should return the same or more assets as previewRedeem if called in the * same transaction. * - MUST NOT account for redemption limits like those returned from maxRedeem and should always act as though the * redemption would be accepted, regardless if the user has enough shares, etc. * - MUST be inclusive of withdrawal fees. Integrators should be aware of the existence of withdrawal fees. * - MUST NOT revert. * * NOTE: any unfavorable discrepancy between convertToAssets and previewRedeem SHOULD be considered slippage in * share price or some other type of condition, meaning the depositor will lose assets by redeeming. */ function previewRedeem(uint256 shares) external view returns (uint256 assets); /** * @dev Burns exactly shares from owner and sends assets of underlying tokens to receiver. * * - MUST emit the Withdraw event. * - MAY support an additional flow in which the underlying tokens are owned by the Vault contract before the * redeem execution, and are accounted for during redeem. * - MUST revert if all of shares cannot be redeemed (due to withdrawal limit being reached, slippage, the owner * not having enough shares, etc). * * NOTE: some implementations will require pre-requesting to the Vault before a withdrawal may be performed. * Those methods should be performed separately. */ function redeem(uint256 shares, address receiver, address owner) external returns (uint256 assets); }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; import {IERC3156FlashBorrower} from "./IERC3156FlashBorrower.sol"; /// @notice https://eips.ethereum.org/EIPS/eip-3156 interface IERC3156FlashLender { /// @notice Protected deposits are not available for a flash loan. /// During the execution of the flashloan, Silo methods are not taking into consideration the fact, /// that some (or all) tokens were transferred as flashloan, therefore some methods can return invalid state /// eg. maxWithdraw can return amount that are not available to withdraw during flashlon. /// @dev Initiate a flash loan. /// @param _receiver The receiver of the tokens in the loan, and the receiver of the callback. /// @param _token The loan currency. /// @param _amount The amount of tokens lent. /// @param _data Arbitrary data structure, intended to contain user-defined parameters. function flashLoan(IERC3156FlashBorrower _receiver, address _token, uint256 _amount, bytes calldata _data) external returns (bool); /// @dev The amount of currency available to be lent. /// @param _token The loan currency. /// @return The amount of `token` that can be borrowed. function maxFlashLoan(address _token) external view returns (uint256); /// @dev The fee to be charged for a given loan. /// @param _token The loan currency. /// @param _amount The amount of tokens lent. /// @return The amount of `token` to be charged for the loan, on top of the returned principal. function flashFee(address _token, uint256 _amount) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; import {ISilo} from "./ISilo.sol"; import {ICrossReentrancyGuard} from "./ICrossReentrancyGuard.sol"; interface ISiloConfig is ICrossReentrancyGuard { struct InitData { /// @notice Can be address zero if deployer fees are not to be collected. If deployer address is zero then /// deployer fee must be zero as well. Deployer will be minted an NFT that gives the right to claim deployer /// fees. NFT can be transferred with the right to claim. address deployer; /// @notice Address of the hook receiver called on every before/after action on Silo. Hook contract also /// implements liquidation logic and veSilo gauge connection. address hookReceiver; /// @notice Deployer's fee in 18 decimals points. Deployer will earn this fee based on the interest earned /// by the Silo. Max deployer fee is set by the DAO. At deployment it is 15%. uint256 deployerFee; /// @notice DAO's fee in 18 decimals points. DAO will earn this fee based on the interest earned /// by the Silo. Acceptable fee range fee is set by the DAO. Default at deployment is 5% - 50%. uint256 daoFee; /// @notice Address of the first token address token0; /// @notice Address of the solvency oracle. Solvency oracle is used to calculate LTV when deciding if borrower /// is solvent or should be liquidated. Solvency oracle is optional and if not set price of 1 will be assumed. address solvencyOracle0; /// @notice Address of the maxLtv oracle. Max LTV oracle is used to calculate LTV when deciding if borrower /// can borrow given amount of assets. Max LTV oracle is optional and if not set it defaults to solvency /// oracle. If neither is set price of 1 will be assumed. address maxLtvOracle0; /// @notice Address of the interest rate model address interestRateModel0; /// @notice Maximum LTV for first token. maxLTV is in 18 decimals points and is used to determine, if borrower /// can borrow given amount of assets. MaxLtv is in 18 decimals points. MaxLtv must be lower or equal to LT. uint256 maxLtv0; /// @notice Liquidation threshold for first token. LT is used to calculate solvency. LT is in 18 decimals /// points. LT must not be lower than maxLTV. uint256 lt0; /// @notice minimal acceptable LTV after liquidation, in 18 decimals points uint256 liquidationTargetLtv0; /// @notice Liquidation fee for the first token in 18 decimals points. Liquidation fee is what liquidator earns /// for repaying insolvent loan. uint256 liquidationFee0; /// @notice Flashloan fee sets the cost of taking a flashloan in 18 decimals points uint256 flashloanFee0; /// @notice Indicates if a beforeQuote on oracle contract should be called before quoting price bool callBeforeQuote0; /// @notice Address of the second token address token1; /// @notice Address of the solvency oracle. Solvency oracle is used to calculate LTV when deciding if borrower /// is solvent or should be liquidated. Solvency oracle is optional and if not set price of 1 will be assumed. address solvencyOracle1; /// @notice Address of the maxLtv oracle. Max LTV oracle is used to calculate LTV when deciding if borrower /// can borrow given amount of assets. Max LTV oracle is optional and if not set it defaults to solvency /// oracle. If neither is set price of 1 will be assumed. address maxLtvOracle1; /// @notice Address of the interest rate model address interestRateModel1; /// @notice Maximum LTV for first token. maxLTV is in 18 decimals points and is used to determine, /// if borrower can borrow given amount of assets. maxLtv is in 18 decimals points uint256 maxLtv1; /// @notice Liquidation threshold for first token. LT is used to calculate solvency. LT is in 18 decimals points uint256 lt1; /// @notice minimal acceptable LTV after liquidation, in 18 decimals points uint256 liquidationTargetLtv1; /// @notice Liquidation fee is what liquidator earns for repaying insolvent loan. uint256 liquidationFee1; /// @notice Flashloan fee sets the cost of taking a flashloan in 18 decimals points uint256 flashloanFee1; /// @notice Indicates if a beforeQuote on oracle contract should be called before quoting price bool callBeforeQuote1; } struct ConfigData { uint256 daoFee; uint256 deployerFee; address silo; address token; address protectedShareToken; address collateralShareToken; address debtShareToken; address solvencyOracle; address maxLtvOracle; address interestRateModel; uint256 maxLtv; uint256 lt; uint256 liquidationTargetLtv; uint256 liquidationFee; uint256 flashloanFee; address hookReceiver; bool callBeforeQuote; } struct DepositConfig { address silo; address token; address collateralShareToken; address protectedShareToken; uint256 daoFee; uint256 deployerFee; address interestRateModel; } error OnlySilo(); error OnlySiloOrTokenOrHookReceiver(); error WrongSilo(); error OnlyDebtShareToken(); error DebtExistInOtherSilo(); error FeeTooHigh(); /// @dev It should be called on debt transfer (debt share token transfer). /// In the case if the`_recipient` doesn't have configured a collateral silo, /// it will be set to the collateral silo of the `_sender`. /// @param _sender sender address /// @param _recipient recipient address function onDebtTransfer(address _sender, address _recipient) external; /// @notice Set collateral silo. /// @dev Revert if msg.sender is not a SILO_0 or SILO_1. /// @dev Always set collateral silo the same as msg.sender. /// @param _borrower borrower address function setThisSiloAsCollateralSilo(address _borrower) external; /// @notice Set collateral silo /// @dev Revert if msg.sender is not a SILO_0 or SILO_1. /// @dev Always set collateral silo opposite to the msg.sender. /// @param _borrower borrower address function setOtherSiloAsCollateralSilo(address _borrower) external; /// @notice Accrue interest for the silo /// @param _silo silo for which accrue interest function accrueInterestForSilo(address _silo) external; /// @notice Accrue interest for both silos (SILO_0 and SILO_1 in a config) function accrueInterestForBothSilos() external; /// @notice Retrieves the collateral silo for a specific borrower. /// @dev As a user can deposit into `Silo0` and `Silo1`, this property specifies which Silo /// will be used as collateral for the debt. Later on, it will be used for max LTV and solvency checks. /// After being set, the collateral silo is never set to `address(0)` again but such getters as /// `getConfigsForSolvency`, `getConfigsForBorrow`, `getConfigsForWithdraw` will return empty /// collateral silo config if borrower doesn't have debt. /// /// In the SiloConfig collateral silo is set by the following functions: /// `onDebtTransfer` - only if the recipient doesn't have collateral silo set (inherits it from the sender) /// This function is called on debt share token transfer (debt transfer). /// `setThisSiloAsCollateralSilo` - sets the same silo as the one that calls the function. /// `setOtherSiloAsCollateralSilo` - sets the opposite silo as collateral from the one that calls the function. /// /// In the Silo collateral silo is set by the following functions: /// `borrow` - always sets opposite silo as collateral. /// If Silo0 borrows, then Silo1 will be collateral and vice versa. /// `borrowSameAsset` - always sets the same silo as collateral. /// `switchCollateralToThisSilo` - always sets the same silo as collateral. /// @param _borrower The address of the borrower for which the collateral silo is being retrieved /// @return collateralSilo The address of the collateral silo for the specified borrower function borrowerCollateralSilo(address _borrower) external view returns (address collateralSilo); /// @notice Retrieves the silo ID /// @dev Each silo is assigned a unique ID. ERC-721 token is minted with identical ID to deployer. /// An owner of that token receives the deployer fees. /// @return siloId The ID of the silo function SILO_ID() external view returns (uint256 siloId); // solhint-disable-line func-name-mixedcase /// @notice Retrieves the addresses of the two silos /// @return silo0 The address of the first silo /// @return silo1 The address of the second silo function getSilos() external view returns (address silo0, address silo1); /// @notice Retrieves the asset associated with a specific silo /// @dev This function reverts for incorrect silo address input /// @param _silo The address of the silo for which the associated asset is being retrieved /// @return asset The address of the asset associated with the specified silo function getAssetForSilo(address _silo) external view returns (address asset); /// @notice Verifies if the borrower has debt in other silo by checking the debt share token balance /// @param _thisSilo The address of the silo in respect of which the debt is checked /// @param _borrower The address of the borrower for which the debt is checked /// @return hasDebt true if the borrower has debt in other silo function hasDebtInOtherSilo(address _thisSilo, address _borrower) external view returns (bool hasDebt); /// @notice Retrieves the debt silo associated with a specific borrower /// @dev This function reverts if debt present in two silo (should not happen) /// @param _borrower The address of the borrower for which the debt silo is being retrieved function getDebtSilo(address _borrower) external view returns (address debtSilo); /// @notice Retrieves configuration data for both silos. First config is for the silo that is asking for configs. /// @param borrower borrower address for which debtConfig will be returned /// @return collateralConfig The configuration data for collateral silo (empty if there is no debt). /// @return debtConfig The configuration data for debt silo (empty if there is no debt). function getConfigsForSolvency(address borrower) external view returns (ConfigData memory collateralConfig, ConfigData memory debtConfig); /// @notice Retrieves configuration data for a specific silo /// @dev This function reverts for incorrect silo address input. /// @param _silo The address of the silo for which configuration data is being retrieved /// @return config The configuration data for the specified silo function getConfig(address _silo) external view returns (ConfigData memory config); /// @notice Retrieves configuration data for a specific silo for withdraw fn. /// @dev This function reverts for incorrect silo address input. /// @param _silo The address of the silo for which configuration data is being retrieved /// @return depositConfig The configuration data for the specified silo (always config for `_silo`) /// @return collateralConfig The configuration data for the collateral silo (empty if there is no debt) /// @return debtConfig The configuration data for the debt silo (empty if there is no debt) function getConfigsForWithdraw(address _silo, address _borrower) external view returns ( DepositConfig memory depositConfig, ConfigData memory collateralConfig, ConfigData memory debtConfig ); /// @notice Retrieves configuration data for a specific silo for borrow fn. /// @dev This function reverts for incorrect silo address input. /// @param _debtSilo The address of the silo for which configuration data is being retrieved /// @return collateralConfig The configuration data for the collateral silo (always other than `_debtSilo`) /// @return debtConfig The configuration data for the debt silo (always config for `_debtSilo`) function getConfigsForBorrow(address _debtSilo) external view returns (ConfigData memory collateralConfig, ConfigData memory debtConfig); /// @notice Retrieves fee-related information for a specific silo /// @dev This function reverts for incorrect silo address input /// @param _silo The address of the silo for which fee-related information is being retrieved. /// @return daoFee The DAO fee percentage in 18 decimals points. /// @return deployerFee The deployer fee percentage in 18 decimals points. /// @return flashloanFee The flashloan fee percentage in 18 decimals points. /// @return asset The address of the asset associated with the specified silo. function getFeesWithAsset(address _silo) external view returns (uint256 daoFee, uint256 deployerFee, uint256 flashloanFee, address asset); /// @notice Retrieves share tokens associated with a specific silo /// @dev This function reverts for incorrect silo address input /// @param _silo The address of the silo for which share tokens are being retrieved /// @return protectedShareToken The address of the protected (non-borrowable) share token /// @return collateralShareToken The address of the collateral share token /// @return debtShareToken The address of the debt share token function getShareTokens(address _silo) external view returns (address protectedShareToken, address collateralShareToken, address debtShareToken); /// @notice Retrieves the share token and the silo token associated with a specific silo /// @param _silo The address of the silo for which the share token and silo token are being retrieved /// @param _collateralType The type of collateral /// @return shareToken The address of the share token (collateral or protected collateral) /// @return asset The address of the silo token function getCollateralShareTokenAndAsset(address _silo, ISilo.CollateralType _collateralType) external view returns (address shareToken, address asset); /// @notice Retrieves the share token and the silo token associated with a specific silo /// @param _silo The address of the silo for which the share token and silo token are being retrieved /// @return shareToken The address of the share token (debt) /// @return asset The address of the silo token function getDebtShareTokenAndAsset(address _silo) external view returns (address shareToken, address asset); }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; import {IERC721} from "openzeppelin5/interfaces/IERC721.sol"; import {ISiloConfig} from "./ISiloConfig.sol"; interface ISiloFactory is IERC721 { struct Range { uint128 min; uint128 max; } /// @notice Emitted on the creation of a Silo. /// @param implementation Address of the Silo implementation. /// @param token0 Address of the first Silo token. /// @param token1 Address of the second Silo token. /// @param silo0 Address of the first Silo. /// @param silo1 Address of the second Silo. /// @param siloConfig Address of the SiloConfig. event NewSilo( address indexed implementation, address indexed token0, address indexed token1, address silo0, address silo1, address siloConfig ); event BaseURI(string newBaseURI); /// @notice Emitted on the update of DAO fee. /// @param minDaoFee Value of the new minimal DAO fee. /// @param maxDaoFee Value of the new maximal DAO fee. event DaoFeeChanged(uint128 minDaoFee, uint128 maxDaoFee); /// @notice Emitted on the update of max deployer fee. /// @param maxDeployerFee Value of the new max deployer fee. event MaxDeployerFeeChanged(uint256 maxDeployerFee); /// @notice Emitted on the update of max flashloan fee. /// @param maxFlashloanFee Value of the new max flashloan fee. event MaxFlashloanFeeChanged(uint256 maxFlashloanFee); /// @notice Emitted on the update of max liquidation fee. /// @param maxLiquidationFee Value of the new max liquidation fee. event MaxLiquidationFeeChanged(uint256 maxLiquidationFee); /// @notice Emitted on the change of DAO fee receiver. /// @param daoFeeReceiver Address of the new DAO fee receiver. event DaoFeeReceiverChanged(address daoFeeReceiver); error MissingHookReceiver(); error ZeroAddress(); error DaoFeeReceiverZeroAddress(); error EmptyToken0(); error EmptyToken1(); error MaxFeeExceeded(); error InvalidFeeRange(); error SameAsset(); error SameRange(); error InvalidIrm(); error InvalidMaxLtv(); error InvalidLt(); error InvalidDeployer(); error DaoMinRangeExceeded(); error DaoMaxRangeExceeded(); error MaxDeployerFeeExceeded(); error MaxFlashloanFeeExceeded(); error MaxLiquidationFeeExceeded(); error InvalidCallBeforeQuote(); error OracleMisconfiguration(); error InvalidQuoteToken(); error HookIsZeroAddress(); error LiquidationTargetLtvTooHigh(); /// @notice Create a new Silo. /// @param _initData Silo initialization data. /// @param _siloConfig Silo configuration. /// @param _siloImpl Address of the `Silo` implementation. /// @param _shareProtectedCollateralTokenImpl Address of the `ShareProtectedCollateralToken` implementation. /// @param _shareDebtTokenImpl Address of the `ShareDebtToken` implementation. function createSilo( ISiloConfig.InitData memory _initData, ISiloConfig _siloConfig, address _siloImpl, address _shareProtectedCollateralTokenImpl, address _shareDebtTokenImpl ) external; /// @notice NFT ownership represents the deployer fee receiver for the each Silo ID. After burning, /// the deployer fee is sent to the DAO. Burning doesn't affect Silo's behavior. It is only about fee distribution. /// @param _siloIdToBurn silo ID to burn. function burn(uint256 _siloIdToBurn) external; /// @notice Update the value of DAO fee. Updated value will be used only for a new Silos. /// Previously deployed SiloConfigs are immutable. /// @param _minFee Value of the new DAO minimal fee. /// @param _maxFee Value of the new DAO maximal fee. function setDaoFee(uint128 _minFee, uint128 _maxFee) external; /// @notice Set the new DAO fee receiver. /// @param _newDaoFeeReceiver Address of the new DAO fee receiver. function setDaoFeeReceiver(address _newDaoFeeReceiver) external; /// @notice Update the value of max deployer fee. Updated value will be used only for a new Silos max deployer /// fee validation. Previously deployed SiloConfigs are immutable. /// @param _newMaxDeployerFee Value of the new max deployer fee. function setMaxDeployerFee(uint256 _newMaxDeployerFee) external; /// @notice Update the value of max flashloan fee. Updated value will be used only for a new Silos max flashloan /// fee validation. Previously deployed SiloConfigs are immutable. /// @param _newMaxFlashloanFee Value of the new max flashloan fee. function setMaxFlashloanFee(uint256 _newMaxFlashloanFee) external; /// @notice Update the value of max liquidation fee. Updated value will be used only for a new Silos max /// liquidation fee validation. Previously deployed SiloConfigs are immutable. /// @param _newMaxLiquidationFee Value of the new max liquidation fee. function setMaxLiquidationFee(uint256 _newMaxLiquidationFee) external; /// @notice Update the base URI. /// @param _newBaseURI Value of the new base URI. function setBaseURI(string calldata _newBaseURI) external; /// @notice Acceptable DAO fee range for new Silos. Denominated in 18 decimals points. 1e18 == 100%. function daoFeeRange() external view returns (Range memory); /// @notice Max deployer fee for a new Silos. Denominated in 18 decimals points. 1e18 == 100%. function maxDeployerFee() external view returns (uint256); /// @notice Max flashloan fee for a new Silos. Denominated in 18 decimals points. 1e18 == 100%. function maxFlashloanFee() external view returns (uint256); /// @notice Max liquidation fee for a new Silos. Denominated in 18 decimals points. 1e18 == 100%. function maxLiquidationFee() external view returns (uint256); /// @notice The recipient of DAO fees. function daoFeeReceiver() external view returns (address); /// @notice Get SiloConfig address by Silo id. function idToSiloConfig(uint256 _id) external view returns (address); /// @notice Do not use this method to check if silo is secure. Anyone can deploy silo with any configuration /// and implementation. Most critical part of verification would be to check who deployed it. /// @dev True if the address was deployed using SiloFactory. function isSilo(address _silo) external view returns (bool); /// @notice Id of a next Silo to be deployed. This is an ID of non-existing Silo outside of createSilo /// function call. ID of a first Silo is 1. function getNextSiloId() external view returns (uint256); /// @notice Get the DAO and deployer fee receivers for a particular Silo address. /// @param _silo Silo address. /// @return dao DAO fee receiver. /// @return deployer Deployer fee receiver. function getFeeReceivers(address _silo) external view returns (address dao, address deployer); /// @notice Validate InitData for a new Silo. Config will be checked for the fee limits, missing parameters. /// @param _initData Silo init data. function validateSiloInitData(ISiloConfig.InitData memory _initData) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; import {ISiloConfig} from "./ISiloConfig.sol"; interface IHookReceiver { struct HookConfig { uint24 hooksBefore; uint24 hooksAfter; } event HookConfigured(address silo, uint24 hooksBefore, uint24 hooksAfter); /// @notice Initialize a hook receiver /// @param _siloConfig Silo configuration with all the details about the silo /// @param _data Data to initialize the hook receiver (if needed) function initialize(ISiloConfig _siloConfig, bytes calldata _data) external; /// @notice state of Silo before action, can be also without interest, if you need them, call silo.accrueInterest() function beforeAction(address _silo, uint256 _action, bytes calldata _input) external; function afterAction(address _silo, uint256 _action, bytes calldata _inputAndOutput) external; /// @notice return hooksBefore and hooksAfter configuration function hookReceiverConfig(address _silo) external view returns (uint24 hooksBefore, uint24 hooksAfter); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC-20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.24; library IsContract { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address _account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return _account.code.length > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../token/ERC20/IERC20.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "../utils/introspection/IERC165.sol";
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; /** * @dev Collection of common custom errors used in multiple contracts * * IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library. * It is recommended to avoid relying on the error API for critical functionality. */ library Errors { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error InsufficientBalance(uint256 balance, uint256 needed); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedCall(); /** * @dev The deployment failed. */ error FailedDeployment(); }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; interface IERC3156FlashBorrower { /// @notice During the execution of the flashloan, Silo methods are not taking into consideration the fact, /// that some (or all) tokens were transferred as flashloan, therefore some methods can return invalid state /// eg. maxWithdraw can return amount that are not available to withdraw during flashlon. /// @dev Receive a flash loan. /// @param _initiator The initiator of the loan. /// @param _token The loan currency. /// @param _amount The amount of tokens lent. /// @param _fee The additional amount of tokens to repay. /// @param _data Arbitrary data structure, intended to contain user-defined parameters. /// @return The keccak256 hash of "ERC3156FlashBorrower.onFlashLoan" function onFlashLoan(address _initiator, address _token, uint256 _amount, uint256 _fee, bytes calldata _data) external returns (bytes32); }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; interface ICrossReentrancyGuard { error CrossReentrantCall(); error CrossReentrancyNotActive(); /// @notice only silo method for cross Silo reentrancy function turnOnReentrancyProtection() external; /// @notice only silo method for cross Silo reentrancy function turnOffReentrancyProtection() external; /// @notice view method for checking cross Silo reentrancy flag /// @return entered true if the reentrancy guard is currently set to "entered", which indicates there is a /// `nonReentrant` function in the call stack. function reentrancyGuardEntered() external view returns (bool entered); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC721.sol) pragma solidity ^0.8.20; import {IERC721} from "../token/ERC721/IERC721.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[ERC]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.20; import {IERC165} from "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC-721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon * a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC-721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or * {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon * a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the address zero. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
{ "remappings": [ "forge-std/=gitmodules/forge-std/src/", "silo-foundry-utils/=gitmodules/silo-foundry-utils/contracts/", "properties/=gitmodules/crytic/properties/contracts/", "silo-core/=silo-core/", "silo-oracles/=silo-oracles/", "silo-vaults/=silo-vaults/", "ve-silo/=ve-silo/", "@openzeppelin/=gitmodules/openzeppelin-contracts-5/contracts/", "morpho-blue/=gitmodules/morpho-blue/src/", "openzeppelin5/=gitmodules/openzeppelin-contracts-5/contracts/", "openzeppelin5-upgradeable/=gitmodules/openzeppelin-contracts-upgradeable-5/contracts/", "chainlink/=gitmodules/chainlink/contracts/src/", "chainlink-ccip/=gitmodules/chainlink-ccip/contracts/src/", "uniswap/=gitmodules/uniswap/", "@uniswap/v3-core/=gitmodules/uniswap/v3-core/", "balancer-labs/v2-solidity-utils/=external/balancer-v2-monorepo/pkg/solidity-utils/contracts/", "balancer-labs/v2-interfaces/=external/balancer-v2-monorepo/pkg/interfaces/contracts/", "balancer-labs/v2-liquidity-mining/=external/balancer-v2-monorepo/pkg/liquidity-mining/contracts/", "@balancer-labs/=node_modules/@balancer-labs/", "@ensdomains/=node_modules/@ensdomains/", "@openzeppelin/contracts-upgradeable/=gitmodules/openzeppelin-contracts-upgradeable-5/contracts/", "@openzeppelin/contracts/=gitmodules/openzeppelin-contracts-5/contracts/", "@solidity-parser/=node_modules/@solidity-parser/", "ERC4626/=gitmodules/crytic/properties/lib/ERC4626/contracts/", "crytic/=gitmodules/crytic/", "ds-test/=gitmodules/openzeppelin-contracts-5/lib/forge-std/lib/ds-test/src/", "erc4626-tests/=gitmodules/openzeppelin-contracts-5/lib/erc4626-tests/", "halmos-cheatcodes/=gitmodules/morpho-blue/lib/halmos-cheatcodes/src/", "hardhat/=node_modules/hardhat/", "openzeppelin-contracts-5/=gitmodules/openzeppelin-contracts-5/", "openzeppelin-contracts-upgradeable-5/=gitmodules/openzeppelin-contracts-upgradeable-5/", "openzeppelin-contracts/=gitmodules/openzeppelin-contracts-upgradeable-5/lib/openzeppelin-contracts/", "prettier-plugin-solidity/=node_modules/prettier-plugin-solidity/", "proposals/=node_modules/proposals/", "solmate/=gitmodules/crytic/properties/lib/solmate/src/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "cancun", "viaIR": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_wrappedNativeToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[],"name":"ApprovalFailed","type":"error"},{"inputs":[],"name":"ERC20TransferFailed","type":"error"},{"inputs":[],"name":"EthTransferFailed","type":"error"},{"inputs":[],"name":"FailedCall","type":"error"},{"inputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"InsufficientBalance","type":"error"},{"inputs":[],"name":"InvalidSilo","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"TokenIsNotAContract","type":"error"},{"inputs":[],"name":"WRAPPED_NATIVE_TOKEN","outputs":[{"internalType":"contract IWrappedNativeToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"enum SiloRouter.ActionType","name":"actionType","type":"uint8"},{"internalType":"contract ISilo","name":"silo","type":"address"},{"internalType":"contract IERC20","name":"asset","type":"address"},{"internalType":"bytes","name":"options","type":"bytes"}],"internalType":"struct SiloRouter.Action[]","name":"_actions","type":"tuple[]"}],"name":"execute","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a060405234801561000f575f5ffd5b5060405161117638038061117683398101604081905261002e9161016f565b61003781610049565b506001600160a01b03166080526101d2565b6040805160048152602481019091526020810180516001600160e01b0390811663313ce56760e01b179091525f9182918291610088918691906100b916565b915091508161009a57505f9392505050565b808060200190518101906100ae919061019c565b60ff16949350505050565b5f60606001600160a01b0384163b6100e4576040516373d39f9d60e01b815260040160405180910390fd5b5f5f856001600160a01b0316856040516100fe91906101bc565b5f60405180830381855afa9150503d805f8114610136576040519150601f19603f3d011682016040523d82523d5f602084013e61013b565b606091505b509150915081610160575f60405180602001604052805f815250935093505050610168565b600193509150505b9250929050565b5f6020828403121561017f575f5ffd5b81516001600160a01b0381168114610195575f5ffd5b9392505050565b5f602082840312156101ac575f5ffd5b815160ff81168114610195575f5ffd5b5f82518060208501845e5f920191825250919050565b608051610f716102055f395f81816047015281816106bb0152818161070801528181610a3f0152610a7a0152610f715ff3fe60806040526004361061002b575f3560e01c80631b3f8c5e14610036578063c3cd3eda14610085575f5ffd5b3661003257005b5f5ffd5b348015610041575f5ffd5b506100697f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200160405180910390f35b610098610093366004610cdd565b61009a565b005b805f5b818110156100d9576100d18484838181106100ba576100ba610d4e565b90506020028101906100cc9190610d62565b610222565b60010161009d565b505f5b818110156101a1575f8484838181106100f7576100f7610d4e565b90506020028101906101099190610d62565b61011a906060810190604001610d94565b6040516370a0823160e01b81523060048201529091505f906001600160a01b038316906370a0823190602401602060405180830381865afa158015610161573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101859190610daf565b905080156101975761019782826106b9565b50506001016100dc565b5034158015906101b057504715155b1561021d576040515f90339047908381818185875af1925050503d805f81146101f4576040519150601f19603f3d011682016040523d82523d5f602084013e6101f9565b606091505b505090508061021b57604051630db2c7f160e31b815260040160405180910390fd5b505b505050565b5f6102306020830183610dda565b600381111561024157610241610dc6565b0361032d575f6102546060830183610df8565b8101906102619190610e42565b905061027d6102766060840160408501610d94565b82516107e5565b6102a76102906060840160408501610d94565b6102a06040850160208601610d94565b8351610878565b6102b76040830160208401610d94565b6001600160a01b031663b7ec8d4b825f01513384602001516040518463ffffffff1660e01b81526004016102ed93929190610ea7565b6020604051808303815f875af1158015610309573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061021d9190610daf565b600161033c6020830183610dda565b600381111561034d5761034d610dc6565b036104bb575f6103606060830183610df8565b81019061036d9190610e42565b90505f6103806040840160208501610d94565b825160405163b3d7f6b960e01b81526001600160a01b03929092169163b3d7f6b9916103b29160040190815260200190565b602060405180830381865afa1580156103cd573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103f19190610daf565b905061040c6104066060850160408601610d94565b826107e5565b61043561041f6060850160408601610d94565b61042f6040860160208701610d94565b83610878565b6104456040840160208501610d94565b6001600160a01b031663c061ddc7835f01513385602001516040518463ffffffff1660e01b815260040161047b93929190610ea7565b6020604051808303815f875af1158015610497573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061021b9190610daf565b60026104ca6020830183610dda565b60038111156104db576104db610dc6565b0361056b575f6104ee6060830183610df8565b8101906104fb9190610e42565b90506105106102766060840160408501610d94565b6105236102906060840160408501610d94565b6105336040830160208401610d94565b815160405163acb7081560e01b815260048101919091523360248201526001600160a01b03919091169063acb70815906044016102ed565b600361057a6020830183610dda565b600381111561058b5761058b610dc6565b036106b6575f61059e6060830183610df8565b8101906105ab9190610e42565b90505f6105be6040840160208501610d94565b825160405163e72bec5760e01b81526001600160a01b03929092169163e72bec57916105f09160040190815260200190565b602060405180830381865afa15801561060b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061062f9190610daf565b90506106446104066060850160408601610d94565b61065761041f6060850160408601610d94565b6106676040840160208501610d94565b825160405163e36754eb60e01b815260048101919091523360248201526001600160a01b03919091169063e36754eb906044016020604051808303815f875af1158015610497573d5f5f3e3d5ffd5b50565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036107cd57604051632e1a7d4d60e01b8152600481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690632e1a7d4d906024015f604051808303815f87803b158015610751575f5ffd5b505af1158015610763573d5f5f3e3d5ffd5b50506040515f925033915083908381818185875af1925050503d805f81146107a6576040519150601f19603f3d011682016040523d82523d5f602084013e6107ab565b606091505b505090508061021d57604051633c9fd93960e21b815260040160405180910390fd5b6107e16001600160a01b03831633836109d4565b5050565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610829573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061084d9190610daf565b905081811061085c575f610866565b6108668183610ee7565b9150811561021d5761021d8383610a33565b604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015282919085169063dd62ed3e90604401602060405180830381865afa1580156108c5573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108e99190610daf565b101561021d576040516001600160a01b0383811660248301525f1960448301525f91829186169060640160408051601f198184030181529181526020820180516001600160e01b031663095ea7b360e01b179052516109489190610f06565b5f604051808303815f865af19150503d805f8114610981576040519150601f19603f3d011682016040523d82523d5f602084013e610986565b606091505b50915091508180156109b05750805115806109b05750808060200190518101906109b09190610f1c565b6109cd576040516340b27c2160e11b815260040160405180910390fd5b5050505050565b6040516001600160a01b0383811660248301526044820183905261021d91859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050610b01565b3415801590610a7357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b15610aec577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004015f604051808303818588803b158015610ad1575f5ffd5b505af1158015610ae3573d5f5f3e3d5ffd5b50505050505050565b6107e16001600160a01b038316333084610b67565b5f610b156001600160a01b03841683610ba0565b905080515f14158015610b39575080806020019051810190610b379190610f1c565b155b1561021d57604051635274afe760e01b81526001600160a01b03841660048201526024015b60405180910390fd5b6040516001600160a01b03848116602483015283811660448301526064820183905261021b9186918216906323b872dd90608401610a01565b6060610bad83835f610bb6565b90505b92915050565b606081471015610be25760405163cf47918160e01b815247600482015260248101839052604401610b5e565b5f5f856001600160a01b03168486604051610bfd9190610f06565b5f6040518083038185875af1925050503d805f8114610c37576040519150601f19603f3d011682016040523d82523d5f602084013e610c3c565b606091505b5091509150610c4c868383610c58565b925050505b9392505050565b606082610c6d57610c6882610cb4565b610c51565b8151158015610c8457506001600160a01b0384163b155b15610cad57604051639996b31560e01b81526001600160a01b0385166004820152602401610b5e565b5080610c51565b805115610cc45780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b5f5f60208385031215610cee575f5ffd5b823567ffffffffffffffff811115610d04575f5ffd5b8301601f81018513610d14575f5ffd5b803567ffffffffffffffff811115610d2a575f5ffd5b8560208260051b8401011115610d3e575f5ffd5b6020919091019590945092505050565b634e487b7160e01b5f52603260045260245ffd5b5f8235607e19833603018112610d76575f5ffd5b9190910192915050565b6001600160a01b03811681146106b6575f5ffd5b5f60208284031215610da4575f5ffd5b8135610c5181610d80565b5f60208284031215610dbf575f5ffd5b5051919050565b634e487b7160e01b5f52602160045260245ffd5b5f60208284031215610dea575f5ffd5b813560048110610c51575f5ffd5b5f5f8335601e19843603018112610e0d575f5ffd5b83018035915067ffffffffffffffff821115610e27575f5ffd5b602001915036819003821315610e3b575f5ffd5b9250929050565b5f6040828403128015610e53575f5ffd5b506040805190810167ffffffffffffffff81118282101715610e8357634e487b7160e01b5f52604160045260245ffd5b60405282358152602083013560028110610e9b575f5ffd5b60208201529392505050565b8381526001600160a01b03831660208201526060810160028310610ed957634e487b7160e01b5f52602160045260245ffd5b826040830152949350505050565b81810381811115610bb057634e487b7160e01b5f52601160045260245ffd5b5f82518060208501845e5f920191825250919050565b5f60208284031215610f2c575f5ffd5b81518015158114610c51575f5ffdfea26469706673582212203d54a22f989f4ec074e7ed39ae7071da7a23b558f8eee439bd7f3adae06c58b364736f6c634300081c0033000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad38
Deployed Bytecode
0x60806040526004361061002b575f3560e01c80631b3f8c5e14610036578063c3cd3eda14610085575f5ffd5b3661003257005b5f5ffd5b348015610041575f5ffd5b506100697f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad3881565b6040516001600160a01b03909116815260200160405180910390f35b610098610093366004610cdd565b61009a565b005b805f5b818110156100d9576100d18484838181106100ba576100ba610d4e565b90506020028101906100cc9190610d62565b610222565b60010161009d565b505f5b818110156101a1575f8484838181106100f7576100f7610d4e565b90506020028101906101099190610d62565b61011a906060810190604001610d94565b6040516370a0823160e01b81523060048201529091505f906001600160a01b038316906370a0823190602401602060405180830381865afa158015610161573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101859190610daf565b905080156101975761019782826106b9565b50506001016100dc565b5034158015906101b057504715155b1561021d576040515f90339047908381818185875af1925050503d805f81146101f4576040519150601f19603f3d011682016040523d82523d5f602084013e6101f9565b606091505b505090508061021b57604051630db2c7f160e31b815260040160405180910390fd5b505b505050565b5f6102306020830183610dda565b600381111561024157610241610dc6565b0361032d575f6102546060830183610df8565b8101906102619190610e42565b905061027d6102766060840160408501610d94565b82516107e5565b6102a76102906060840160408501610d94565b6102a06040850160208601610d94565b8351610878565b6102b76040830160208401610d94565b6001600160a01b031663b7ec8d4b825f01513384602001516040518463ffffffff1660e01b81526004016102ed93929190610ea7565b6020604051808303815f875af1158015610309573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061021d9190610daf565b600161033c6020830183610dda565b600381111561034d5761034d610dc6565b036104bb575f6103606060830183610df8565b81019061036d9190610e42565b90505f6103806040840160208501610d94565b825160405163b3d7f6b960e01b81526001600160a01b03929092169163b3d7f6b9916103b29160040190815260200190565b602060405180830381865afa1580156103cd573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103f19190610daf565b905061040c6104066060850160408601610d94565b826107e5565b61043561041f6060850160408601610d94565b61042f6040860160208701610d94565b83610878565b6104456040840160208501610d94565b6001600160a01b031663c061ddc7835f01513385602001516040518463ffffffff1660e01b815260040161047b93929190610ea7565b6020604051808303815f875af1158015610497573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061021b9190610daf565b60026104ca6020830183610dda565b60038111156104db576104db610dc6565b0361056b575f6104ee6060830183610df8565b8101906104fb9190610e42565b90506105106102766060840160408501610d94565b6105236102906060840160408501610d94565b6105336040830160208401610d94565b815160405163acb7081560e01b815260048101919091523360248201526001600160a01b03919091169063acb70815906044016102ed565b600361057a6020830183610dda565b600381111561058b5761058b610dc6565b036106b6575f61059e6060830183610df8565b8101906105ab9190610e42565b90505f6105be6040840160208501610d94565b825160405163e72bec5760e01b81526001600160a01b03929092169163e72bec57916105f09160040190815260200190565b602060405180830381865afa15801561060b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061062f9190610daf565b90506106446104066060850160408601610d94565b61065761041f6060850160408601610d94565b6106676040840160208501610d94565b825160405163e36754eb60e01b815260048101919091523360248201526001600160a01b03919091169063e36754eb906044016020604051808303815f875af1158015610497573d5f5f3e3d5ffd5b50565b7f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad386001600160a01b0316826001600160a01b0316036107cd57604051632e1a7d4d60e01b8152600481018290527f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad386001600160a01b031690632e1a7d4d906024015f604051808303815f87803b158015610751575f5ffd5b505af1158015610763573d5f5f3e3d5ffd5b50506040515f925033915083908381818185875af1925050503d805f81146107a6576040519150601f19603f3d011682016040523d82523d5f602084013e6107ab565b606091505b505090508061021d57604051633c9fd93960e21b815260040160405180910390fd5b6107e16001600160a01b03831633836109d4565b5050565b6040516370a0823160e01b81523060048201525f906001600160a01b038416906370a0823190602401602060405180830381865afa158015610829573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061084d9190610daf565b905081811061085c575f610866565b6108668183610ee7565b9150811561021d5761021d8383610a33565b604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015282919085169063dd62ed3e90604401602060405180830381865afa1580156108c5573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108e99190610daf565b101561021d576040516001600160a01b0383811660248301525f1960448301525f91829186169060640160408051601f198184030181529181526020820180516001600160e01b031663095ea7b360e01b179052516109489190610f06565b5f604051808303815f865af19150503d805f8114610981576040519150601f19603f3d011682016040523d82523d5f602084013e610986565b606091505b50915091508180156109b05750805115806109b05750808060200190518101906109b09190610f1c565b6109cd576040516340b27c2160e11b815260040160405180910390fd5b5050505050565b6040516001600160a01b0383811660248301526044820183905261021d91859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050610b01565b3415801590610a7357507f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad386001600160a01b0316826001600160a01b0316145b15610aec577f000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad386001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004015f604051808303818588803b158015610ad1575f5ffd5b505af1158015610ae3573d5f5f3e3d5ffd5b50505050505050565b6107e16001600160a01b038316333084610b67565b5f610b156001600160a01b03841683610ba0565b905080515f14158015610b39575080806020019051810190610b379190610f1c565b155b1561021d57604051635274afe760e01b81526001600160a01b03841660048201526024015b60405180910390fd5b6040516001600160a01b03848116602483015283811660448301526064820183905261021b9186918216906323b872dd90608401610a01565b6060610bad83835f610bb6565b90505b92915050565b606081471015610be25760405163cf47918160e01b815247600482015260248101839052604401610b5e565b5f5f856001600160a01b03168486604051610bfd9190610f06565b5f6040518083038185875af1925050503d805f8114610c37576040519150601f19603f3d011682016040523d82523d5f602084013e610c3c565b606091505b5091509150610c4c868383610c58565b925050505b9392505050565b606082610c6d57610c6882610cb4565b610c51565b8151158015610c8457506001600160a01b0384163b155b15610cad57604051639996b31560e01b81526001600160a01b0385166004820152602401610b5e565b5080610c51565b805115610cc45780518082602001fd5b60405163d6bda27560e01b815260040160405180910390fd5b5f5f60208385031215610cee575f5ffd5b823567ffffffffffffffff811115610d04575f5ffd5b8301601f81018513610d14575f5ffd5b803567ffffffffffffffff811115610d2a575f5ffd5b8560208260051b8401011115610d3e575f5ffd5b6020919091019590945092505050565b634e487b7160e01b5f52603260045260245ffd5b5f8235607e19833603018112610d76575f5ffd5b9190910192915050565b6001600160a01b03811681146106b6575f5ffd5b5f60208284031215610da4575f5ffd5b8135610c5181610d80565b5f60208284031215610dbf575f5ffd5b5051919050565b634e487b7160e01b5f52602160045260245ffd5b5f60208284031215610dea575f5ffd5b813560048110610c51575f5ffd5b5f5f8335601e19843603018112610e0d575f5ffd5b83018035915067ffffffffffffffff821115610e27575f5ffd5b602001915036819003821315610e3b575f5ffd5b9250929050565b5f6040828403128015610e53575f5ffd5b506040805190810167ffffffffffffffff81118282101715610e8357634e487b7160e01b5f52604160045260245ffd5b60405282358152602083013560028110610e9b575f5ffd5b60208201529392505050565b8381526001600160a01b03831660208201526060810160028310610ed957634e487b7160e01b5f52602160045260245ffd5b826040830152949350505050565b81810381811115610bb057634e487b7160e01b5f52601160045260245ffd5b5f82518060208501845e5f920191825250919050565b5f60208284031215610f2c575f5ffd5b81518015158114610c51575f5ffdfea26469706673582212203d54a22f989f4ec074e7ed39ae7071da7a23b558f8eee439bd7f3adae06c58b364736f6c634300081c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad38
-----Decoded View---------------
Arg [0] : _wrappedNativeToken (address): 0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000039e2fb66102314ce7b64ce5ce3e5183bc94ad38
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.