false
false
0
Blockchain
Blocks
Blocks
Uncles
Forked Blocks (Reorgs)
Transactions
Validated
Pending
Verified contracts
Tokens
All
EMC
APIs
GraphQL
RPC
Eth RPC
ElonChain
/
Search
/
Search
Connection Lost
New Solidity Smart Contract Verification
Contract Address
The 0x address supplied on contract creation.
Is Yul contract
No
Yes
Select Yes if you want to verify Yul contract.
Contract Name
Must match the name specified in the code. For example, in
contract MyContract {..}
MyContract
is the contract name.
Include nightly builds
No
Yes
Select yes if you want to show nightly builds.
Compiler
v0.8.31+commit.fd3a2265
v0.8.31-pre.1+commit.b59566f6
v0.8.30+commit.73712a01
v0.8.29+commit.ab55807c
v0.8.28+commit.7893614a
v0.8.27+commit.40a35a09
v0.8.26+commit.8a97fa7a
v0.8.25+commit.b61c2a91
v0.8.24+commit.e11b9ed9
v0.8.23+commit.f704f362
v0.8.22+commit.4fc1097e
v0.8.21+commit.d9974bed
v0.8.20+commit.a1b79de6
v0.8.19+commit.7dd6d404
v0.8.18+commit.87f61d96
v0.8.17+commit.8df45f5f
v0.8.16+commit.07a7930e
v0.8.15+commit.e14f2714
v0.8.14+commit.80d49f37
v0.8.13+commit.abaa5c0e
v0.8.12+commit.f00d7308
v0.8.11+commit.d7f03943
v0.8.10+commit.fc410830
v0.8.9+commit.e5eed63a
v0.8.8+commit.dddeac2f
v0.8.7+commit.e28d00a7
v0.8.6+commit.11564f7e
v0.8.5+commit.a4f2e591
v0.8.4+commit.c7e474f2
v0.8.3+commit.8d00100c
v0.8.2+commit.661d1103
v0.8.1+commit.df193b15
v0.8.0+commit.c7dfd78e
v0.7.6+commit.7338295f
v0.7.5+commit.eb77ed08
v0.7.4+commit.3f05b770
v0.7.3+commit.9bfce1f6
v0.7.2+commit.51b20bc0
v0.7.1+commit.f4a555be
v0.7.0+commit.9e61f92b
v0.6.12+commit.27d51765
v0.6.11+commit.5ef660b1
v0.6.10+commit.00c0fcaf
v0.6.9+commit.3e3065ac
v0.6.8+commit.0bbfe453
v0.6.7+commit.b8d736ae
v0.6.6+commit.6c089d02
v0.6.5+commit.f956cc89
v0.6.4+commit.1dca32f3
v0.6.3+commit.8dda9521
v0.6.2+commit.bacdbe57
v0.6.1+commit.e6f7d5a4
v0.6.0+commit.26b70077
v0.5.17+commit.d19bba13
v0.5.16+commit.9c3226ce
v0.5.15+commit.6a57276f
v0.5.14+commit.01f1aaa4
v0.5.13+commit.5b0b510c
v0.5.12+commit.7709ece9
v0.5.11+commit.22be8592
v0.5.10+commit.5a6ea5b1
v0.5.9+commit.c68bc34e
v0.5.8+commit.23d335f2
v0.5.7+commit.6da8b019
v0.5.6+commit.b259423e
v0.5.5+commit.47a71e8f
v0.5.4+commit.9549d8ff
v0.5.3+commit.10d17f24
v0.5.2+commit.1df8f40c
v0.5.1+commit.c8a2cb62
v0.5.0+commit.1d4f565a
v0.4.26+commit.4563c3fc
v0.4.25+commit.59dbf8f1
v0.4.24+commit.e67f0147
v0.4.23+commit.124ca40d
v0.4.22+commit.4cb486ee
v0.4.21+commit.dfe3193c
v0.4.20+commit.3155dd80
v0.4.19+commit.c4cbbb05
v0.4.18+commit.9cf6e910
v0.4.17+commit.bdeb9e52
v0.4.16+commit.d7661dd9
v0.4.15+commit.8b45bddb
v0.4.14+commit.c2215d46
v0.4.13+commit.0fb4cb1a
v0.4.12+commit.194ff033
v0.4.11+commit.68ef5810
v0.4.10+commit.9e8cc01b
The compiler version is specified in
pragma solidity X.X.X
. Use the compiler version rather than the nightly build. If using the Solidity compiler, run
solc —version
to check.
EVM Version
homestead
tangerineWhistle
spuriousDragon
byzantium
constantinople
petersburg
istanbul
berlin
london
paris
shanghai
default
The EVM version the contract is written for. If the bytecode does not match the version, we try to verify using the latest EVM version.
EVM version details
.
Optimization
No
Yes
If you enabled optimization during compilation, select yes.
Optimization runs
Enter the Solidity Contract Code
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { ReentrancyGuard } from "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import { IMultiplier } from "../interfaces/IMultiplier.sol"; import { IPenaltyFee } from "../interfaces/IPenaltyFee.sol"; import { IStakingPool } from "../interfaces/IStakingPool.sol"; contract ElonStakingPool is ReentrancyGuard, IStakingPool { using SafeERC20 for IERC20; uint256 public constant DECIMAL_MODIFIER = 1e18; IERC20 public immutable rewardsToken; IMultiplier public immutable override rewardsMultiplier; IPenaltyFee public immutable override penaltyFeeCalculator; address public owner; // Duration of the rewards (in seconds) uint256 public rewardsDuration; // Timestamp of when the staking starts uint256 public startsAt; // Timestamp of when the staking ends uint256 public endsAt; // Timestamp of the reward updated uint256 public lastUpdateTime; // Reward per second (total rewards / duration) uint256 public rewardRatePerSec; // Reward per token stored uint256 public rewardPerTokenStored; bool public isPaused; // Total staked uint256 public totalRewards; // Raw amount staked by all users uint256 public totalStaked; // Total staked with each user multiplier applied uint256 public totalWeightedStake; // User address => array of the staking info mapping(address => StakingInfo[]) public userStakingInfo; // it has to be evaluated on a user basis enum StakeTimeOptions { Duration, EndTime } event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); event TokenRecovered(address token, uint256 amount); constructor(address _rewardToken, address _multiplier, address _penaltyFeeCalculator) { owner = msg.sender; rewardsToken = IERC20(_rewardToken); rewardsMultiplier = IMultiplier(_multiplier); penaltyFeeCalculator = IPenaltyFee(_penaltyFeeCalculator); } /* ========== VIEWS ========== */ /** * Calculates how much rewards a user has earned up to current block, every time the user stakes/unstakes/withdraw. * We update "rewards[_user]" with how much they are entitled to, up to current block. * Next time we calculate how much they earned since last update and accumulate on rewards[_user]. */ function getUserRewards(address _user, uint256 _stakeNumber) public view returns (uint256) { uint256 weightedAmount = rewardsMultiplier.applyMultiplier( userStakingInfo[_user][_stakeNumber].stakedAmount, userStakingInfo[_user][_stakeNumber].duration ); uint256 rewardsSinceLastUpdate = ((weightedAmount * (rewardPerToken() - userStakingInfo[_user][_stakeNumber].rewardPerTokenPaid)) / DECIMAL_MODIFIER); return rewardsSinceLastUpdate + userStakingInfo[_user][_stakeNumber].rewards; } function lastTimeRewardApplicable() public view returns (uint256) { return block.timestamp < endsAt ? block.timestamp : endsAt; } function rewardPerToken() public view returns (uint256) { if (totalStaked == 0) { return rewardPerTokenStored; } uint256 howLongSinceLastTime = lastTimeRewardApplicable() - lastUpdateTime; return rewardPerTokenStored + ((rewardRatePerSec * howLongSinceLastTime * DECIMAL_MODIFIER) / totalWeightedStake); } function getUserStakes(address _user) external view returns (StakingInfo[] memory) { return userStakingInfo[_user]; } /* ========== MUTATIVE FUNCTIONS ========== */ function _updateReward(address _user, uint256 _stakeNumber) private { rewardPerTokenStored = rewardPerToken(); lastUpdateTime = lastTimeRewardApplicable(); if (_user != address(0)) { userStakingInfo[_user][_stakeNumber].rewards = getUserRewards(_user, _stakeNumber); userStakingInfo[_user][_stakeNumber].rewardPerTokenPaid = rewardPerTokenStored; } } function stake(StakeTimeOptions _stakeTimeOption, uint256 _unstakeTime) external payable nonReentrant inProgress { uint256 _amount = msg.value; require(_amount > 0, "ElonStakingPool::stake: amount = 0"); uint256 _minimumStakeTimestamp = _stakeTimeOption == StakeTimeOptions.Duration ? block.timestamp + _unstakeTime : _unstakeTime; require(_minimumStakeTimestamp > startsAt, "ElonStakingPool::stake: _minimumStakeTimestamp <= startsAt"); require( _minimumStakeTimestamp > block.timestamp, "ElonStakingPool::stake: _minimumStakeTimestamp <= block.timestamp" ); uint256 _stakeDuration = _minimumStakeTimestamp - block.timestamp; _updateReward(address(0), 0); StakingInfo memory _stakingInfo = StakingInfo({ stakedAmount: _amount, minimumStakeTimestamp: _minimumStakeTimestamp, duration: _stakeDuration, rewardPerTokenPaid: rewardPerTokenStored, rewards: 0 }); userStakingInfo[msg.sender].push(_stakingInfo); uint256 _stakeNumber = userStakingInfo[msg.sender].length - 1; uint256 weightedStake = rewardsMultiplier.applyMultiplier(_amount, _stakeDuration); totalWeightedStake += weightedStake; totalStaked += _amount; emit Staked(msg.sender, _stakeNumber, _amount); } function unstake(uint256 _amount, uint256 _stakeNumber) external nonReentrant { require(_amount > 0, "ElonStakingPool::unstake: amount = 0"); require( _amount <= userStakingInfo[msg.sender][_stakeNumber].stakedAmount, "ElonStakingPool::unstake: not enough balance" ); _updateReward(msg.sender, _stakeNumber); uint256 currentWeightedStake = rewardsMultiplier.applyMultiplier( userStakingInfo[msg.sender][_stakeNumber].stakedAmount, userStakingInfo[msg.sender][_stakeNumber].duration ); totalWeightedStake -= currentWeightedStake; totalStaked -= _amount; uint256 penaltyFee = 0; if (block.timestamp < userStakingInfo[msg.sender][_stakeNumber].minimumStakeTimestamp) { penaltyFee = penaltyFeeCalculator.calculate( _amount, userStakingInfo[msg.sender][_stakeNumber].duration, address(this) ); if (penaltyFee > _amount) { penaltyFee = _amount; } } userStakingInfo[msg.sender][_stakeNumber].stakedAmount -= _amount; if (userStakingInfo[msg.sender][_stakeNumber].stakedAmount == 0) { _claimRewards(msg.sender, _stakeNumber); // remove the staking info from array userStakingInfo[msg.sender][_stakeNumber] = userStakingInfo[msg.sender][ userStakingInfo[msg.sender].length - 1 ]; userStakingInfo[msg.sender].pop(); } else { // update the weighted stake uint256 newWeightedStake = rewardsMultiplier.applyMultiplier( userStakingInfo[msg.sender][_stakeNumber].stakedAmount, userStakingInfo[msg.sender][_stakeNumber].duration ); totalWeightedStake += newWeightedStake; } if (penaltyFee > 0) { // transfer the penalty fee to the treasury payable(owner).transfer(penaltyFee); _amount -= penaltyFee; } // transfer the amount minus the penalty fee to the user payable(msg.sender).transfer(_amount); emit Unstaked(msg.sender, _stakeNumber, _amount); } function _claimRewards(address _user, uint256 _stakeNumber) private { uint256 reward = userStakingInfo[_user][_stakeNumber].rewards; if (reward > 0) { userStakingInfo[_user][_stakeNumber].rewards = 0; rewardsToken.safeTransfer(_user, reward); emit RewardPaid(_user, _stakeNumber, reward); } } function claimRewards(uint256 _stakeNumber) external nonReentrant { _updateReward(msg.sender, _stakeNumber); _claimRewards(msg.sender, _stakeNumber); } /* ========== RESTRICTED FUNCTIONS ========== */ function initializeStaking( uint256 _startsAt, uint256 _rewardsDuration, uint256 _amount ) external nonReentrant onlyOwner { require(_startsAt > block.timestamp, "ElonStakingPool::initializeStaking: _startsAt must be in the future"); require(_rewardsDuration > 0, "ElonStakingPool::initializeStaking: _rewardsDuration = 0"); require(_amount > 0, "ElonStakingPool::initializeStaking: _amount = 0"); require(startsAt == 0, "ElonStakingPool::initializeStaking: staking already started"); _updateReward(address(0), 0); rewardsDuration = _rewardsDuration; startsAt = _startsAt; endsAt = _startsAt + _rewardsDuration; // add the amount to the pool uint256 initialAmount = rewardsToken.balanceOf(address(this)); rewardsToken.safeTransferFrom(msg.sender, address(this), _amount); uint256 actualAmount = rewardsToken.balanceOf(address(this)) - initialAmount; totalRewards = actualAmount; rewardRatePerSec = actualAmount / _rewardsDuration; // set the staking to in progress isPaused = false; } function resumeStaking() external onlyOwner { require(rewardRatePerSec > 0, "ElonStakingPool::startStaking: reward rate = 0"); require(isPaused, "ElonStakingPool::startStaking: staking already started"); isPaused = false; } function pauseStaking() external onlyOwner { require(!isPaused, "ElonStakingPool::pauseStaking: staking already paused"); isPaused = true; } // Added to support recovering LP Rewards from other systems such as BAL to be distributed to holders function recoverERC20(address tokenAddress, uint256 tokenAmount) external onlyOwner { if (tokenAddress == address(0)) { payable(owner).transfer(tokenAmount); } else { IERC20(tokenAddress).safeTransfer(owner, tokenAmount); } emit TokenRecovered(tokenAddress, tokenAmount); } function transferOwnership(address _newOwner) external onlyOwner { address currentOwner = owner; owner = _newOwner; emit OwnershipTransferred(currentOwner, _newOwner); } /* ========== MODIFIERS ========== */ modifier inProgress() { require(!isPaused, "ElonStakingPool::initialized: staking is paused"); require(startsAt <= block.timestamp, "ElonStakingPool::initialized: staking has not started yet"); require(endsAt > block.timestamp, "ElonStakingPool::notFinished: staking has finished"); _; } modifier onlyOwner() { require(msg.sender == owner, "ElonStakingPool::onlyOwner: not authorized"); _; } }
We recommend using flattened code. This is necessary if your code utilizes a library or inherits dependencies. Use the
POA solidity flattener or the
truffle flattener
.
Try to fetch constructor arguments automatically
No
Yes
ABI-encoded Constructor Arguments (if required by the contract)
0x0000000000000000000000003a2561721fc9765b6b599dfea71c9b9e708dfddc0000000000000000000000001faa6e5913e5fdfc85d961e86f7aacfc9a7e6c3f000000000000000000000000c049e0951dc66e5af49bf27f0ad305ed2eab2cbc
Add arguments in
ABI hex encoded form
. Constructor arguments are written right to left, and will be found at the end of the input created bytecode. They may also be
parsed here.
Add Contract Libraries
Contract Libraries
Library 1 Name
A library name called in the .sol file. Multiple libraries (up to 10) may be added for each contract. Click the Add Library button to add an additional one.
Library 1 Address
The 0x library address. This can be found in the generated json file or Truffle output (if using truffle).
Library 2 Name
Library 2 Address
Library 3 Name
Library 3 Address
Library 4 Name
Library 4 Address
Library 5 Name
Library 5 Address
Library 6 Name
Library 6 Address
Library 7 Name
Library 7 Address
Library 8 Name
Library 8 Address
Library 9 Name
Library 9 Address
Library 10 Name
Library 10 Address
Add Library
Loading...
Verify & publish
Cancel
Ok
Ok
Ok
No
Yes