ETH Price: $3,489.28 (+0.03%)
Gas: 2 Gwei

Contract

0x54980E0F50e6C772B420A25803C16214277b0CC3
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Recover Token181179452023-09-12 4:42:35313 days ago1694493755IN
0x54980E0F...4277b0CC3
0 ETH0.000398959.42102195
Emergency Withdr...175591322023-06-25 21:22:47391 days ago1687728167IN
0x54980E0F...4277b0CC3
0 ETH0.0008101711.59400935
Emergency Withdr...173399672023-05-26 1:19:35422 days ago1685063975IN
0x54980E0F...4277b0CC3
0 ETH0.0013693423.78199928
Emergency Withdr...173363942023-05-25 13:15:59422 days ago1685020559IN
0x54980E0F...4277b0CC3
0 ETH0.0021744937.76545608
Harvest173337312023-05-25 4:16:11423 days ago1684988171IN
0x54980E0F...4277b0CC3
0 ETH0.0016341826.73781432
Withdraw173336632023-05-25 4:02:23423 days ago1684987343IN
0x54980E0F...4277b0CC3
0 ETH0.0036884334.03714409
Harvest173266282023-05-24 4:17:59424 days ago1684901879IN
0x54980E0F...4277b0CC3
0 ETH0.0018822230.79610769
Withdraw173260792023-05-24 2:27:11424 days ago1684895231IN
0x54980E0F...4277b0CC3
0 ETH0.0030815333.76474148
Harvest173248962023-05-23 22:28:23424 days ago1684880903IN
0x54980E0F...4277b0CC3
0 ETH0.0031855752.12093782
Harvest173244012023-05-23 20:48:47424 days ago1684874927IN
0x54980E0F...4277b0CC3
0 ETH0.0041941468.62255611
Harvest173198922023-05-23 5:33:23425 days ago1684820003IN
0x54980E0F...4277b0CC3
0 ETH0.0029118537.22690065
Harvest173147472023-05-22 12:10:35425 days ago1684757435IN
0x54980E0F...4277b0CC3
0 ETH0.0027790635.52933979
Stake173124742023-05-22 4:30:23426 days ago1684729823IN
0x54980E0F...4277b0CC3
0 ETH0.0040873735.29805788
Harvest173115992023-05-22 1:32:23426 days ago1684719143IN
0x54980E0F...4277b0CC3
0 ETH0.0016135426.40007555
Harvest173087562023-05-21 15:53:47426 days ago1684684427IN
0x54980E0F...4277b0CC3
0 ETH0.0026496833.87527254
Harvest173036612023-05-20 22:41:59427 days ago1684622519IN
0x54980E0F...4277b0CC3
0 ETH0.0022848129.21045147
Harvest172985042023-05-20 5:16:59428 days ago1684559819IN
0x54980E0F...4277b0CC3
0 ETH0.001718128.11087558
Harvest172934522023-05-19 12:10:47428 days ago1684498247IN
0x54980E0F...4277b0CC3
0 ETH0.0019760932.33189848
Harvest172913282023-05-19 4:59:47429 days ago1684472387IN
0x54980E0F...4277b0CC3
0 ETH0.0029748438.03231627
Harvest172902602023-05-19 1:21:47429 days ago1684459307IN
0x54980E0F...4277b0CC3
0 ETH0.0028461346.56703056
Stake172887292023-05-18 20:11:59429 days ago1684440719IN
0x54980E0F...4277b0CC3
0 ETH0.0068364659.04502232
Harvest172865602023-05-18 12:53:47429 days ago1684414427IN
0x54980E0F...4277b0CC3
0 ETH0.0045259447.48211306
Harvest172856802023-05-18 9:56:23429 days ago1684403783IN
0x54980E0F...4277b0CC3
0 ETH0.0028984547.42310026
Harvest172791552023-05-17 11:47:23430 days ago1684324043IN
0x54980E0F...4277b0CC3
0 ETH0.0027119944.37229975
Harvest172752762023-05-16 22:40:35431 days ago1684276835IN
0x54980E0F...4277b0CC3
0 ETH0.0050028563.95963483
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x0B9c03E6...32D86f5A8
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
PepeYespStaking

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 5 : PepeYespStaking.sol
pragma solidity ^0.8.0;
// SPDX-License-Identifier: MIT

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

