Source Code
Overview
HYPE Balance
HYPE Value
$0.00Cross-Chain Transactions
Loading...
Loading
Contract Name:
StrategyFixedReportTrigger
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
No with 200 runs
Other Settings:
shanghai EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.23;
import {CustomStrategyTriggerBase} from "@periphery/ReportTrigger/CustomStrategyTriggerBase.sol";
import {ITokenizedStrategy} from "@tokenized-strategy/interfaces/ITokenizedStrategy.sol";
import {ICommonReportTrigger} from "../interfaces/ICommonReportTrigger.sol";
contract StrategyFixedReportTrigger is CustomStrategyTriggerBase {
// ===============================================================
// Storage
// ===============================================================
/// @notice Minimum delay between reports
uint256 public minReportDelay;
// ===============================================================
// Constants
// ===============================================================
/// @notice SMS on hyperliquid
address public constant SMS = 0x5e061C197D69c0e809e9269eD212730D91E8cB39;
/// @notice Common trigger contract
ICommonReportTrigger public constant COMMON_REPORT_TRIGGER =
ICommonReportTrigger(0xA045D4dAeA28BA7Bfe234c96eAa03daFae85A147);
// ===============================================================
// Constructor
// ===============================================================
constructor() {
minReportDelay = 1 days;
}
// ===============================================================
// View functions
// ===============================================================
/// @inheritdoc CustomStrategyTriggerBase
function reportTrigger(
address _strategy
) external view override returns (bool, bytes memory) {
return block.timestamp - ITokenizedStrategy(_strategy).lastReport() > minReportDelay
? COMMON_REPORT_TRIGGER.defaultStrategyReportTrigger(_strategy)
: (false, bytes("!delay"));
}
// ===============================================================
// Governance functions
// ===============================================================
/// @notice Set the minimum report delay
/// @dev Can only be called by the SMS
/// @param _minReportDelay The new minimum report delay in seconds
function setMinReportDelay(
uint256 _minReportDelay
) external {
require(msg.sender == SMS, "!SMS");
require(_minReportDelay != 0, "!minReportDelay");
minReportDelay = _minReportDelay;
}
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity >=0.8.18;
/**
* @title Custom Strategy Trigger Base.
* @author Yearn.finance
*/
abstract contract CustomStrategyTriggerBase {
/**
* @notice Returns if a strategy should report any accrued profits/losses.
* @dev This can be used to implement a custom trigger if the default
* flow is not desired by a strategies management.
*
* Should complete any needed checks and then return `true` if the strategy
* should report and `false` if not.
*
* @param _strategy The address of the strategy to check.
* @return . Bool representing if the strategy is ready to report.
* @return . Bytes with either the calldata or reason why False.
*/
function reportTrigger(
address _strategy
) external view virtual returns (bool, bytes memory);
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity >=0.8.18;
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {IERC4626} from "@openzeppelin/contracts/interfaces/IERC4626.sol";
import {IERC20Permit} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol";
// Interface that implements the 4626 standard and the implementation functions
interface ITokenizedStrategy is IERC4626, IERC20Permit {
/*//////////////////////////////////////////////////////////////
EVENTS
//////////////////////////////////////////////////////////////*/
event StrategyShutdown();
event NewTokenizedStrategy(address indexed strategy, address indexed asset, string apiVersion);
event Reported(uint256 profit, uint256 loss, uint256 protocolFees, uint256 performanceFees);
event UpdatePerformanceFeeRecipient(address indexed newPerformanceFeeRecipient);
event UpdateKeeper(address indexed newKeeper);
event UpdatePerformanceFee(uint16 newPerformanceFee);
event UpdateManagement(address indexed newManagement);
event UpdateEmergencyAdmin(address indexed newEmergencyAdmin);
event UpdateProfitMaxUnlockTime(uint256 newProfitMaxUnlockTime);
event UpdatePendingManagement(address indexed newPendingManagement);
/*//////////////////////////////////////////////////////////////
INITIALIZATION
//////////////////////////////////////////////////////////////*/
function initialize(
address _asset,
string memory _name,
address _management,
address _performanceFeeRecipient,
address _keeper
) external;
/*//////////////////////////////////////////////////////////////
NON-STANDARD 4626 OPTIONS
//////////////////////////////////////////////////////////////*/
function withdraw(uint256 assets, address receiver, address owner, uint256 maxLoss) external returns (uint256);
function redeem(uint256 shares, address receiver, address owner, uint256 maxLoss) external returns (uint256);
function maxWithdraw(address owner, uint256 /*maxLoss*/ ) external view returns (uint256);
function maxRedeem(address owner, uint256 /*maxLoss*/ ) external view returns (uint256);
/*//////////////////////////////////////////////////////////////
MODIFIER HELPERS
//////////////////////////////////////////////////////////////*/
function requireManagement(
address _sender
) external view;
function requireKeeperOrManagement(
address _sender
) external view;
function requireEmergencyAuthorized(
address _sender
) external view;
/*//////////////////////////////////////////////////////////////
KEEPERS FUNCTIONS
//////////////////////////////////////////////////////////////*/
function tend() external;
function report() external returns (uint256 _profit, uint256 _loss);
/*//////////////////////////////////////////////////////////////
CONSTANTS
//////////////////////////////////////////////////////////////*/
function MAX_FEE() external view returns (uint16);
function FACTORY() external view returns (address);
/*//////////////////////////////////////////////////////////////
GETTERS
//////////////////////////////////////////////////////////////*/
function apiVersion() external view returns (string memory);
function pricePerShare() external view returns (uint256);
function management() external view returns (address);
function pendingManagement() external view returns (address);
function keeper() external view returns (address);
function emergencyAdmin() external view returns (address);
function performanceFee() external view returns (uint16);
function performanceFeeRecipient() external view returns (address);
function fullProfitUnlockDate() external view returns (uint256);
function profitUnlockingRate() external view returns (uint256);
function profitMaxUnlockTime() external view returns (uint256);
function lastReport() external view returns (uint256);
function isShutdown() external view returns (bool);
function unlockedShares() external view returns (uint256);
/*//////////////////////////////////////////////////////////////
SETTERS
//////////////////////////////////////////////////////////////*/
function setPendingManagement(
address
) external;
function acceptManagement() external;
function setKeeper(
address _keeper
) external;
function setEmergencyAdmin(
address _emergencyAdmin
) external;
function setPerformanceFee(
uint16 _performanceFee
) external;
function setPerformanceFeeRecipient(
address _performanceFeeRecipient
) external;
function setProfitMaxUnlockTime(
uint256 _profitMaxUnlockTime
) external;
function setName(
string calldata _newName
) external;
function shutdownStrategy() external;
function emergencyWithdraw(
uint256 _amount
) external;
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.23;
interface ICommonReportTrigger {
/**
* @notice The default trigger logic for a strategy.
* @dev This is kept in a separate function so it can still
* be used by custom triggers even if extra checks are needed
* first or after.
*
* This will also check if a custom acceptable base fee has been set
* by the strategies management.
*
* In order for the default flow to return true the strategy must:
*
* 1. Not be shutdown.
* 2. Have funds.
* 3. The current network base fee be below the `acceptableBaseFee`.
* 4. The time since the last report be > the strategies `profitMaxUnlockTime`.
*
* @param _strategy The address of the strategy to check the trigger for.
* @return . Bool representing if the strategy is ready to report.
* @return . Bytes with either the calldata or reason why False.
*/
function defaultStrategyReportTrigger(
address _strategy
) external view returns (bool, bytes memory);
/**
* @notice The default trigger logic for a vault.
* @dev This is kept in a separate function so it can still
* be used by custom triggers even if extra checks are needed
* before or after.
*
* This will also check if a custom acceptable base fee has been set
* by the vault management for the `_strategy`.
*
* In order for the default flow to return true:
*
* 1. The vault must not be shutdown.
* 2. The strategy must be active and have debt allocated.
* 3. The current network base fee be below the `acceptableBaseFee`.
* 4. The time since the strategies last report be > the vaults `profitMaxUnlockTime`.
*
* @param _vault The address of the vault.
* @param _strategy The address of the strategy to report.
* @return . Bool if the strategy should report to the vault.
* @return . Bytes with either the calldata or reason why False.
*/
function defaultVaultReportTrigger(address _vault, address _strategy) external view returns (bool, bytes memory);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(
address account
) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(address from, address to, uint256 amount) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/**
* @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC4626.sol)
pragma solidity ^0.8.0;
import "../token/ERC20/IERC20.sol";
import "../token/ERC20/extensions/IERC20Metadata.sol";
/**
* @dev Interface of the ERC4626 "Tokenized Vault Standard", as defined in
* https://eips.ethereum.org/EIPS/eip-4626[ERC-4626].
*
* _Available since v4.7._
*/
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
// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*
* ==== Security Considerations
*
* There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
* expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
* considered as an intention to spend the allowance in any specific way. The second is that because permits have
* built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
* take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
* generally recommended is:
*
* ```solidity
* function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
* try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
* doThing(..., value);
* }
*
* function doThing(..., uint256 value) public {
* token.safeTransferFrom(msg.sender, address(this), value);
* ...
* }
* ```
*
* Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
* `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
* {SafeERC20-safeTransferFrom}).
*
* Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
* contracts should have entry points that don't rely on permit.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*
* CAUTION: See Security Considerations above.
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(
address owner
) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
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 amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(
address account
) external view returns (uint256);
/**
* @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` 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 amount) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
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: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}{
"remappings": [
"@openzeppelin/=lib/openzeppelin-contracts/",
"forge-std/=lib/forge-std/src/",
"@tokenized-strategy/=lib/tokenized-strategy/src/",
"@periphery/=lib/tokenized-strategy-periphery/src/",
"@vault-periphery/=lib/vault-periphery/src/",
"@yearn-vaults/=lib/yearn-vaults-v3/contracts/",
"ds-test/=lib/forge-std/lib/ds-test/src/",
"erc4626-tests/=lib/tokenized-strategy/lib/erc4626-tests/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/",
"openzeppelin/=lib/openzeppelin-contracts/contracts/",
"tokenized-strategy 2/=lib/tokenized-strategy-periphery/lib/tokenized-strategy 2/src/",
"tokenized-strategy-periphery/=lib/tokenized-strategy-periphery/",
"tokenized-strategy/=lib/tokenized-strategy/",
"vault-periphery/=lib/vault-periphery/",
"yearn-vaults-v3 2/=lib/tokenized-strategy-periphery/lib/",
"yearn-vaults-v3/=lib/yearn-vaults-v3/"
],
"optimizer": {
"enabled": false,
"runs": 200
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "shanghai",
"viaIR": false,
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"COMMON_REPORT_TRIGGER","outputs":[{"internalType":"contract ICommonReportTrigger","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SMS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minReportDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_strategy","type":"address"}],"name":"reportTrigger","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minReportDelay","type":"uint256"}],"name":"setMinReportDelay","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561000f575f80fd5b50620151805f8190555061093a806100265f395ff3fe608060405234801561000f575f80fd5b5060043610610055575f3560e01c8063111ebcfb1461005957806339a172a81461007757806395e80c5014610093578063b2c6779b146100b1578063bcb6728e146100e2575b5f80fd5b610061610100565b60405161006e9190610398565b60405180910390f35b610091600480360381019061008c91906103f5565b610118565b005b61009b6101e5565b6040516100a8919061042f565b60405180910390f35b6100cb60048036038101906100c69190610472565b6101ea565b6040516100d9929190610541565b60405180910390f35b6100ea610341565b6040516100f791906105ca565b60405180910390f35b735e061c197d69c0e809e9269ed212730d91e8cb3981565b735e061c197d69c0e809e9269ed212730d91e8cb3973ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461019a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101919061063d565b60405180910390fd5b5f81036101dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101d3906106a5565b60405180910390fd5b805f8190555050565b5f5481565b5f60605f548373ffffffffffffffffffffffffffffffffffffffff1663c3535b526040518163ffffffff1660e01b8152600401602060405180830381865afa158015610238573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061025c91906106d7565b42610267919061072f565b116102a8575f6040518060400160405280600681526020017f2164656c61790000000000000000000000000000000000000000000000000000815250610338565b73a045d4daea28ba7bfe234c96eaa03dafae85a14773ffffffffffffffffffffffffffffffffffffffff166310fcd40d846040518263ffffffff1660e01b81526004016102f59190610398565b5f60405180830381865afa15801561030f573d5f803e3d5ffd5b505050506040513d5f823e3d601f19601f8201168201806040525081019061033791906108aa565b5b91509150915091565b73a045d4daea28ba7bfe234c96eaa03dafae85a14781565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61038282610359565b9050919050565b61039281610378565b82525050565b5f6020820190506103ab5f830184610389565b92915050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b6103d4816103c2565b81146103de575f80fd5b50565b5f813590506103ef816103cb565b92915050565b5f6020828403121561040a576104096103ba565b5b5f610417848285016103e1565b91505092915050565b610429816103c2565b82525050565b5f6020820190506104425f830184610420565b92915050565b61045181610378565b811461045b575f80fd5b50565b5f8135905061046c81610448565b92915050565b5f60208284031215610487576104866103ba565b5b5f6104948482850161045e565b91505092915050565b5f8115159050919050565b6104b18161049d565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156104ee5780820151818401526020810190506104d3565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610513826104b7565b61051d81856104c1565b935061052d8185602086016104d1565b610536816104f9565b840191505092915050565b5f6040820190506105545f8301856104a8565b81810360208301526105668184610509565b90509392505050565b5f819050919050565b5f61059261058d61058884610359565b61056f565b610359565b9050919050565b5f6105a382610578565b9050919050565b5f6105b482610599565b9050919050565b6105c4816105aa565b82525050565b5f6020820190506105dd5f8301846105bb565b92915050565b5f82825260208201905092915050565b7f21534d53000000000000000000000000000000000000000000000000000000005f82015250565b5f6106276004836105e3565b9150610632826105f3565b602082019050919050565b5f6020820190508181035f8301526106548161061b565b9050919050565b7f216d696e5265706f727444656c617900000000000000000000000000000000005f82015250565b5f61068f600f836105e3565b915061069a8261065b565b602082019050919050565b5f6020820190508181035f8301526106bc81610683565b9050919050565b5f815190506106d1816103cb565b92915050565b5f602082840312156106ec576106eb6103ba565b5b5f6106f9848285016106c3565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610739826103c2565b9150610744836103c2565b925082820390508181111561075c5761075b610702565b5b92915050565b61076b8161049d565b8114610775575f80fd5b50565b5f8151905061078681610762565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6107ca826104f9565b810181811067ffffffffffffffff821117156107e9576107e8610794565b5b80604052505050565b5f6107fb6103b1565b905061080782826107c1565b919050565b5f67ffffffffffffffff82111561082657610825610794565b5b61082f826104f9565b9050602081019050919050565b5f61084e6108498461080c565b6107f2565b90508281526020810184848401111561086a57610869610790565b5b6108758482856104d1565b509392505050565b5f82601f8301126108915761089061078c565b5b81516108a184826020860161083c565b91505092915050565b5f80604083850312156108c0576108bf6103ba565b5b5f6108cd85828601610778565b925050602083015167ffffffffffffffff8111156108ee576108ed6103be565b5b6108fa8582860161087d565b915050925092905056fea264697066735822122091ac1d34fded2532e7b4c4c4fbbc395bf69dcfc9c539fb51864d3d23c411e7c964736f6c63430008170033
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610055575f3560e01c8063111ebcfb1461005957806339a172a81461007757806395e80c5014610093578063b2c6779b146100b1578063bcb6728e146100e2575b5f80fd5b610061610100565b60405161006e9190610398565b60405180910390f35b610091600480360381019061008c91906103f5565b610118565b005b61009b6101e5565b6040516100a8919061042f565b60405180910390f35b6100cb60048036038101906100c69190610472565b6101ea565b6040516100d9929190610541565b60405180910390f35b6100ea610341565b6040516100f791906105ca565b60405180910390f35b735e061c197d69c0e809e9269ed212730d91e8cb3981565b735e061c197d69c0e809e9269ed212730d91e8cb3973ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461019a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101919061063d565b60405180910390fd5b5f81036101dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101d3906106a5565b60405180910390fd5b805f8190555050565b5f5481565b5f60605f548373ffffffffffffffffffffffffffffffffffffffff1663c3535b526040518163ffffffff1660e01b8152600401602060405180830381865afa158015610238573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061025c91906106d7565b42610267919061072f565b116102a8575f6040518060400160405280600681526020017f2164656c61790000000000000000000000000000000000000000000000000000815250610338565b73a045d4daea28ba7bfe234c96eaa03dafae85a14773ffffffffffffffffffffffffffffffffffffffff166310fcd40d846040518263ffffffff1660e01b81526004016102f59190610398565b5f60405180830381865afa15801561030f573d5f803e3d5ffd5b505050506040513d5f823e3d601f19601f8201168201806040525081019061033791906108aa565b5b91509150915091565b73a045d4daea28ba7bfe234c96eaa03dafae85a14781565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61038282610359565b9050919050565b61039281610378565b82525050565b5f6020820190506103ab5f830184610389565b92915050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b6103d4816103c2565b81146103de575f80fd5b50565b5f813590506103ef816103cb565b92915050565b5f6020828403121561040a576104096103ba565b5b5f610417848285016103e1565b91505092915050565b610429816103c2565b82525050565b5f6020820190506104425f830184610420565b92915050565b61045181610378565b811461045b575f80fd5b50565b5f8135905061046c81610448565b92915050565b5f60208284031215610487576104866103ba565b5b5f6104948482850161045e565b91505092915050565b5f8115159050919050565b6104b18161049d565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156104ee5780820151818401526020810190506104d3565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610513826104b7565b61051d81856104c1565b935061052d8185602086016104d1565b610536816104f9565b840191505092915050565b5f6040820190506105545f8301856104a8565b81810360208301526105668184610509565b90509392505050565b5f819050919050565b5f61059261058d61058884610359565b61056f565b610359565b9050919050565b5f6105a382610578565b9050919050565b5f6105b482610599565b9050919050565b6105c4816105aa565b82525050565b5f6020820190506105dd5f8301846105bb565b92915050565b5f82825260208201905092915050565b7f21534d53000000000000000000000000000000000000000000000000000000005f82015250565b5f6106276004836105e3565b9150610632826105f3565b602082019050919050565b5f6020820190508181035f8301526106548161061b565b9050919050565b7f216d696e5265706f727444656c617900000000000000000000000000000000005f82015250565b5f61068f600f836105e3565b915061069a8261065b565b602082019050919050565b5f6020820190508181035f8301526106bc81610683565b9050919050565b5f815190506106d1816103cb565b92915050565b5f602082840312156106ec576106eb6103ba565b5b5f6106f9848285016106c3565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610739826103c2565b9150610744836103c2565b925082820390508181111561075c5761075b610702565b5b92915050565b61076b8161049d565b8114610775575f80fd5b50565b5f8151905061078681610762565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6107ca826104f9565b810181811067ffffffffffffffff821117156107e9576107e8610794565b5b80604052505050565b5f6107fb6103b1565b905061080782826107c1565b919050565b5f67ffffffffffffffff82111561082657610825610794565b5b61082f826104f9565b9050602081019050919050565b5f61084e6108498461080c565b6107f2565b90508281526020810184848401111561086a57610869610790565b5b6108758482856104d1565b509392505050565b5f82601f8301126108915761089061078c565b5b81516108a184826020860161083c565b91505092915050565b5f80604083850312156108c0576108bf6103ba565b5b5f6108cd85828601610778565b925050602083015167ffffffffffffffff8111156108ee576108ed6103be565b5b6108fa8582860161087d565b915050925092905056fea264697066735822122091ac1d34fded2532e7b4c4c4fbbc395bf69dcfc9c539fb51864d3d23c411e7c964736f6c63430008170033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in HYPE
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
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.