Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
UserIncentive
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 800 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./interfaces/IERC20C.sol"; import "./interfaces/IUserIncentive.sol"; contract UserIncentive is IUserIncentive, Ownable { address public rewardTokenAddress; uint256 public rewardTokenBalance; uint256 public rewardRatio; address immutable strategyAddress; modifier onlyStrategy() { require(strategyAddress == msg.sender, "Ownable: caller is not the strategy"); _; } constructor(address _strategyAddress) public { strategyAddress = _strategyAddress; } function depositReward( address _rewardTokenAddress, uint256 _tokenAmount, uint256 _ratio ) external override onlyOwner { // Transfer remaining rewards back to caller if(rewardTokenBalance > 0) { IERC20C(rewardTokenAddress).transfer(msg.sender, rewardTokenBalance); } // Transfer new rewards from caller into contract IERC20C(_rewardTokenAddress).transferFrom(msg.sender, address(this), _tokenAmount); // Set Ratio and update lockout rewardRatio = _ratio; rewardTokenBalance = _tokenAmount; rewardTokenAddress = _rewardTokenAddress; } function addRewardTokens(uint256 _tokenAmount) external override onlyOwner { IERC20C(rewardTokenAddress).transferFrom(msg.sender, address(this), _tokenAmount); rewardTokenBalance = rewardTokenBalance + _tokenAmount; } function setRewardRatio(uint256 _ratio) external override onlyOwner { rewardRatio = _ratio; } function quoteReward(uint256 _fERC20Burned) public view override returns (uint256) { if (rewardRatio == 0) { return 0; } uint256 rewardAmount = (_fERC20Burned * rewardRatio) / (10**18); // If the reward amount is greater than balance, transfer entire balance if (rewardAmount > rewardTokenBalance) { rewardAmount = rewardTokenBalance; } return rewardAmount; } function claimReward(uint256 _fERC20Burned, address _yieldTo) external override onlyStrategy { uint256 rewardAmount = quoteReward(_fERC20Burned); if (rewardAmount == 0) { return; } // Transfer and update balance locally IERC20C(rewardTokenAddress).transfer(_yieldTo, rewardAmount); rewardTokenBalance = rewardTokenBalance - rewardAmount; emit RewardClaimed(rewardTokenAddress, msg.sender); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface IERC20C { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transfer(address recipient, uint256 amount) external returns (bool); function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); function mint(address account, uint256 amount) external; function burn(uint256 amount) external; function burnFrom(address from, uint256 amount) external; function name() external returns (string memory); function symbol() external returns (string memory); function decimals() external returns (uint8); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface IUserIncentive { event RewardClaimed(address _rewardToken, address indexed _address); // This will be called by the Strategy to claim rewards for the user // This should be permissioned such that only the Strategy address can call function claimReward(uint256 _fERC20Burned, address _yieldTo) external; // This is a view function to determine how many reward tokens will be paid out // providing ??? fERC20 tokens are burned function quoteReward(uint256 _fERC20Burned) external view returns (uint256); // Administrator: setting the reward ratio function setRewardRatio(uint256 _ratio) external; // Administrator: adding the reward tokens function addRewardTokens(uint256 _tokenAmount) external; // Administrator: depositing the reward tokens function depositReward( address _rewardTokenAddress, uint256 _tokenAmount, uint256 _ratio ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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; } }
{ "metadata": { "bytecodeHash": "none" }, "optimizer": { "enabled": true, "runs": 800 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_strategyAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_rewardToken","type":"address"},{"indexed":true,"internalType":"address","name":"_address","type":"address"}],"name":"RewardClaimed","type":"event"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"addRewardTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fERC20Burned","type":"uint256"},{"internalType":"address","name":"_yieldTo","type":"address"}],"name":"claimReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_rewardTokenAddress","type":"address"},{"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"internalType":"uint256","name":"_ratio","type":"uint256"}],"name":"depositReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fERC20Burned","type":"uint256"}],"name":"quoteReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardTokenBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ratio","type":"uint256"}],"name":"setRewardRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a060405234801561001057600080fd5b50604051610a6d380380610a6d83398101604081905261002f91610099565b61003833610049565b6001600160a01b03166080526100c9565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100ab57600080fd5b81516001600160a01b03811681146100c257600080fd5b9392505050565b6080516109896100e4600039600061056701526109896000f3fe608060405234801561001057600080fd5b50600436106100c95760003560e01c806375824f2311610081578063de225d951161005b578063de225d9514610172578063e70eb39214610185578063f2fde38b1461019857600080fd5b806375824f23146101455780638da5cb5b1461014e578063a943600d1461015f57600080fd5b806360c9e243116100b257806360c9e24314610113578063646033bc14610126578063715018a61461013d57600080fd5b8063125f9e33146100ce57806358eb9700146100fe575b600080fd5b6001546100e1906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b61011161010c36600461081e565b6101ab565b005b610111610121366004610853565b6102a9565b61012f60035481565b6040519081526020016100f5565b610111610451565b61012f60025481565b6000546001600160a01b03166100e1565b61011161016d36600461081e565b6104b7565b61012f61018036600461081e565b610516565b610111610193366004610886565b610565565b6101116101a63660046108b2565b6106df565b6000546001600160a01b0316331461020a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001546040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b03909116906323b872dd90606401602060405180830381600087803b15801561025c57600080fd5b505af1158015610270573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061029491906108d4565b50806002546102a3919061090c565b60025550565b6000546001600160a01b031633146103035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610201565b600254156103955760015460025460405163a9059cbb60e01b815233600482015260248101919091526001600160a01b039091169063a9059cbb90604401602060405180830381600087803b15801561035b57600080fd5b505af115801561036f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061039391906108d4565b505b6040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b038416906323b872dd90606401602060405180830381600087803b1580156103e357600080fd5b505af11580156103f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061041b91906108d4565b506003556002556001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6000546001600160a01b031633146104ab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610201565b6104b560006107c1565b565b6000546001600160a01b031633146105115760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610201565b600355565b60006003546000141561052b57506000919050565b6000670de0b6b3a7640000600354846105449190610924565b61054e9190610943565b905060025481111561055f57506002545b92915050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633146105e95760405162461bcd60e51b815260206004820152602360248201527f4f776e61626c653a2063616c6c6572206973206e6f742074686520737472617460448201526265677960e81b6064820152608401610201565b60006105f483610516565b90508061060057505050565b60015460405163a9059cbb60e01b81526001600160a01b038481166004830152602482018490529091169063a9059cbb90604401602060405180830381600087803b15801561064e57600080fd5b505af1158015610662573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061068691906108d4565b50806002546106959190610965565b6002556001546040516001600160a01b03909116815233907fda71d66f7d6458815341057f19159e8dea719ad40dc75f124a3d7aefe7dbb9d49060200160405180910390a2505050565b6000546001600160a01b031633146107395760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610201565b6001600160a01b0381166107b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610201565b6107be816107c1565b50565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020828403121561083057600080fd5b5035919050565b80356001600160a01b038116811461084e57600080fd5b919050565b60008060006060848603121561086857600080fd5b61087184610837565b95602085013595506040909401359392505050565b6000806040838503121561089957600080fd5b823591506108a960208401610837565b90509250929050565b6000602082840312156108c457600080fd5b6108cd82610837565b9392505050565b6000602082840312156108e657600080fd5b815180151581146108cd57600080fd5b634e487b7160e01b600052601160045260246000fd5b6000821982111561091f5761091f6108f6565b500190565b600081600019048311821515161561093e5761093e6108f6565b500290565b60008261096057634e487b7160e01b600052601260045260246000fd5b500490565b600082821015610977576109776108f6565b50039056fea164736f6c6343000809000a000000000000000000000000543134ec56ee444403461519c1ec8590c7475897
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100c95760003560e01c806375824f2311610081578063de225d951161005b578063de225d9514610172578063e70eb39214610185578063f2fde38b1461019857600080fd5b806375824f23146101455780638da5cb5b1461014e578063a943600d1461015f57600080fd5b806360c9e243116100b257806360c9e24314610113578063646033bc14610126578063715018a61461013d57600080fd5b8063125f9e33146100ce57806358eb9700146100fe575b600080fd5b6001546100e1906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b61011161010c36600461081e565b6101ab565b005b610111610121366004610853565b6102a9565b61012f60035481565b6040519081526020016100f5565b610111610451565b61012f60025481565b6000546001600160a01b03166100e1565b61011161016d36600461081e565b6104b7565b61012f61018036600461081e565b610516565b610111610193366004610886565b610565565b6101116101a63660046108b2565b6106df565b6000546001600160a01b0316331461020a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001546040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b03909116906323b872dd90606401602060405180830381600087803b15801561025c57600080fd5b505af1158015610270573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061029491906108d4565b50806002546102a3919061090c565b60025550565b6000546001600160a01b031633146103035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610201565b600254156103955760015460025460405163a9059cbb60e01b815233600482015260248101919091526001600160a01b039091169063a9059cbb90604401602060405180830381600087803b15801561035b57600080fd5b505af115801561036f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061039391906108d4565b505b6040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b038416906323b872dd90606401602060405180830381600087803b1580156103e357600080fd5b505af11580156103f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061041b91906108d4565b506003556002556001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6000546001600160a01b031633146104ab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610201565b6104b560006107c1565b565b6000546001600160a01b031633146105115760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610201565b600355565b60006003546000141561052b57506000919050565b6000670de0b6b3a7640000600354846105449190610924565b61054e9190610943565b905060025481111561055f57506002545b92915050565b7f000000000000000000000000543134ec56ee444403461519c1ec8590c74758976001600160a01b031633146105e95760405162461bcd60e51b815260206004820152602360248201527f4f776e61626c653a2063616c6c6572206973206e6f742074686520737472617460448201526265677960e81b6064820152608401610201565b60006105f483610516565b90508061060057505050565b60015460405163a9059cbb60e01b81526001600160a01b038481166004830152602482018490529091169063a9059cbb90604401602060405180830381600087803b15801561064e57600080fd5b505af1158015610662573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061068691906108d4565b50806002546106959190610965565b6002556001546040516001600160a01b03909116815233907fda71d66f7d6458815341057f19159e8dea719ad40dc75f124a3d7aefe7dbb9d49060200160405180910390a2505050565b6000546001600160a01b031633146107395760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610201565b6001600160a01b0381166107b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610201565b6107be816107c1565b50565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006020828403121561083057600080fd5b5035919050565b80356001600160a01b038116811461084e57600080fd5b919050565b60008060006060848603121561086857600080fd5b61087184610837565b95602085013595506040909401359392505050565b6000806040838503121561089957600080fd5b823591506108a960208401610837565b90509250929050565b6000602082840312156108c457600080fd5b6108cd82610837565b9392505050565b6000602082840312156108e657600080fd5b815180151581146108cd57600080fd5b634e487b7160e01b600052601160045260246000fd5b6000821982111561091f5761091f6108f6565b500190565b600081600019048311821515161561093e5761093e6108f6565b500290565b60008261096057634e487b7160e01b600052601260045260246000fd5b500490565b600082821015610977576109776108f6565b50039056fea164736f6c6343000809000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000543134ec56ee444403461519c1ec8590c7475897
-----Decoded View---------------
Arg [0] : _strategyAddress (address): 0x543134eC56eE444403461519C1Ec8590C7475897
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000543134ec56ee444403461519c1ec8590c7475897
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.