//Reward per second is 0 on deploy. once it has been set, staking has started. no takebacks.
contract PepeYespStaking is Ownable, ReentrancyGuard {
    bool public stakingPaused = true;
    uint256 public stakingPeriod = 1209600; //14 days
    uint256 public rewardPoolSize = 3000000 * 10**18; // 3mil
    uint256 public rewardPerSecond = rewardPoolSize / stakingPeriod;
    IERC20 public stakingToken = IERC20(0x6982508145454Ce325dDbE47a25d4ec3d2311933); // PEPE
    IERC20 public rewardToken = IERC20(0x46ccA329970B33e1a007DD4ef0594A1cedb3E72a); // YESP

    event Stake(address indexed stakoor, uint256 amount);
    event Withdraw(address indexed stakoor, uint256 amount);
    event Harvest(address indexed stakoor, uint256 rewards);

    uint256 public totalStaked = 0;
    mapping(address => uint256) public stakingTimestamps;
    mapping(address => uint256) public stakedAmount;
    mapping(address => uint256) public rewardsHarvested;

    uint256 public taxFee = 500;
    uint256 public taxesHeld = 0;

    function stake(uint256 amount) external nonReentrant {
        require(!stakingPaused, "Staking paused");
        require(stakingToken.allowance(msg.sender, address(this)) >= amount, "PEPE Allowance");
        require(stakingToken.balanceOf(msg.sender) >= amount, "PEPE Balance");
        if (stakedAmount[msg.sender] != 0 ) { _harvest(); }

        uint256 taxedAmount = taxFee * amount / 10000;

        stakingTimestamps[msg.sender] = block.timestamp;
        stakedAmount[msg.sender] += (amount - taxedAmount);
        totalStaked += (amount - taxedAmount);
        taxesHeld += taxedAmount;
        stakingToken.transferFrom(msg.sender, address(this), amount);
        emit Stake(msg.sender, amount);
    }

    function withdraw() external nonReentrant {
        require((stakedAmount[msg.sender] > 0), "Nothing staked");
        _harvest();
        totalStaked -= stakedAmount[msg.sender];
        stakingToken.transfer(msg.sender, stakedAmount[msg.sender]);
        emit Withdraw(msg.sender, stakedAmount[msg.sender]);
        stakedAmount[msg.sender] = 0;
    }

    function _harvest() private {
        uint256 timeStaked = block.timestamp - stakingTimestamps[msg.sender];
        uint256 rewardAmount = timeStaked * rewardPerSecond * stakedAmount[msg.sender] / totalStaked;
        require(rewardToken.balanceOf(address(this)) >= rewardAmount, "Rewards insufficient");
        stakingTimestamps[msg.sender] = block.timestamp;
        rewardsHarvested[msg.sender] += rewardAmount;
        rewardToken.transfer(msg.sender, rewardAmount);
        emit Harvest(msg.sender, rewardAmount);
    }

    function harvest() public nonReentrant {
        _harvest();
    }

    function emergencyWithdraw() external nonReentrant {
        totalStaked -= stakedAmount[msg.sender];
        emit Withdraw(msg.sender, stakedAmount[msg.sender]);
        stakingToken.transfer(msg.sender, stakedAmount[msg.sender]);
        stakedAmount[msg.sender] = 0;
    }

    function unclaimedRewards(address staker) external view returns (uint256) {
        if (stakingTimestamps[staker] == 0 || stakedAmount[staker] == 0) { return 0; }
        return (block.timestamp - stakingTimestamps[staker]) * rewardPerSecond * stakedAmount[staker] / totalStaked;
    }

    //ADMIN
    function changeVars(bool _stakingPaused, uint256 _stakingPeriod, uint256 _rewardPoolSize, address _stakingToken, address _rewardToken, uint256 _taxFee) external onlyOwner {
        require(stakingPaused || (totalStaked == 0), "Staking started");
        require(_taxFee <= 2500, "Tea party");
        if (stakingPeriod != _stakingPeriod) { stakingPeriod = _stakingPeriod; }
        if (rewardPoolSize != _rewardPoolSize) { rewardPoolSize = _rewardPoolSize; }
        if ((stakingPeriod != _stakingPeriod) || (rewardPoolSize != _rewardPoolSize)) {  rewardPerSecond = (_rewardPoolSize/_stakingPeriod); }
        if (address(stakingToken) != _stakingToken) { stakingToken = IERC20(_stakingToken); }
        if (address(rewardToken) != _rewardToken) { rewardToken = IERC20(_rewardToken); }
        if (stakingPaused != _stakingPaused) { stakingPaused = _stakingPaused; }
        if (taxFee != _taxFee) { taxFee = _taxFee; }
    }

    function theTaxMan() external onlyOwner {
        stakingToken.transfer(msg.sender, stakingToken.balanceOf(address(this)) - totalStaked);
        taxesHeld = 0;
    }


    //EMERGENCY ONLY
    function recoverToken(address _token, uint256 amount) external virtual onlyOwner {
        require(_token != address(stakingToken), "No ruggaroo");
        IERC20(_token).transfer(owner(), amount);
    }

}

