Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 663 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim Reward | 13581656 | 1093 days ago | IN | 0 ETH | 0.01110063 | ||||
Claim Reward | 13523677 | 1102 days ago | IN | 0 ETH | 0.01170714 | ||||
Claim Reward | 13505531 | 1104 days ago | IN | 0 ETH | 0.0088127 | ||||
Claim Reward | 13478670 | 1109 days ago | IN | 0 ETH | 0.0055079 | ||||
Claim Reward | 13446849 | 1114 days ago | IN | 0 ETH | 0.00372162 | ||||
Claim Reward | 13439935 | 1115 days ago | IN | 0 ETH | 0.00530399 | ||||
Claim Reward | 13416535 | 1118 days ago | IN | 0 ETH | 0.00661319 | ||||
Claim Reward | 13395710 | 1122 days ago | IN | 0 ETH | 0.0086639 | ||||
Claim Reward | 13390735 | 1122 days ago | IN | 0 ETH | 0.00497411 | ||||
Claim Reward | 13370305 | 1126 days ago | IN | 0 ETH | 0.0096393 | ||||
Claim Reward | 13370280 | 1126 days ago | IN | 0 ETH | 0.0114673 | ||||
Claim Reward | 13357716 | 1128 days ago | IN | 0 ETH | 0.00714514 | ||||
Claim Reward | 13344302 | 1130 days ago | IN | 0 ETH | 0.00369431 | ||||
Claim Reward | 13333316 | 1131 days ago | IN | 0 ETH | 0.0048586 | ||||
Claim Reward | 13330254 | 1132 days ago | IN | 0 ETH | 0.01004573 | ||||
Claim Reward | 13322886 | 1133 days ago | IN | 0 ETH | 0.00627171 | ||||
Claim Reward | 13322878 | 1133 days ago | IN | 0 ETH | 0.00715625 | ||||
Claim Reward | 13318969 | 1134 days ago | IN | 0 ETH | 0.00534705 | ||||
Claim Reward | 13318960 | 1134 days ago | IN | 0 ETH | 0.00599495 | ||||
Claim Reward | 13318959 | 1134 days ago | IN | 0 ETH | 0.00581476 | ||||
Claim Reward | 13313229 | 1135 days ago | IN | 0 ETH | 0.00617593 | ||||
Claim Reward | 13311481 | 1135 days ago | IN | 0 ETH | 0.0083516 | ||||
Claim Reward | 13282766 | 1139 days ago | IN | 0 ETH | 0.00243589 | ||||
Claim Reward | 13282766 | 1139 days ago | IN | 0 ETH | 0.0057834 | ||||
Claim Reward | 13281488 | 1140 days ago | IN | 0 ETH | 0.00532057 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
PositionRewards
Compiler Version
v0.6.12+commit.27d51765
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./interfaces/IPositionRewards.sol"; contract PositionRewards is IPositionRewards, Ownable { using SafeMath for uint256; using SafeERC20 for IERC20; uint256 public constant PRECISION_DECIMALS = 1e10; mapping(address => uint256) public unclaimedPositionUnits; uint256 public maxClaimPeriod = 30 days; uint256 public maxRewardTime = 3 days; uint256 public maxRewardTimePercentageGain = 25e8; uint256 public maxDailyReward = 2300e18; uint256 public maxSingleReward = 800e18; uint256 public rewardMaxLinearPositionUnits = 30000e6; uint256 public rewardMaxLinearGOVI = 100e18; uint256 public lastMaxSingleReward; uint256 public lastRewardMaxLinearPositionUnits; uint256 public lastRewardMaxLinearGOVI; uint256 public rewardCalculationValidTimestamp; uint256 public todayClaimedRewards; uint256 public lastClaimedDay; address public rewarder; IERC20 private immutable cviToken; Platform public platform; constructor(IERC20 _cviToken) public { cviToken = _cviToken; } modifier onlyRewarder { require(msg.sender == rewarder, "Not allowed"); _; } function calculatePositionReward(uint256 _positionUnits, uint256 _positionTimestamp) public view override returns (uint256 rewardAmount) { require(_positionUnits > 0, "Position units must be positive"); uint256 _rewardMaxLinearPositionUnits; uint256 _rewardMaxLinearGOVI; uint256 _maxSingleReward; if (block.timestamp > rewardCalculationValidTimestamp) { _rewardMaxLinearPositionUnits = rewardMaxLinearPositionUnits; _rewardMaxLinearGOVI = rewardMaxLinearGOVI; _maxSingleReward = maxSingleReward; } else { _rewardMaxLinearPositionUnits = lastRewardMaxLinearPositionUnits; _rewardMaxLinearGOVI = lastRewardMaxLinearGOVI; _maxSingleReward = lastMaxSingleReward; } uint256 factoredPositionUnits = _positionUnits.mul(calculatePositionUnitsFactor(_positionTimestamp)) / PRECISION_DECIMALS; if (factoredPositionUnits <= _rewardMaxLinearPositionUnits) { rewardAmount = factoredPositionUnits.mul(_rewardMaxLinearGOVI) / _rewardMaxLinearPositionUnits; } else { (uint256 alpha, uint256 beta, uint256 gamma) = calculateAlphaBetaGamma(_maxSingleReward, _rewardMaxLinearPositionUnits, _rewardMaxLinearGOVI); // reward = c - (alpha / ((x + beta)^2 + gamma) uint256 betaPlusFactoredPositionUnits = beta.add(factoredPositionUnits); rewardAmount = _maxSingleReward.sub(alpha.div(betaPlusFactoredPositionUnits.mul(betaPlusFactoredPositionUnits).add(gamma))); } require(rewardAmount <= _maxSingleReward, "Reward too big"); } function reward(address _account, uint256 _positionUnits) external override onlyRewarder { require(_positionUnits > 0, "Position units must be positive"); unclaimedPositionUnits[_account] = unclaimedPositionUnits[_account].add(_positionUnits); } function claimReward() external override { require(address(platform) != address(0), "Platform not set"); (uint256 positionUnitsAmount, uint256 creationTimestamp,,) = platform.positions(msg.sender); require(positionUnitsAmount > 0, "No opened position"); require(block.timestamp <= creationTimestamp + maxClaimPeriod, "Claim too late"); uint256 today = block.timestamp / 1 days; uint256 positionDay = creationTimestamp / 1 days; require(today > positionDay, "Claim too early"); // Reward position units will be the min from currently open and currently available // This resolves the issue of claiming after a merge uint256 rewardPositionUnits = unclaimedPositionUnits[msg.sender]; if (positionUnitsAmount < rewardPositionUnits) { rewardPositionUnits = positionUnitsAmount; } require(rewardPositionUnits > 0, "No reward"); uint256 rewardAmount = calculatePositionReward(rewardPositionUnits, creationTimestamp); uint256 _maxDailyReward = maxDailyReward; uint256 updatedDailyClaimedReward = 0; if (today > lastClaimedDay) { lastClaimedDay = today; } else { updatedDailyClaimedReward = todayClaimedRewards; } updatedDailyClaimedReward = updatedDailyClaimedReward.add(rewardAmount); require(updatedDailyClaimedReward <= _maxDailyReward, "Daily reward spent"); todayClaimedRewards = updatedDailyClaimedReward; unclaimedPositionUnits[msg.sender] = 0; cviToken.safeTransfer(msg.sender, rewardAmount); } function setRewarder(address _newRewarder) external override onlyOwner { rewarder = _newRewarder; } function setMaxDailyReward(uint256 _newMaxDailyReward) external override onlyOwner { maxDailyReward = _newMaxDailyReward; } function setRewardCalculationParameters(uint256 _newMaxSingleReward, uint256 _rewardMaxLinearPositionUnits, uint256 _rewardMaxLinearGOVI) external override onlyOwner { require(_newMaxSingleReward > 0, "Max reward must be positive"); require(_rewardMaxLinearPositionUnits > 0, "Max linear x must be positive"); require(_rewardMaxLinearGOVI > 0, "Max linear y must be positive"); // Makes sure alpha and beta values for new values are positive calculateAlphaBetaGamma(_newMaxSingleReward, _rewardMaxLinearPositionUnits, _rewardMaxLinearGOVI); lastRewardMaxLinearPositionUnits = rewardMaxLinearPositionUnits; rewardMaxLinearPositionUnits = _rewardMaxLinearPositionUnits; lastRewardMaxLinearGOVI = rewardMaxLinearGOVI; rewardMaxLinearGOVI = _rewardMaxLinearGOVI; lastMaxSingleReward = maxSingleReward; maxSingleReward = _newMaxSingleReward; rewardCalculationValidTimestamp = block.timestamp.add(maxClaimPeriod); } function setMaxClaimPeriod(uint256 _newMaxClaimPeriod) external override onlyOwner { maxClaimPeriod = _newMaxClaimPeriod; } function setMaxRewardTime(uint256 _newMaxRewardTime) external override onlyOwner { require (_newMaxRewardTime > 0, "Max reward time not positive"); maxRewardTime = _newMaxRewardTime; } function setMaxRewardTimePercentageGain(uint256 _newMaxRewardTimePercentageGain) external override onlyOwner { maxRewardTimePercentageGain = _newMaxRewardTimePercentageGain; } function setPlatform(Platform _newPlatform) external override onlyOwner { platform = _newPlatform; } function calculateAlphaBetaGamma(uint256 _maxSingleReward, uint256 _rewardMaxLinearX, uint256 _rewardMaxLinearY) private pure returns (uint256 alpha, uint256 beta, uint256 gamma) { // beta = c / a (a = y0/x0) beta = _maxSingleReward.mul(_rewardMaxLinearX) / _rewardMaxLinearY; // alpha = (2 * c ^ 2 * beta) / a (a = y0/x0) alpha = _maxSingleReward.mul(_maxSingleReward).mul(2).mul(beta).mul(_rewardMaxLinearX) / _rewardMaxLinearY; // gamma = (2 * c * beta - a * beta ^ 2) / a (a=y0/x0) gamma = (_maxSingleReward.mul(2).mul(beta).mul(_rewardMaxLinearX) / _rewardMaxLinearY).sub(beta.mul(beta)); require(alpha > 0, "Alpha must be positive"); require(beta > 0, "Beta must be positive"); require(gamma > 0, "Gamma must be positive"); } function calculatePositionUnitsFactor(uint256 _positionTimestamp) private view returns (uint256) { uint256 _maxRewardTime = maxRewardTime; uint256 time = block.timestamp.sub(_positionTimestamp); if (time > _maxRewardTime) { time = _maxRewardTime; } return PRECISION_DECIMALS.add(time.mul(maxRewardTimePercentageGain) / _maxRewardTime); } }
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.6.12; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "./utils/SafeMath16.sol"; import "./interfaces/IPlatform.sol"; contract Platform is IPlatform, Ownable, ERC20 { using SafeERC20 for IERC20; using SafeMath for uint256; struct Position { uint256 positionUnitsAmount; uint256 creationTimestamp; uint256 pendingFees; // Funding fees calculated for earlier positions before merge (if occured) uint256 positionAddressesIndex; } uint256 public constant MAX_FEE_PERCENTAGE = 10000; uint256 public constant MAX_PERCENTAGE = 1000000; uint256 public constant PRECISION_DECIMALS = 1e10; uint256 public constant MAX_CVI_VALUE = 20000; uint256 public immutable initialTokenToLPTokenRate; IERC20 private token; ICVIOracle private cviOracle; IRewards private rewards; ILiquidation private liquidation; IFeesModel private feesModel; IFeesCalculator private feesCalculator; IFeesCollector private feesCollector; uint256 public lpsLockupPeriod = 3 days; uint256 public buyersLockupPeriod = 24 hours; uint256 public totalPositionUnitsAmount; uint256 public totalFundingFeesAmount; bool public emergencyWithdrawAllowed = false; mapping(address => uint256) public lastDepositTimestamp; mapping(address => Position) public positions; mapping(address => bool) public revertLockedTransfered; address[] private holdersAddresses; constructor(IERC20 _token, string memory _lpTokenName, string memory _lpTokenSymbolName, uint256 _initialTokenToLPTokenRate, IFeesModel _feesModel, IFeesCalculator _feesCalculator, ICVIOracle _cviOracle, ILiquidation _liquidation) public ERC20(_lpTokenName, _lpTokenSymbolName) { token = _token; initialTokenToLPTokenRate = _initialTokenToLPTokenRate; feesModel = _feesModel; feesCalculator = _feesCalculator; cviOracle = _cviOracle; liquidation = _liquidation; } function deposit(uint256 _tokenAmount, uint256 _minLPTokenAmount) external override returns (uint256 lpTokenAmount) { lpTokenAmount = _deposit(_tokenAmount, _minLPTokenAmount, true); } function withdraw(uint256 _tokenAmount, uint256 _maxLPTokenBurnAmount) external override returns (uint256 burntAmount, uint256 withdrawnAmount) { (burntAmount, withdrawnAmount) = _withdraw(_tokenAmount, false, _maxLPTokenBurnAmount, true); } function withdrawLPTokens(uint256 _lpTokensAmount) external override returns (uint256 burntAmount, uint256 withdrawnAmount) { require(_lpTokensAmount > 0, "Amount must be positive"); (burntAmount, withdrawnAmount) = _withdraw(0, true, _lpTokensAmount, true); } function openPosition(uint256 _tokenAmount, uint16 _maxCVI) external override returns (uint256 positionUnitsAmount) { positionUnitsAmount = _openPosition(_tokenAmount, _maxCVI, true); } function closePosition(uint256 _positionUnitsAmount, uint16 _minCVI) external override returns (uint256 tokenAmount) { tokenAmount = _closePosition(_positionUnitsAmount, _minCVI, true); } function liquidatePositions(address[] calldata _positionOwners) external override returns (uint256 finderFeeAmount) { finderFeeAmount = _liquidatePositions(_positionOwners); } function setCVIOracle(ICVIOracle _newOracle) external override onlyOwner { cviOracle = _newOracle; } function setRewards(IRewards _newRewards) external override onlyOwner { rewards = _newRewards; } function setLiquidation(ILiquidation _newLiquidation) external override onlyOwner { liquidation = _newLiquidation; } function setFeesCollector(IFeesCollector _newCollector) external override onlyOwner { feesCollector = _newCollector; if (address(_newCollector) != address(0)) { token.safeApprove(address(feesCollector), uint256(-1)); } } function setFeesModel(IFeesModel _newModel) external override onlyOwner { feesModel = _newModel; } function setLPLockupPeriod(uint256 _newLPLockupPeriod) external override onlyOwner { require(_newLPLockupPeriod <= 2 weeks, "Lockup too long"); lpsLockupPeriod = _newLPLockupPeriod; } function setBuyersLockupPeriod(uint256 _newBuyersLockupPeriod) external override onlyOwner { require(_newBuyersLockupPeriod <= 1 weeks, "Lockup too long"); buyersLockupPeriod = _newBuyersLockupPeriod; } function setRevertLockedTransfers(bool _revertLockedTransfers) external override { revertLockedTransfered[msg.sender] = _revertLockedTransfers; } function setFeesCalculator(IFeesCalculator _newCalculator) external override onlyOwner { feesCalculator = _newCalculator; } function setEmergencyWithdrawAllowed(bool _newEmergencyWithdrawAllowed) external override onlyOwner { emergencyWithdrawAllowed = _newEmergencyWithdrawAllowed; } function getToken() external view override returns (IERC20) { return token; } function calculatePositionBalance(address _positionAddress) public view override returns (uint256 currentPositionBalance, bool isPositive, uint256 positionUnitsAmount) { positionUnitsAmount = positions[_positionAddress].positionUnitsAmount; require(positionUnitsAmount > 0, "No position for given address"); (currentPositionBalance, isPositive) = _calculatePositionBalance(_positionAddress); } function calculatePositionPendingFees(address _positionAddress) public view override returns (uint256 pendingFees) { Position memory position = positions[_positionAddress]; pendingFees = position.pendingFees.add(feesModel.calculateFundingFees(position.creationTimestamp, position.positionUnitsAmount)) .add(feesModel.calculateFundingFeesAddendum(position.positionUnitsAmount)); } function totalBalance() public view override returns (uint256 balance) { (uint16 cviValue,) = cviOracle.getCVILatestRoundData(); return token.balanceOf(address(this)).sub(totalPositionUnitsAmount.mul(cviValue).div(MAX_CVI_VALUE)).add(totalFundingFeesAmount); } function totalBalanceWithAddendum() public view override returns (uint256 balance) { return totalBalance().add(feesModel.calculateFundingFeesAddendum(totalPositionUnitsAmount)); } function getLiquidableAddresses() external view override returns (address[] memory) { address[] memory addressesToLiquidate = new address[](holdersAddresses.length); uint256 liquidationAddressesAmount = 0; for (uint256 i = 0; i < holdersAddresses.length; i++) { (uint256 currentPositionBalance, bool isBalancePositive) = _calculatePositionBalance(holdersAddresses[i]); if (liquidation.isLiquidationCandidate(currentPositionBalance, isBalancePositive, positions[holdersAddresses[i]].positionUnitsAmount)) { addressesToLiquidate[liquidationAddressesAmount] = holdersAddresses[i]; liquidationAddressesAmount = liquidationAddressesAmount.add(1); } } address[] memory addressesToActuallyLiquidate = new address[](liquidationAddressesAmount); for (uint256 i = 0; i < liquidationAddressesAmount; i++) { addressesToActuallyLiquidate[i] = addressesToLiquidate[i]; } return addressesToActuallyLiquidate; } function _deposit(uint256 _tokenAmount, uint256 _minLPTokenAmount, bool _transferTokens) internal returns (uint256 lpTokenAmount) { require(_tokenAmount > 0, "Tokens amount must be positive"); lastDepositTimestamp[msg.sender] = block.timestamp; updateSnapshots(); uint256 depositFee = _tokenAmount.mul(uint256(feesCalculator.depositFeePercent())).div(MAX_FEE_PERCENTAGE); uint256 tokenAmountToDeposit = _tokenAmount.sub(depositFee); uint256 supply = totalSupply(); uint256 balance = totalBalance(); if (supply > 0 && balance > 0) { lpTokenAmount = tokenAmountToDeposit.mul(supply).div(balance); } else { lpTokenAmount = tokenAmountToDeposit.mul(initialTokenToLPTokenRate); } emit Deposit(msg.sender, _tokenAmount, lpTokenAmount, depositFee); require(lpTokenAmount >= _minLPTokenAmount, "Too few LP tokens"); require(lpTokenAmount > 0, "Too few tokens"); _mint(msg.sender, lpTokenAmount); if (_transferTokens) { token.safeTransferFrom(msg.sender, address(this), _tokenAmount); } collectProfit(depositFee); } function _withdraw(uint256 _tokenAmount, bool _shouldBurnMax, uint256 _maxLPTokenBurnAmount, bool _transferTokens) internal returns (uint256 burntAmount, uint256 withdrawnAmount) { require(lastDepositTimestamp[msg.sender].add(lpsLockupPeriod) <= block.timestamp, "Funds are locked"); updateSnapshots(); if (_shouldBurnMax) { burntAmount = _maxLPTokenBurnAmount; _tokenAmount = burntAmount.mul(totalBalance()).div(totalSupply()); } else { require(_tokenAmount > 0, "Tokens amount must be positive"); // Note: rounding up (ceiling) the to-burn amount to prevent precision loss burntAmount = _tokenAmount.mul(totalSupply()).sub(1).div(totalBalance()).add(1); require(burntAmount <= _maxLPTokenBurnAmount, "Too much LP tokens to burn"); } require(burntAmount <= balanceOf(msg.sender), "Not enough LP tokens for account"); uint256 withdrawFee = _tokenAmount.mul(uint256(feesCalculator.withdrawFeePercent())).div(MAX_FEE_PERCENTAGE); withdrawnAmount = _tokenAmount.sub(withdrawFee); require(emergencyWithdrawAllowed || token.balanceOf(address(this)).sub(totalPositionUnitsAmount) >= withdrawnAmount, "Collateral ratio broken"); emit Withdraw(msg.sender, _tokenAmount, burntAmount, withdrawFee); _burn(msg.sender, burntAmount); if (_transferTokens) { token.safeTransfer(msg.sender, withdrawnAmount); } collectProfit(withdrawFee); } function _openPosition(uint256 _tokenAmount, uint16 _maxCVI, bool _transferTokens) internal returns (uint256 positionUnitsAmount) { require(_tokenAmount > 0, "Tokens amount must be positive"); require(_maxCVI > 0 && _maxCVI <= MAX_CVI_VALUE, "Bad max CVI value"); (uint16 cviValue,) = cviOracle.getCVILatestRoundData(); require(cviValue <= _maxCVI, "CVI too high"); updateSnapshots(); uint256 openPositionFee = _tokenAmount.mul(uint256(feesCalculator.openPositionFeePercent())).div(MAX_FEE_PERCENTAGE); uint256 positionUnitsAmountWithoutPremium = _tokenAmount.sub(openPositionFee).mul(MAX_CVI_VALUE).div(cviValue); uint256 minPositionUnitsAmount = positionUnitsAmountWithoutPremium.mul(MAX_FEE_PERCENTAGE.sub(feesCalculator.buyingPremiumFeeMaxPercent())).div(MAX_FEE_PERCENTAGE); uint256 collateralRatio = 0; if (token.balanceOf(address(this)) > 0) { collateralRatio = (totalPositionUnitsAmount.add(minPositionUnitsAmount)).mul(PRECISION_DECIMALS).div(token.balanceOf(address(this)).add(_tokenAmount).sub(openPositionFee)); } uint256 buyingPremiumFee = feesCalculator.calculateBuyingPremiumFee(_tokenAmount, collateralRatio); // Leaving buying premium in shared pool uint256 tokenAmountToOpenPosition = _tokenAmount.sub(openPositionFee).sub(buyingPremiumFee); positionUnitsAmount = tokenAmountToOpenPosition.mul(MAX_CVI_VALUE).div(cviValue); totalPositionUnitsAmount = totalPositionUnitsAmount.add(positionUnitsAmount); if (positions[msg.sender].positionUnitsAmount > 0) { Position storage position = positions[msg.sender]; position.pendingFees = position.pendingFees.add(feesModel.calculateFundingFees(position.creationTimestamp, block.timestamp, position.positionUnitsAmount)); position.positionUnitsAmount = position.positionUnitsAmount.add(positionUnitsAmount); position.creationTimestamp = block.timestamp; } else { Position memory newPosition = Position(positionUnitsAmount, block.timestamp, 0, holdersAddresses.length); positions[msg.sender] = newPosition; holdersAddresses.push(msg.sender); } emit OpenPosition(msg.sender, _tokenAmount, openPositionFee.add(buyingPremiumFee), positions[msg.sender].positionUnitsAmount, cviValue); if (_transferTokens) { token.safeTransferFrom(msg.sender, address(this), _tokenAmount); } collectProfit(openPositionFee); // Note: checking collateral ratio after transfering tokens to cover cases where token transfer induces a fee, for example require(totalPositionUnitsAmount <= token.balanceOf(address(this)), "Not enough liquidity"); if (address(rewards) != address(0)) { rewards.reward(msg.sender, positionUnitsAmount); } } function _closePosition(uint256 _positionUnitsAmount, uint16 _minCVI, bool _transferTokens) internal returns (uint256 tokenAmount) { require(_positionUnitsAmount > 0, "Position units not positive"); require(_minCVI > 0 && _minCVI <= MAX_CVI_VALUE, "Bad min CVI value"); require(positions[msg.sender].positionUnitsAmount >= _positionUnitsAmount, "Not enough opened position units"); require(block.timestamp.sub(positions[msg.sender].creationTimestamp) >= buyersLockupPeriod, "Position locked"); (uint16 cviValue,) = cviOracle.getCVILatestRoundData(); require(cviValue >= _minCVI, "CVI too low"); updateSnapshots(); Position storage position = positions[msg.sender]; uint256 positionBalance = _positionUnitsAmount.mul(cviValue).div(MAX_CVI_VALUE); uint256 tokenAmountBeforeFees = positionBalance; uint256 fundingFees = feesModel.calculateFundingFees(position.creationTimestamp, block.timestamp, _positionUnitsAmount); uint256 realizedPendingFees = position.pendingFees.mul(_positionUnitsAmount).div(position.positionUnitsAmount); if (positionBalance <= fundingFees.add(realizedPendingFees)) { checkAndLiquidatePosition(msg.sender); // Will always liquidate return 0; } else { positionBalance = positionBalance.sub(fundingFees.add(realizedPendingFees)); } uint256 closePositionFee = positionBalance .mul(uint256(feesCalculator.calculateClosePositionFeePercent(position.creationTimestamp))) .div(MAX_FEE_PERCENTAGE); position.positionUnitsAmount = position.positionUnitsAmount.sub(_positionUnitsAmount); totalPositionUnitsAmount = totalPositionUnitsAmount.sub(_positionUnitsAmount); if (position.positionUnitsAmount > 0) { position.pendingFees = position.pendingFees.sub(realizedPendingFees); } else { removePosition(msg.sender); } tokenAmount = positionBalance.sub(closePositionFee); emit ClosePosition(msg.sender, tokenAmountBeforeFees, closePositionFee.add(realizedPendingFees).add(fundingFees), positions[msg.sender].positionUnitsAmount, cviValue); collectProfit(closePositionFee); if (_transferTokens) { token.safeTransfer(msg.sender, tokenAmount); } } function _liquidatePositions(address[] calldata _positionOwners) internal returns (uint256 finderFeeAmount) { updateSnapshots(); bool liquidationOccured = false; for ( uint256 i = 0; i < _positionOwners.length; i++) { uint256 positionUnitsAmount = positions[_positionOwners[i]].positionUnitsAmount; (bool wasLiquidated, uint256 liquidatedAmount, bool isPositive) = checkAndLiquidatePosition(_positionOwners[i]); if (wasLiquidated) { liquidationOccured = true; finderFeeAmount = finderFeeAmount.add(liquidation.getLiquidationReward(liquidatedAmount, isPositive, positionUnitsAmount)); } } require(liquidationOccured, "No reported position was found to be liquidatable"); token.safeTransfer(msg.sender, finderFeeAmount); } function _beforeTokenTransfer(address from, address to, uint256) internal override { if (lastDepositTimestamp[from].add(lpsLockupPeriod) > block.timestamp && lastDepositTimestamp[from] > lastDepositTimestamp[to]) { require(!revertLockedTransfered[to], "Recipient refuses locked tokens"); lastDepositTimestamp[to] = lastDepositTimestamp[from]; } } function updateSnapshots() private { uint256 singleUnitFundingFee = feesModel.updateSnapshots(); totalFundingFeesAmount = totalFundingFeesAmount.add(singleUnitFundingFee.mul(totalPositionUnitsAmount).div(PRECISION_DECIMALS)); } function collectProfit(uint256 amount) private { if (address(feesCollector) != address(0)) { feesCollector.sendProfit(amount, token); } } function checkAndLiquidatePosition(address _positionAddress) private returns (bool wasLiquidated, uint256 liquidatedAmount, bool isPositive) { (uint256 currentPositionBalance, bool isBalancePositive) = _calculatePositionBalance(_positionAddress); isPositive = isBalancePositive; liquidatedAmount = currentPositionBalance; if (liquidation.isLiquidationCandidate(currentPositionBalance, isBalancePositive, positions[_positionAddress].positionUnitsAmount)) { liquidatePosition(_positionAddress, currentPositionBalance, isBalancePositive); wasLiquidated = true; } } function liquidatePosition(address _positionAddress, uint256 liquidatedAmount, bool isPositive) private { Position memory position = positions[_positionAddress]; totalPositionUnitsAmount = totalPositionUnitsAmount.sub(position.positionUnitsAmount); totalFundingFeesAmount = totalFundingFeesAmount.sub(position.pendingFees); removePosition(_positionAddress); emit LiquidatePosition(_positionAddress, liquidatedAmount, isPositive, position.positionUnitsAmount); } function removePosition(address _positionAddress) private { uint256 positionIndex = positions[_positionAddress].positionAddressesIndex; if (holdersAddresses.length > 1) { holdersAddresses[positionIndex] = holdersAddresses[holdersAddresses.length.sub(1)]; positions[holdersAddresses[positionIndex]].positionAddressesIndex = positionIndex; } holdersAddresses.pop(); delete positions[_positionAddress]; } function _calculatePositionBalance(address _positionAddress) private view returns (uint256 currentPositionBalance, bool isPositive) { Position memory position = positions[_positionAddress]; (uint16 cviValue,) = cviOracle.getCVILatestRoundData(); uint256 pendingFeesAmount = position.pendingFees.add(feesModel.calculateFundingFees(position.creationTimestamp, position.positionUnitsAmount)) .add(feesModel.calculateFundingFeesAddendum(position.positionUnitsAmount)); uint256 positionBalanceWithoutFees = position.positionUnitsAmount.mul(cviValue).div(MAX_CVI_VALUE); if (positionBalanceWithoutFees >= pendingFeesAmount) { currentPositionBalance = positionBalanceWithoutFees.sub(pendingFeesAmount); isPositive = true; } else { currentPositionBalance = pendingFeesAmount.sub(positionBalanceWithoutFees); } } }
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.6.2; pragma experimental ABIEncoderV2; interface ICVIOracle { function getCVIRoundData(uint80 roundId) external view returns (uint16 cviValue, uint256 cviTimestamp); function getCVILatestRoundData() external view returns (uint16 cviValue, uint80 cviRoundId); }
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.6.2; pragma experimental ABIEncoderV2; interface IFeesCalculator { struct CVIValue { uint256 period; uint16 cviValue; } function updateTurbulenceIndicatorPercent(uint256[] calldata periods) external returns (uint16); function setTurbulenceUpdator(address newUpdator) external; function setDepositFee(uint16 newDepositFeePercentage) external; function setWithdrawFee(uint16 newWithdrawFeePercentage) external; function setOpenPositionFee(uint16 newOpenPositionFeePercentage) external; function setClosePositionFee(uint16 newClosePositionFeePercentage) external; function setClosePositionMaxFee(uint16 newClosePositionMaxFeePercentage) external; function setClosePositionFeeDecay(uint256 newClosePositionFeeDecayPeriod) external; function setOracleHeartbeatPeriod(uint256 newOracleHeartbeatPeriod) external; function setBuyingPremiumFeeMax(uint16 newBuyingPremiumFeeMaxPercentage) external; function setBuyingPremiumThreshold(uint16 newBuyingPremiumThreshold) external; function setTurbulenceStep(uint16 newTurbulenceStepPercentage) external; function setTurbulenceFeeMinPercentThreshold(uint16 _newTurbulenceFeeMinPercentThreshold) external; function calculateBuyingPremiumFee(uint256 tokenAmount, uint256 collateralRatio) external view returns (uint256 buyingPremiumFee); function calculateSingleUnitFundingFee(CVIValue[] calldata cviValues) external pure returns (uint256 fundingFee); function calculateClosePositionFeePercent(uint256 creationTimestamp) external view returns (uint16); function calculateWithdrawFeePercent(uint256 lastDepositTimestamp) external view returns (uint16); function depositFeePercent() external returns (uint16); function withdrawFeePercent() external returns (uint16); function openPositionFeePercent() external returns (uint16); function closePositionFeePercent() external returns (uint16); function buyingPremiumFeeMaxPercent() external returns (uint16); }
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.6.2; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IFeesCollector { function sendProfit(uint256 amount, IERC20 token) external; }
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.6.2; pragma experimental ABIEncoderV2; import "./ICVIOracle.sol"; import "./IFeesCalculator.sol"; interface IFeesModel { function updateSnapshots() external returns (uint256); function setCVIOracle(ICVIOracle newOracle) external; function setFeesCalculator(IFeesCalculator newCalculator) external; function setLatestOracleRoundId(uint80 newOracleRoundId) external; function setMaxOracleValuesUsed(uint80 newMaxOracleValuesUsed) external; function calculateFundingFees(uint256 startTime, uint256 positionUnitsAmount) external view returns (uint256); function calculateFundingFees(uint256 startTime, uint256 endTime, uint256 positionUnitsAmount) external view returns (uint256); function calculateFundingFeesAddendum(uint256 positionUnitsAmount) external view returns (uint256); }
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.6.2; pragma experimental ABIEncoderV2; interface ILiquidation { function setMinLiquidationThreshold(uint16 newMinThreshold) external; function setMinLiquidationReward(uint16 newMaxRewardAmount) external; function setMaxLiquidationReward(uint16 newMaxRewardAmount) external; function isLiquidationCandidate(uint256 positionBalance, bool isPositive, uint256 positionUnitsAmount) external view returns (bool); function getLiquidationReward(uint256 positionBalance, bool isPositive, uint256 positionUnitsAmount) external view returns (uint256 finderFeeAmount); }
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.6.2; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "./IRewards.sol"; import "./ICVIOracle.sol"; import "./IFeesModel.sol"; import "./IFeesCollector.sol"; import "./IFeesCalculator.sol"; import "./ILiquidation.sol"; interface IPlatform { event Deposit(address indexed account, uint256 tokenAmount, uint256 lpTokensAmount, uint256 feeAmount); event Withdraw(address indexed account, uint256 tokenAmount, uint256 lpTokensAmount, uint256 feeAmount); event OpenPosition(address indexed account, uint256 tokenAmount, uint256 feeAmount, uint256 positionUnitsAmount, uint256 cviValue); event ClosePosition(address indexed account, uint256 tokenAmount, uint256 feeAmount, uint256 positionUnitsAmount, uint256 cviValue); event LiquidatePosition(address indexed positionAddress, uint256 currentPositionBalance, bool isBalancePositive, uint256 positionUnitsAmount); function deposit(uint256 tokenAmount, uint256 minLPTokenAmount) external returns (uint256 lpTokenAmount); function withdraw(uint256 tokenAmount, uint256 maxLPTokenBurnAmount) external returns (uint256 burntAmount, uint256 withdrawnAmount); function withdrawLPTokens(uint256 lpTokenAmount) external returns (uint256 burntAmount, uint256 withdrawnAmount); function openPosition(uint256 tokenAmount, uint16 maxCVI) external returns (uint256 positionUnitsAmount); function closePosition(uint256 positionUnitsAmount, uint16 minCVI) external returns (uint256 tokenAmount); function liquidatePositions(address[] calldata positionOwners) external returns (uint256 finderFeeAmount); function setRevertLockedTransfers(bool revertLockedTransfers) external; function setFeesCollector(IFeesCollector newCollector) external; function setFeesCalculator(IFeesCalculator newCalculator) external; function setFeesModel(IFeesModel newModel) external; function setCVIOracle(ICVIOracle newOracle) external; function setRewards(IRewards newRewards) external; function setLiquidation(ILiquidation newLiquidation) external; function setLPLockupPeriod(uint256 newLPLockupPeriod) external; function setBuyersLockupPeriod(uint256 newBuyersLockupPeriod) external; function setEmergencyWithdrawAllowed(bool newEmergencyWithdrawAllowed) external; function getToken() external view returns (IERC20); function calculatePositionBalance(address positionAddress) external view returns (uint256 currentPositionBalance, bool isPositive, uint256 positionUnitsAmount); function calculatePositionPendingFees(address _positionAddress) external view returns (uint256 pendingFees); function totalBalance() external view returns (uint256 balance); function totalBalanceWithAddendum() external view returns (uint256 balance); function getLiquidableAddresses() external view returns (address[] memory); }
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.6.2; pragma experimental ABIEncoderV2; import "../Platform.sol"; interface IPositionRewards { function reward(address account, uint256 positionUnits) external; function claimReward() external; function calculatePositionReward(uint256 positionUnits, uint256 positionTimestamp) external view returns (uint256 rewardAmount); function setRewarder(address newRewarder) external; function setMaxDailyReward(uint256 newMaxDailyReward) external; function setRewardCalculationParameters(uint256 newMaxSingleReward, uint256 rewardMaxLinearPositionUnits, uint256 rewardMaxLinearGOVI) external; function setMaxClaimPeriod(uint256 newMaxClaimPeriod) external; function setMaxRewardTime(uint256 newMaxRewardTime) external; function setMaxRewardTimePercentageGain(uint256 _newMaxRewardTimePercentageGain) external; function setPlatform(Platform newPlatform) external; }
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.6.2; pragma experimental ABIEncoderV2; interface IRewards { function reward(address account, uint256 positionUnits) external; function claimReward(uint256[] memory openPositionDays) external; function setRewarder(address newRewarder) external; function setDailyReward(uint256 newDailyReward) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath16 { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint16 a, uint16 b) internal pure returns (uint16) { uint16 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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(uint16 a, uint16 b) internal pure returns (uint16) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint16 a, uint16 b, string memory errorMessage) internal pure returns (uint16) { require(b <= a, errorMessage); uint16 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint16 a, uint16 b) internal pure returns (uint16) { // 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 0; } uint16 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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(uint16 a, uint16 b) internal pure returns (uint16) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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(uint16 a, uint16 b, string memory errorMessage) internal pure returns (uint16) { require(b > 0, errorMessage); uint16 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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(uint16 a, uint16 b) internal pure returns (uint16) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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(uint16 a, uint16 b, string memory errorMessage) internal pure returns (uint16) { require(b != 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "../GSN/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. */ 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 () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "../../GSN/Context.sol"; import "./IERC20.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of 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 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 value {ERC20} uses, unless {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, 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 * * - `to` 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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @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 to 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 { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool); /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "./IERC20.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 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 SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @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, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @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, it is bubbled up by this * function (like regular Solidity function calls). * * 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. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @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`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IERC20","name":"_cviToken","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"},{"inputs":[],"name":"PRECISION_DECIMALS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_positionUnits","type":"uint256"},{"internalType":"uint256","name":"_positionTimestamp","type":"uint256"}],"name":"calculatePositionReward","outputs":[{"internalType":"uint256","name":"rewardAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastClaimedDay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastMaxSingleReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastRewardMaxLinearGOVI","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastRewardMaxLinearPositionUnits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxClaimPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxDailyReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxRewardTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxRewardTimePercentageGain","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSingleReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"platform","outputs":[{"internalType":"contract Platform","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_positionUnits","type":"uint256"}],"name":"reward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardCalculationValidTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardMaxLinearGOVI","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardMaxLinearPositionUnits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewarder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxClaimPeriod","type":"uint256"}],"name":"setMaxClaimPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxDailyReward","type":"uint256"}],"name":"setMaxDailyReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxRewardTime","type":"uint256"}],"name":"setMaxRewardTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxRewardTimePercentageGain","type":"uint256"}],"name":"setMaxRewardTimePercentageGain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Platform","name":"_newPlatform","type":"address"}],"name":"setPlatform","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSingleReward","type":"uint256"},{"internalType":"uint256","name":"_rewardMaxLinearPositionUnits","type":"uint256"},{"internalType":"uint256","name":"_rewardMaxLinearGOVI","type":"uint256"}],"name":"setRewardCalculationParameters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newRewarder","type":"address"}],"name":"setRewarder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"todayClaimedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"unclaimedPositionUnits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60a060405262278d006002556203f480600355639502f900600455687caee97613e6700000600555682b5e3af16b188000006006556406fc23ac0060075568056bc75e2d6310000060085534801561005657600080fd5b50604051611742380380611742833981016040819052610075916100e2565b600061007f6100de565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060601b6001600160601b031916608052610110565b3390565b6000602082840312156100f3578081fd5b81516001600160a01b0381168114610109578182fd5b9392505050565b60805160601c61161561012d6000398061095e52506116156000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c8063715018a611610104578063b88a802f116100a2578063e126dad311610071578063e126dad31461032c578063e3aa8b481461033f578063f2fde38b14610347578063f37bfe2d1461035a576101da565b8063b88a802f1461030c578063c4aca6f714610314578063ca4250a91461031c578063dcc3e06e14610324576101da565b8063ae7715b1116100de578063ae7715b1146102e1578063afb03518146102e9578063b3b6965a146102f1578063b6929eb4146102f9576101da565b8063715018a6146102c95780638da5cb5b146102d15780639e5f4e9d146102d9576101da565b80635fb872061161017c5780636945c5ea1161014b5780636945c5ea146102885780636a5385911461029b5780636ae3484e146102ae5780636ee30fd9146102b6576101da565b80635fb872061461025d5780635ffc54241461026557806360ebfee61461027857806366487d7814610280576101da565b806321670f22116101b857806321670f221461021a5780633a6462e41461022d5780634bde38c814610240578063551996f814610255576101da565b80630598e0bf146101df5780631057729e146101f4578063179fd84514610212575b600080fd5b6101f26101ed366004611020565b61036d565b005b6101fc6103b0565b604051610209919061158e565b60405180910390f35b6101fc6103b6565b6101f2610228366004610fd5565b6103bc565b6101f261023b366004610fb9565b610449565b6102486104a0565b60405161020991906110d5565b6101fc6104af565b6101fc6104b5565b6101fc610273366004611038565b6104bb565b6101fc6105d3565b6101fc6105dc565b6101f2610296366004610fb9565b6105e2565b6101f26102a9366004611020565b610639565b6101fc610693565b6101f26102c4366004611020565b610699565b6101f26106d3565b610248610752565b6101fc610761565b6101fc610767565b6101fc61076d565b6101fc610773565b6101fc610307366004610fb9565b610779565b6101f261078b565b6101fc610997565b6101fc61099d565b6102486109a3565b6101f261033a366004611020565b6109b2565b6101fc6109ec565b6101f2610355366004610fb9565b6109f2565b6101f2610368366004611059565b610aa8565b610375610b7f565b6000546001600160a01b039081169116146103ab5760405162461bcd60e51b81526004016103a290611359565b60405180910390fd5b600255565b60075481565b600a5481565b600f546001600160a01b031633146103e65760405162461bcd60e51b81526004016103a290611334565b600081116104065760405162461bcd60e51b81526004016103a2906113fc565b6001600160a01b0382166000908152600160205260409020546104299082610b83565b6001600160a01b0390921660009081526001602052604090209190915550565b610451610b7f565b6000546001600160a01b0390811691161461047e5760405162461bcd60e51b81526004016103a290611359565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6010546001600160a01b031681565b60035481565b60055481565b60008083116104dc5760405162461bcd60e51b81526004016103a2906113fc565b6000806000600c544211156104ff5760075492506008549150600654905061050f565b600a549250600b54915060095490505b60006402540be40061052a61052388610bb1565b8990610c05565b8161053157fe5b04905083811161055557836105468285610c05565b8161054d57fe5b0494506105a9565b6000806000610565858888610c3f565b9194509250905060006105788386610b83565b90506105a261059b6105948461058e8580610c05565b90610b83565b8690610d14565b8790610d56565b9850505050505b818511156105c95760405162461bcd60e51b81526004016103a2906112cb565b5050505092915050565b6402540be40081565b600c5481565b6105ea610b7f565b6000546001600160a01b039081169116146106175760405162461bcd60e51b81526004016103a290611359565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b610641610b7f565b6000546001600160a01b0390811691161461066e5760405162461bcd60e51b81526004016103a290611359565b6000811161068e5760405162461bcd60e51b81526004016103a29061138e565b600355565b60025481565b6106a1610b7f565b6000546001600160a01b039081169116146106ce5760405162461bcd60e51b81526004016103a290611359565b600555565b6106db610b7f565b6000546001600160a01b039081169116146107085760405162461bcd60e51b81526004016103a290611359565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60065481565b600e5481565b600b5481565b60045481565b60016020526000908152604090205481565b6010546001600160a01b03166107b35760405162461bcd60e51b81526004016103a290611564565b60105460405163055f575160e41b815260009182916001600160a01b03909116906355f57510906107e89033906004016110d5565b60806040518083038186803b15801561080057600080fd5b505afa158015610814573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108389190611084565b5050915091506000821161085e5760405162461bcd60e51b81526004016103a29061145f565b60025481014211156108825760405162461bcd60e51b81526004016103a29061153c565b62015180428190049082048082116108ac5760405162461bcd60e51b81526004016103a290611135565b33600090815260016020526040902054808510156108c75750835b600081116108e75760405162461bcd60e51b81526004016103a2906112a8565b60006108f382866104bb565b9050600060055490506000600e5486111561091257600e869055610917565b50600d545b6109218184610b83565b9050818111156109435760405162461bcd60e51b81526004016103a290611433565b600d8190553360008181526001602052604081205561098d907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169085610d98565b5050505050505050565b600d5481565b60085481565b600f546001600160a01b031681565b6109ba610b7f565b6000546001600160a01b039081169116146109e75760405162461bcd60e51b81526004016103a290611359565b600455565b60095481565b6109fa610b7f565b6000546001600160a01b03908116911614610a275760405162461bcd60e51b81526004016103a290611359565b6001600160a01b038116610a4d5760405162461bcd60e51b81526004016103a290611195565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610ab0610b7f565b6000546001600160a01b03908116911614610add5760405162461bcd60e51b81526004016103a290611359565b60008311610afd5760405162461bcd60e51b81526004016103a290611212565b60008211610b1d5760405162461bcd60e51b81526004016103a29061115e565b60008111610b3d5760405162461bcd60e51b81526004016103a2906113c5565b610b48838383610c3f565b505060078054600a558390555060088054600b5581905560068054600955839055600254610b77904290610b83565b600c55505050565b3390565b600082820183811015610ba85760405162461bcd60e51b81526004016103a2906111db565b90505b92915050565b60035460009081610bc24285610d56565b905081811115610bcf5750805b610bfd82610be860045484610c0590919063ffffffff16565b81610bef57fe5b6402540be400919004610b83565b949350505050565b600082610c1457506000610bab565b82820282848281610c2157fe5b0414610ba85760405162461bcd60e51b81526004016103a2906112f3565b6000808083610c4e8787610c05565b81610c5557fe5b04915083610c7286610c6c85816002818d80610c05565b90610c05565b81610c7957fe5b049250610ca9610c898380610c05565b85610c9b88610c6c87818d6002610c05565b81610ca257fe5b0490610d56565b905060008311610ccb5760405162461bcd60e51b81526004016103a290611249565b60008211610ceb5760405162461bcd60e51b81526004016103a290611279565b60008111610d0b5760405162461bcd60e51b81526004016103a2906114c2565b93509350939050565b6000610ba883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610df3565b6000610ba883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e2a565b610dee8363a9059cbb60e01b8484604051602401610db79291906110e9565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152610e56565b505050565b60008183610e145760405162461bcd60e51b81526004016103a29190611102565b506000838581610e2057fe5b0495945050505050565b60008184841115610e4e5760405162461bcd60e51b81526004016103a29190611102565b505050900390565b6060610eab826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610ee59092919063ffffffff16565b805190915015610dee5780806020019051810190610ec99190611000565b610dee5760405162461bcd60e51b81526004016103a2906114f2565b6060610bfd84846000856060610efa85610fb3565b610f165760405162461bcd60e51b81526004016103a29061148b565b60006060866001600160a01b03168587604051610f3391906110b9565b60006040518083038185875af1925050503d8060008114610f70576040519150601f19603f3d011682016040523d82523d6000602084013e610f75565b606091505b50915091508115610f89579150610bfd9050565b805115610f995780518082602001fd5b8360405162461bcd60e51b81526004016103a29190611102565b3b151590565b600060208284031215610fca578081fd5b8135610ba8816115c7565b60008060408385031215610fe7578081fd5b8235610ff2816115c7565b946020939093013593505050565b600060208284031215611011578081fd5b81518015158114610ba8578182fd5b600060208284031215611031578081fd5b5035919050565b6000806040838503121561104a578182fd5b50508035926020909101359150565b60008060006060848603121561106d578081fd5b505081359360208301359350604090920135919050565b60008060008060808587031215611099578081fd5b505082516020840151604085015160609095015191969095509092509050565b600082516110cb818460208701611597565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6000602082528251806020840152611121816040850160208701611597565b601f01601f19169190910160400192915050565b6020808252600f908201526e436c61696d20746f6f206561726c7960881b604082015260600190565b6020808252601d908201527f4d6178206c696e6561722078206d75737420626520706f736974697665000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601b908201527f4d617820726577617264206d75737420626520706f7369746976650000000000604082015260600190565b602080825260169082015275416c706861206d75737420626520706f73697469766560501b604082015260600190565b60208082526015908201527442657461206d75737420626520706f73697469766560581b604082015260600190565b602080825260099082015268139bc81c995dd85c9960ba1b604082015260600190565b6020808252600e908201526d52657761726420746f6f2062696760901b604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252600b908201526a139bdd08185b1b1bddd95960aa1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601c908201527f4d6178207265776172642074696d65206e6f7420706f73697469766500000000604082015260600190565b6020808252601d908201527f4d6178206c696e6561722079206d75737420626520706f736974697665000000604082015260600190565b6020808252601f908201527f506f736974696f6e20756e697473206d75737420626520706f73697469766500604082015260600190565b60208082526012908201527111185a5b1e481c995dd85c99081cdc195b9d60721b604082015260600190565b60208082526012908201527127379037b832b732b2103837b9b4ba34b7b760711b604082015260600190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b60208082526016908201527547616d6d61206d75737420626520706f73697469766560501b604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b6020808252600e908201526d436c61696d20746f6f206c61746560901b604082015260600190565b60208082526010908201526f141b185d199bdc9b481b9bdd081cd95d60821b604082015260600190565b90815260200190565b60005b838110156115b257818101518382015260200161159a565b838111156115c1576000848401525b50505050565b6001600160a01b03811681146115dc57600080fd5b5056fea2646970667358221220a19d0e239cb95a4e7fe6e04603ade15d2c054f6e26c595e21a7d97089353343c64736f6c634300060c0033000000000000000000000000eeaa40b28a2d1b0b08f6f97bb1dd4b75316c6107
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c8063715018a611610104578063b88a802f116100a2578063e126dad311610071578063e126dad31461032c578063e3aa8b481461033f578063f2fde38b14610347578063f37bfe2d1461035a576101da565b8063b88a802f1461030c578063c4aca6f714610314578063ca4250a91461031c578063dcc3e06e14610324576101da565b8063ae7715b1116100de578063ae7715b1146102e1578063afb03518146102e9578063b3b6965a146102f1578063b6929eb4146102f9576101da565b8063715018a6146102c95780638da5cb5b146102d15780639e5f4e9d146102d9576101da565b80635fb872061161017c5780636945c5ea1161014b5780636945c5ea146102885780636a5385911461029b5780636ae3484e146102ae5780636ee30fd9146102b6576101da565b80635fb872061461025d5780635ffc54241461026557806360ebfee61461027857806366487d7814610280576101da565b806321670f22116101b857806321670f221461021a5780633a6462e41461022d5780634bde38c814610240578063551996f814610255576101da565b80630598e0bf146101df5780631057729e146101f4578063179fd84514610212575b600080fd5b6101f26101ed366004611020565b61036d565b005b6101fc6103b0565b604051610209919061158e565b60405180910390f35b6101fc6103b6565b6101f2610228366004610fd5565b6103bc565b6101f261023b366004610fb9565b610449565b6102486104a0565b60405161020991906110d5565b6101fc6104af565b6101fc6104b5565b6101fc610273366004611038565b6104bb565b6101fc6105d3565b6101fc6105dc565b6101f2610296366004610fb9565b6105e2565b6101f26102a9366004611020565b610639565b6101fc610693565b6101f26102c4366004611020565b610699565b6101f26106d3565b610248610752565b6101fc610761565b6101fc610767565b6101fc61076d565b6101fc610773565b6101fc610307366004610fb9565b610779565b6101f261078b565b6101fc610997565b6101fc61099d565b6102486109a3565b6101f261033a366004611020565b6109b2565b6101fc6109ec565b6101f2610355366004610fb9565b6109f2565b6101f2610368366004611059565b610aa8565b610375610b7f565b6000546001600160a01b039081169116146103ab5760405162461bcd60e51b81526004016103a290611359565b60405180910390fd5b600255565b60075481565b600a5481565b600f546001600160a01b031633146103e65760405162461bcd60e51b81526004016103a290611334565b600081116104065760405162461bcd60e51b81526004016103a2906113fc565b6001600160a01b0382166000908152600160205260409020546104299082610b83565b6001600160a01b0390921660009081526001602052604090209190915550565b610451610b7f565b6000546001600160a01b0390811691161461047e5760405162461bcd60e51b81526004016103a290611359565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6010546001600160a01b031681565b60035481565b60055481565b60008083116104dc5760405162461bcd60e51b81526004016103a2906113fc565b6000806000600c544211156104ff5760075492506008549150600654905061050f565b600a549250600b54915060095490505b60006402540be40061052a61052388610bb1565b8990610c05565b8161053157fe5b04905083811161055557836105468285610c05565b8161054d57fe5b0494506105a9565b6000806000610565858888610c3f565b9194509250905060006105788386610b83565b90506105a261059b6105948461058e8580610c05565b90610b83565b8690610d14565b8790610d56565b9850505050505b818511156105c95760405162461bcd60e51b81526004016103a2906112cb565b5050505092915050565b6402540be40081565b600c5481565b6105ea610b7f565b6000546001600160a01b039081169116146106175760405162461bcd60e51b81526004016103a290611359565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b610641610b7f565b6000546001600160a01b0390811691161461066e5760405162461bcd60e51b81526004016103a290611359565b6000811161068e5760405162461bcd60e51b81526004016103a29061138e565b600355565b60025481565b6106a1610b7f565b6000546001600160a01b039081169116146106ce5760405162461bcd60e51b81526004016103a290611359565b600555565b6106db610b7f565b6000546001600160a01b039081169116146107085760405162461bcd60e51b81526004016103a290611359565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60065481565b600e5481565b600b5481565b60045481565b60016020526000908152604090205481565b6010546001600160a01b03166107b35760405162461bcd60e51b81526004016103a290611564565b60105460405163055f575160e41b815260009182916001600160a01b03909116906355f57510906107e89033906004016110d5565b60806040518083038186803b15801561080057600080fd5b505afa158015610814573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108389190611084565b5050915091506000821161085e5760405162461bcd60e51b81526004016103a29061145f565b60025481014211156108825760405162461bcd60e51b81526004016103a29061153c565b62015180428190049082048082116108ac5760405162461bcd60e51b81526004016103a290611135565b33600090815260016020526040902054808510156108c75750835b600081116108e75760405162461bcd60e51b81526004016103a2906112a8565b60006108f382866104bb565b9050600060055490506000600e5486111561091257600e869055610917565b50600d545b6109218184610b83565b9050818111156109435760405162461bcd60e51b81526004016103a290611433565b600d8190553360008181526001602052604081205561098d907f000000000000000000000000eeaa40b28a2d1b0b08f6f97bb1dd4b75316c61076001600160a01b03169085610d98565b5050505050505050565b600d5481565b60085481565b600f546001600160a01b031681565b6109ba610b7f565b6000546001600160a01b039081169116146109e75760405162461bcd60e51b81526004016103a290611359565b600455565b60095481565b6109fa610b7f565b6000546001600160a01b03908116911614610a275760405162461bcd60e51b81526004016103a290611359565b6001600160a01b038116610a4d5760405162461bcd60e51b81526004016103a290611195565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b610ab0610b7f565b6000546001600160a01b03908116911614610add5760405162461bcd60e51b81526004016103a290611359565b60008311610afd5760405162461bcd60e51b81526004016103a290611212565b60008211610b1d5760405162461bcd60e51b81526004016103a29061115e565b60008111610b3d5760405162461bcd60e51b81526004016103a2906113c5565b610b48838383610c3f565b505060078054600a558390555060088054600b5581905560068054600955839055600254610b77904290610b83565b600c55505050565b3390565b600082820183811015610ba85760405162461bcd60e51b81526004016103a2906111db565b90505b92915050565b60035460009081610bc24285610d56565b905081811115610bcf5750805b610bfd82610be860045484610c0590919063ffffffff16565b81610bef57fe5b6402540be400919004610b83565b949350505050565b600082610c1457506000610bab565b82820282848281610c2157fe5b0414610ba85760405162461bcd60e51b81526004016103a2906112f3565b6000808083610c4e8787610c05565b81610c5557fe5b04915083610c7286610c6c85816002818d80610c05565b90610c05565b81610c7957fe5b049250610ca9610c898380610c05565b85610c9b88610c6c87818d6002610c05565b81610ca257fe5b0490610d56565b905060008311610ccb5760405162461bcd60e51b81526004016103a290611249565b60008211610ceb5760405162461bcd60e51b81526004016103a290611279565b60008111610d0b5760405162461bcd60e51b81526004016103a2906114c2565b93509350939050565b6000610ba883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610df3565b6000610ba883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610e2a565b610dee8363a9059cbb60e01b8484604051602401610db79291906110e9565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152610e56565b505050565b60008183610e145760405162461bcd60e51b81526004016103a29190611102565b506000838581610e2057fe5b0495945050505050565b60008184841115610e4e5760405162461bcd60e51b81526004016103a29190611102565b505050900390565b6060610eab826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610ee59092919063ffffffff16565b805190915015610dee5780806020019051810190610ec99190611000565b610dee5760405162461bcd60e51b81526004016103a2906114f2565b6060610bfd84846000856060610efa85610fb3565b610f165760405162461bcd60e51b81526004016103a29061148b565b60006060866001600160a01b03168587604051610f3391906110b9565b60006040518083038185875af1925050503d8060008114610f70576040519150601f19603f3d011682016040523d82523d6000602084013e610f75565b606091505b50915091508115610f89579150610bfd9050565b805115610f995780518082602001fd5b8360405162461bcd60e51b81526004016103a29190611102565b3b151590565b600060208284031215610fca578081fd5b8135610ba8816115c7565b60008060408385031215610fe7578081fd5b8235610ff2816115c7565b946020939093013593505050565b600060208284031215611011578081fd5b81518015158114610ba8578182fd5b600060208284031215611031578081fd5b5035919050565b6000806040838503121561104a578182fd5b50508035926020909101359150565b60008060006060848603121561106d578081fd5b505081359360208301359350604090920135919050565b60008060008060808587031215611099578081fd5b505082516020840151604085015160609095015191969095509092509050565b600082516110cb818460208701611597565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6000602082528251806020840152611121816040850160208701611597565b601f01601f19169190910160400192915050565b6020808252600f908201526e436c61696d20746f6f206561726c7960881b604082015260600190565b6020808252601d908201527f4d6178206c696e6561722078206d75737420626520706f736974697665000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601b908201527f4d617820726577617264206d75737420626520706f7369746976650000000000604082015260600190565b602080825260169082015275416c706861206d75737420626520706f73697469766560501b604082015260600190565b60208082526015908201527442657461206d75737420626520706f73697469766560581b604082015260600190565b602080825260099082015268139bc81c995dd85c9960ba1b604082015260600190565b6020808252600e908201526d52657761726420746f6f2062696760901b604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252600b908201526a139bdd08185b1b1bddd95960aa1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601c908201527f4d6178207265776172642074696d65206e6f7420706f73697469766500000000604082015260600190565b6020808252601d908201527f4d6178206c696e6561722079206d75737420626520706f736974697665000000604082015260600190565b6020808252601f908201527f506f736974696f6e20756e697473206d75737420626520706f73697469766500604082015260600190565b60208082526012908201527111185a5b1e481c995dd85c99081cdc195b9d60721b604082015260600190565b60208082526012908201527127379037b832b732b2103837b9b4ba34b7b760711b604082015260600190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b60208082526016908201527547616d6d61206d75737420626520706f73697469766560501b604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b6020808252600e908201526d436c61696d20746f6f206c61746560901b604082015260600190565b60208082526010908201526f141b185d199bdc9b481b9bdd081cd95d60821b604082015260600190565b90815260200190565b60005b838110156115b257818101518382015260200161159a565b838111156115c1576000848401525b50505050565b6001600160a01b03811681146115dc57600080fd5b5056fea2646970667358221220a19d0e239cb95a4e7fe6e04603ade15d2c054f6e26c595e21a7d97089353343c64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000eeaa40b28a2d1b0b08f6f97bb1dd4b75316c6107
-----Decoded View---------------
Arg [0] : _cviToken (address): 0xeEAA40B28A2d1b0B08f6f97bB1DD4B75316c6107
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000eeaa40b28a2d1b0b08f6f97bb1dd4b75316c6107
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.068978 | 14,764.2723 | $1,018.41 |
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.