File 2 of 5 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 5 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 4 of 5 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 5 of 5 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"stakoor","type":"address"},{"indexed":false,"internalType":"uint256","name":"rewards","type":"uint256"}],"name":"Harvest","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"stakoor","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Stake","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"stakoor","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[{"internalType":"bool","name":"_stakingPaused","type":"bool"},{"internalType":"uint256","name":"_stakingPeriod","type":"uint256"},{"internalType":"uint256","name":"_rewardPoolSize","type":"uint256"},{"internalType":"address","name":"_stakingToken","type":"address"},{"internalType":"address","name":"_rewardToken","type":"address"},{"internalType":"uint256","name":"_taxFee","type":"uint256"}],"name":"changeVars","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPerSecond","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPoolSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewardsHarvested","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakingTimestamps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxesHeld","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"theTaxMan","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalStaked","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":"staker","type":"address"}],"name":"unclaimedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063a071dcf4116100c3578063c03d5b471161007c578063c03d5b4714610291578063db2e21bc1461029a578063f1c40da1146102a2578063f2fde38b146102aa578063f7c618c1146102bd578063f9931855146102d057600080fd5b8063a071dcf414610212578063a40194db1461021b578063a694fc3a1461023b578063b29a81401461024e578063b7b93e7614610261578063bbb781cc1461027457600080fd5b806372f702f31161011557806372f702f314610191578063817b1cd2146101bc5780638da5cb5b146101c55780638f10369a146101d6578063937b983b146101df578063949813b8146101ff57600080fd5b8063059e864b14610152578063211b827d1461016e5780633ccfd60b146101775780634641257d14610181578063715018a614610189575b600080fd5b61015b600d5481565b6040519081526020015b60405180910390f35b61015b60045481565b61017f6102f0565b005b61017f61047e565b61017f6104b3565b6006546101a4906001600160a01b031681565b6040516001600160a01b039091168152602001610165565b61015b60085481565b6000546001600160a01b03166101a4565b61015b60055481565b61015b6101ed366004611051565b60096020526000908152604090205481565b61015b61020d366004611051565b6104c7565b61015b600c5481565b61015b610229366004611051565b600b6020526000908152604090205481565b61017f610249366004611073565b610567565b61017f61025c36600461108c565b61089b565b61017f61026f3660046110c4565b610986565b6002546102819060ff1681565b6040519015158152602001610165565b61015b60035481565b61017f610af7565b61017f610c27565b61017f6102b8366004611051565b610d29565b6007546101a4906001600160a01b031681565b61015b6102de366004611051565b600a6020526000908152604090205481565b60026001540361031b5760405162461bcd60e51b815260040161031290611125565b60405180910390fd5b6002600155336000908152600a602052604090205461036d5760405162461bcd60e51b815260206004820152600e60248201526d139bdd1a1a5b99c81cdd185ad95960921b6044820152606401610312565b610375610da2565b336000908152600a60205260408120546008805491929091610398908490611172565b9091555050600654336000818152600a60205260409081902054905163a9059cbb60e01b8152600481019290925260248201526001600160a01b039091169063a9059cbb906044016020604051808303816000875af11580156103ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104239190611189565b50336000818152600a60209081526040918290205491519182527f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364910160405180910390a2336000908152600a602052604081205560018055565b6002600154036104a05760405162461bcd60e51b815260040161031290611125565b60026001556104ad610da2565b60018055565b6104bb610f8b565b6104c56000610fe5565b565b6001600160a01b038116600090815260096020526040812054158061050257506001600160a01b0382166000908152600a6020526040902054155b1561050f57506000919050565b6008546001600160a01b0383166000908152600a602090815260408083205460055460099093529220546105439042611172565b61054d91906111a6565b61055791906111a6565b61056191906111c5565b92915050565b6002600154036105895760405162461bcd60e51b815260040161031290611125565b600260018190555460ff16156105d25760405162461bcd60e51b815260206004820152600e60248201526d14dd185ada5b99c81c185d5cd95960921b6044820152606401610312565b600654604051636eb1769f60e11b815233600482015230602482015282916001600160a01b03169063dd62ed3e90604401602060405180830381865afa158015610620573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061064491906111e7565b10156106835760405162461bcd60e51b815260206004820152600e60248201526d5045504520416c6c6f77616e636560901b6044820152606401610312565b6006546040516370a0823160e01b815233600482015282916001600160a01b0316906370a0823190602401602060405180830381865afa1580156106cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ef91906111e7565b101561072c5760405162461bcd60e51b815260206004820152600c60248201526b504550452042616c616e636560a01b6044820152606401610312565b336000908152600a60205260409020541561074957610749610da2565b600061271082600c5461075c91906111a6565b61076691906111c5565b33600090815260096020526040902042905590506107848183611172565b336000908152600a6020526040812080549091906107a3908490611200565b909155506107b390508183611172565b600860008282546107c49190611200565b9250508190555080600d60008282546107dd9190611200565b90915550506006546040516323b872dd60e01b8152336004820152306024820152604481018490526001600160a01b03909116906323b872dd906064016020604051808303816000875af1158015610839573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085d9190611189565b5060405182815233907febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a9060200160405180910390a2505060018055565b6108a3610f8b565b6006546001600160a01b03908116908316036108ef5760405162461bcd60e51b815260206004820152600b60248201526a4e6f207275676761726f6f60a81b6044820152606401610312565b816001600160a01b031663a9059cbb6109106000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af115801561095d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109819190611189565b505050565b61098e610f8b565b60025460ff168061099f5750600854155b6109dd5760405162461bcd60e51b815260206004820152600f60248201526e14dd185ada5b99c81cdd185c9d1959608a1b6044820152606401610312565b6109c4811115610a1b5760405162461bcd60e51b815260206004820152600960248201526854656120706172747960b81b6044820152606401610312565b8460035414610a2a5760038590555b8360045414610a395760048490555b84600354141580610a4c57508360045414155b15610a5f57610a5b85856111c5565b6005555b6006546001600160a01b03848116911614610a9057600680546001600160a01b0319166001600160a01b0385161790555b6007546001600160a01b03838116911614610ac157600780546001600160a01b0319166001600160a01b0384161790555b60025460ff16151586151514610ae0576002805460ff19168715151790555b80600c5414610aef57600c8190555b505050505050565b600260015403610b195760405162461bcd60e51b815260040161031290611125565b6002600155336000908152600a60205260408120546008805491929091610b41908490611172565b9091555050336000818152600a60209081526040918290205491519182527f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364910160405180910390a2600654336000818152600a60205260409081902054905163a9059cbb60e01b8152600481019290925260248201526001600160a01b039091169063a9059cbb906044016020604051808303816000875af1158015610bec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c109190611189565b50336000908152600a602052604081205560018055565b610c2f610f8b565b6006546008546040516370a0823160e01b81523060048201526001600160a01b039092169163a9059cbb91339184906370a0823190602401602060405180830381865afa158015610c84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca891906111e7565b610cb29190611172565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610cfd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d219190611189565b506000600d55565b610d31610f8b565b6001600160a01b038116610d965760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610312565b610d9f81610fe5565b50565b33600090815260096020526040812054610dbc9042611172565b600854336000908152600a60205260408120546005549394509092610de190856111a6565b610deb91906111a6565b610df591906111c5565b6007546040516370a0823160e01b815230600482015291925082916001600160a01b03909116906370a0823190602401602060405180830381865afa158015610e42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6691906111e7565b1015610eab5760405162461bcd60e51b815260206004820152601460248201527314995dd85c991cc81a5b9cdd59999a58da595b9d60621b6044820152606401610312565b336000908152600960209081526040808320429055600b90915281208054839290610ed7908490611200565b909155505060075460405163a9059cbb60e01b8152336004820152602481018390526001600160a01b039091169063a9059cbb906044016020604051808303816000875af1158015610f2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f519190611189565b5060405181815233907fc9695243a805adb74c91f28311176c65b417e842d5699893cef56d18bfa48cba9060200160405180910390a25050565b6000546001600160a01b031633146104c55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610312565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b038116811461104c57600080fd5b919050565b60006020828403121561106357600080fd5b61106c82611035565b9392505050565b60006020828403121561108557600080fd5b5035919050565b6000806040838503121561109f57600080fd5b6110a883611035565b946020939093013593505050565b8015158114610d9f57600080fd5b60008060008060008060c087890312156110dd57600080fd5b86356110e8816110b6565b9550602087013594506040870135935061110460608801611035565b925061111260808801611035565b915060a087013590509295509295509295565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000828210156111845761118461115c565b500390565b60006020828403121561119b57600080fd5b815161106c816110b6565b60008160001904831182151516156111c0576111c061115c565b500290565b6000826111e257634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156111f957600080fd5b5051919050565b600082198211156112135761121361115c565b50019056fea26469706673582212206d82c65d96a03052c63139804cb6d1b0892c7a40117106a60e41e97066c4e04064736f6c634300080e0033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.