ETH Price: $1,793.83 (+5.98%)
Gas: 0.43 GWei

Contract

0x037817e94b916C326989aDB396F50d63aB8720d8

Overview

ETH Balance

Linea Mainnet LogoLinea Mainnet LogoLinea Mainnet Logo11.7600000000001 ETH

ETH Value

$21,095.42 (@ $1,793.83/ETH)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Stake67405102024-07-13 15:23:56284 days ago1720884236IN
0x037817e9...3aB8720d8
1 ETH0.000003750.06
Stake63384292024-07-04 7:59:01293 days ago1720079941IN
0x037817e9...3aB8720d8
1 ETH0.000004780.06
VIEW ADVANCED FILTER

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
183053672025-04-23 11:21:314 hrs ago1745407291
0x037817e9...3aB8720d8
0.01 ETH
182942322025-04-23 3:34:4912 hrs ago1745379289
0x037817e9...3aB8720d8
0.02 ETH
182934072025-04-23 2:59:2013 hrs ago1745377160
0x037817e9...3aB8720d8
0.01 ETH
182803722025-04-22 16:40:3223 hrs ago1745340032
0x037817e9...3aB8720d8
0.01 ETH
181114372025-04-17 2:33:246 days ago1744857204
0x037817e9...3aB8720d8
0.1 ETH
180593902025-04-15 11:31:078 days ago1744716667
0x037817e9...3aB8720d8
0.01 ETH
180593432025-04-15 11:29:008 days ago1744716540
0x037817e9...3aB8720d8
0.01 ETH
180494952025-04-15 4:33:008 days ago1744691580
0x037817e9...3aB8720d8
0.01 ETH
180177782025-04-14 4:11:129 days ago1744603872
0x037817e9...3aB8720d8
0.01 ETH
180128952025-04-14 0:14:589 days ago1744589698
0x037817e9...3aB8720d8
0.01 ETH
179921812025-04-13 8:05:2410 days ago1744531524
0x037817e9...3aB8720d8
0.01 ETH
179910322025-04-13 7:14:1910 days ago1744528459
0x037817e9...3aB8720d8
0.01 ETH
179836702025-04-13 1:15:2210 days ago1744506922
0x037817e9...3aB8720d8
0.01 ETH
179635832025-04-12 9:32:5011 days ago1744450370
0x037817e9...3aB8720d8
0.01 ETH
179591272025-04-12 6:27:3211 days ago1744439252
0x037817e9...3aB8720d8
0.01 ETH
178501132025-04-09 0:42:3714 days ago1744159357
0x037817e9...3aB8720d8
0.01 ETH
178501072025-04-09 0:42:2314 days ago1744159343
0x037817e9...3aB8720d8
0.01 ETH
178501022025-04-09 0:42:1014 days ago1744159330
0x037817e9...3aB8720d8
0.01 ETH
178500972025-04-09 0:41:5814 days ago1744159318
0x037817e9...3aB8720d8
0.01 ETH
178500932025-04-09 0:41:4414 days ago1744159304
0x037817e9...3aB8720d8
0.01 ETH
178500872025-04-09 0:41:2914 days ago1744159289
0x037817e9...3aB8720d8
0.01 ETH
177867652025-04-07 2:43:2616 days ago1743993806
0x037817e9...3aB8720d8
0.01 ETH
177841512025-04-07 0:53:1316 days ago1743987193
0x037817e9...3aB8720d8
0.01 ETH
177612662025-04-06 8:41:2817 days ago1743928888
0x037817e9...3aB8720d8
0.01 ETH
177610622025-04-06 8:33:3217 days ago1743928412
0x037817e9...3aB8720d8
0.01 ETH
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
SendingStakingProgram

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 200 runs

Other Settings:
istanbul EvmVersion, None license
File 1 of 4 : SendingStakingProgram.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.1;

import {Ownable} from "contracts/access/Ownable.sol";
import {ReentrancyGuard} from "contracts/security/ReentrancyGuard.sol";

contract SendingStakingProgram is Ownable, ReentrancyGuard {

    uint256 private lockTime = 7 days;
    address private admin;
    uint256 private depositNum;
    uint256 private totalDepositNum;

    struct StakeAmount {
        uint256 amount;
        uint256 timestamp;
    }

    mapping(address => StakeAmount) public deposits;

    constructor() {
    }

    event Stake(address indexed _from, uint256 _value);
    event Withdraw(address indexed _to, uint256 _value);

    function stake() external payable nonReentrant{
        require(msg.value > 0, "Stake amount must be greater than 0");

        StakeAmount storage userDeposit = deposits[msg.sender];
        deposits[msg.sender] = StakeAmount(msg.value + userDeposit.amount, block.timestamp);
        totalDepositNum += 1;
        depositNum += 1;
        emit Stake(msg.sender, msg.value);
    }

    function withdraw(uint256 amount) external nonReentrant {
        StakeAmount storage userDeposit = deposits[msg.sender];

        require(amount > 0, "Invalid amount");
        require(userDeposit.amount > 0, "No deposit exists");
        require(amount <= userDeposit.amount, "Withdrawal amount exceed balance");
        require(block.timestamp >= userDeposit.timestamp + lockTime, "Withdrawal not available yet");

        if (userDeposit.amount == amount) {
            depositNum -= 1;
        }
        userDeposit.amount -= amount;
        payable(msg.sender).transfer(amount);
        emit Withdraw(msg.sender, amount);
    }

    function withdrawAll() external nonReentrant {
        StakeAmount storage userDeposit = deposits[msg.sender];

        require(userDeposit.amount > 0, "No deposit exists");
        require(block.timestamp >= userDeposit.timestamp + lockTime, "Withdrawal not available yet");

        uint256 amount = userDeposit.amount;
        userDeposit.amount = 0;
        payable(msg.sender).transfer(amount);
        depositNum -= 1;
        emit Withdraw(msg.sender, amount);
    }

    function setLockTime(uint256 _lockTime) public {
        require(_msgSender() == admin || _msgSender() == owner(), "no permission");
        lockTime = _lockTime;
    }

    function setAdmin(address _admin) public onlyOwner {
        require(_admin != address(0), "invalid address");
        admin = _admin;
    }

    function getBalance(address _wallet) external view returns (uint256) {
        return deposits[_wallet].amount;
    }

    function getBalances(address[] memory _wallets) external view returns (address[] memory, uint256[] memory) {
        address[] memory addresses = new address[](_wallets.length);
        uint256[] memory amounts = new uint256[](_wallets.length);

        for (uint256 i = 0; i < _wallets.length; i++) {
            addresses[i] = _wallets[i];
            amounts[i] = deposits[_wallets[i]].amount;
        }
        return (addresses, amounts);
    }

    function getDepositTime(address _wallet) external view returns (uint256) {
        return deposits[_wallet].timestamp;
    }

    function getStake(address _wallet) external view returns (uint256, uint256) {
        return (deposits[_wallet].amount, deposits[_wallet].timestamp);
    }

    function count() external view returns (uint256, uint256) {
        return (depositNum, totalDepositNum);
    }

}

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

pragma solidity ^0.8.0;

import "contracts/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 4 : 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;
    }
}

File 4 of 4 : 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;
    }
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"Stake","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"count","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"deposits","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"getBalances","outputs":[{"internalType":"address[]","name":"","type":"address[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"getDepositTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"getStake","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_admin","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lockTime","type":"uint256"}],"name":"setLockTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stake","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405262093a8060025534801561001757600080fd5b50610028610023610031565b610035565b60018055610085565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610e83806100946000396000f3fe6080604052600436106100dd5760003560e01c8063853828b61161007f578063ae04d45d11610059578063ae04d45d1461021f578063f2fde38b1461023f578063f8b2cb4f1461025f578063fc7e286d1461027f576100dd565b8063853828b6146101bb57806385b622a6146101d05780638da5cb5b146101fd576100dd565b80633a4b66f1116100bb5780633a4b66f11461015e578063704b6c0214610166578063715018a6146101865780637a7664601461019b576100dd565b806306661abd146100e25780632d2ae1c11461010e5780632e1a7d4d1461013c575b600080fd5b3480156100ee57600080fd5b506100f761029f565b604051610105929190610dc9565b60405180910390f35b34801561011a57600080fd5b5061012e610129366004610a47565b6102a9565b604051610105929190610b39565b34801561014857600080fd5b5061015c610157366004610b0d565b610464565b005b61015c6105e3565b34801561017257600080fd5b5061015c610181366004610a26565b6106ea565b34801561019257600080fd5b5061015c61073a565b3480156101a757600080fd5b506100f76101b6366004610a26565b61074e565b3480156101c757600080fd5b5061015c610771565b3480156101dc57600080fd5b506101f06101eb366004610a26565b610874565b6040516101059190610dc0565b34801561020957600080fd5b50610212610896565b6040516101059190610b25565b34801561022b57600080fd5b5061015c61023a366004610b0d565b6108a5565b34801561024b57600080fd5b5061015c61025a366004610a26565b61090e565b34801561026b57600080fd5b506101f061027a366004610a26565b610948565b34801561028b57600080fd5b506100f761029a366004610a26565b610963565b6004546005549091565b6060806000835167ffffffffffffffff8111156102d657634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156102ff578160200160208202803683370190505b5090506000845167ffffffffffffffff81111561032c57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610355578160200160208202803683370190505b50905060005b85518110156104595785818151811061038457634e487b7160e01b600052603260045260246000fd5b60200260200101518382815181106103ac57634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b031681525050600660008783815181106103f057634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000206000015482828151811061043c57634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061045181610e06565b91505061035b565b509092509050915091565b600260015414156104905760405162461bcd60e51b815260040161048790610d89565b60405180910390fd5b6002600155336000908152600660205260409020816104c15760405162461bcd60e51b815260040161048790610c02565b80546104df5760405162461bcd60e51b815260040161048790610caf565b80548211156105005760405162461bcd60e51b815260040161048790610d11565b60025481600101546105129190610dd7565b4210156105315760405162461bcd60e51b815260040161048790610cda565b80548214156105535760016004600082825461054d9190610def565b90915550505b818160000160008282546105679190610def565b9091555050604051339083156108fc029084906000818181858888f19350505050158015610599573d6000803e3d6000fd5b50336001600160a01b03167f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364836040516105d39190610dc0565b60405180910390a2505060018055565b600260015414156106065760405162461bcd60e51b815260040161048790610d89565b6002600155346106285760405162461bcd60e51b815260040161048790610d46565b33600090815260066020526040908190208151808301909252805490919081906106529034610dd7565b81524260209182015233600090815260068252604081208351815592909101516001928301556005805490919061068a908490610dd7565b925050819055506001600460008282546106a49190610dd7565b909155505060405133907febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a906106db903490610dc0565b60405180910390a25060018055565b6106f261097c565b6001600160a01b0381166107185760405162461bcd60e51b815260040161048790610c51565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b61074261097c565b61074c60006109bb565b565b6001600160a01b0316600090815260066020526040902080546001909101549091565b600260015414156107945760405162461bcd60e51b815260040161048790610d89565b600260015533600090815260066020526040902080546107c65760405162461bcd60e51b815260040161048790610caf565b60025481600101546107d89190610dd7565b4210156107f75760405162461bcd60e51b815260040161048790610cda565b80546000808355604051339183156108fc02918491818181858888f19350505050158015610829573d6000803e3d6000fd5b5060016004600082825461083d9190610def565b909155505060405133907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364906105d3908490610dc0565b6001600160a01b0381166000908152600660205260409020600101545b919050565b6000546001600160a01b031690565b6003546001600160a01b03166108b9610a0b565b6001600160a01b031614806108ed57506108d1610896565b6001600160a01b03166108e2610a0b565b6001600160a01b0316145b6109095760405162461bcd60e51b815260040161048790610c2a565b600255565b61091661097c565b6001600160a01b03811661093c5760405162461bcd60e51b815260040161048790610bbc565b610945816109bb565b50565b6001600160a01b031660009081526006602052604090205490565b6006602052600090815260409020805460019091015482565b610984610a0b565b6001600160a01b0316610995610896565b6001600160a01b03161461074c5760405162461bcd60e51b815260040161048790610c7a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b3390565b80356001600160a01b038116811461089157600080fd5b600060208284031215610a37578081fd5b610a4082610a0f565b9392505050565b60006020808385031215610a59578182fd5b823567ffffffffffffffff80821115610a70578384fd5b818501915085601f830112610a83578384fd5b813581811115610a9557610a95610e37565b838102604051601f19603f83011681018181108582111715610ab957610ab9610e37565b604052828152858101935084860182860187018a1015610ad7578788fd5b8795505b83861015610b0057610aec81610a0f565b855260019590950194938601938601610adb565b5098975050505050505050565b600060208284031215610b1e578081fd5b5035919050565b6001600160a01b0391909116815260200190565b604080825283519082018190526000906020906060840190828701845b82811015610b7b5781516001600160a01b031684529284019290840190600101610b56565b50505083810382850152845180825285830191830190845b81811015610baf57835183529284019291840191600101610b93565b5090979650505050505050565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252600e908201526d125b9d985b1a5908185b5bdd5b9d60921b604082015260600190565b6020808252600d908201526c3737903832b936b4b9b9b4b7b760991b604082015260600190565b6020808252600f908201526e696e76616c6964206164647265737360881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601190820152704e6f206465706f7369742065786973747360781b604082015260600190565b6020808252601c908201527f5769746864726177616c206e6f7420617661696c61626c652079657400000000604082015260600190565b6020808252818101527f5769746864726177616c20616d6f756e74206578636565642062616c616e6365604082015260600190565b60208082526023908201527f5374616b6520616d6f756e74206d75737420626520677265617465722074686160408201526206e20360ec1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b90815260200190565b918252602082015260400190565b60008219821115610dea57610dea610e21565b500190565b600082821015610e0157610e01610e21565b500390565b6000600019821415610e1a57610e1a610e21565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea26469706673582212200b6f3c1670bb7590175334b58020ae2ac7e7d2e27ac82635afdbf6164a3f55f764736f6c63430008010033

Deployed Bytecode

0x6080604052600436106100dd5760003560e01c8063853828b61161007f578063ae04d45d11610059578063ae04d45d1461021f578063f2fde38b1461023f578063f8b2cb4f1461025f578063fc7e286d1461027f576100dd565b8063853828b6146101bb57806385b622a6146101d05780638da5cb5b146101fd576100dd565b80633a4b66f1116100bb5780633a4b66f11461015e578063704b6c0214610166578063715018a6146101865780637a7664601461019b576100dd565b806306661abd146100e25780632d2ae1c11461010e5780632e1a7d4d1461013c575b600080fd5b3480156100ee57600080fd5b506100f761029f565b604051610105929190610dc9565b60405180910390f35b34801561011a57600080fd5b5061012e610129366004610a47565b6102a9565b604051610105929190610b39565b34801561014857600080fd5b5061015c610157366004610b0d565b610464565b005b61015c6105e3565b34801561017257600080fd5b5061015c610181366004610a26565b6106ea565b34801561019257600080fd5b5061015c61073a565b3480156101a757600080fd5b506100f76101b6366004610a26565b61074e565b3480156101c757600080fd5b5061015c610771565b3480156101dc57600080fd5b506101f06101eb366004610a26565b610874565b6040516101059190610dc0565b34801561020957600080fd5b50610212610896565b6040516101059190610b25565b34801561022b57600080fd5b5061015c61023a366004610b0d565b6108a5565b34801561024b57600080fd5b5061015c61025a366004610a26565b61090e565b34801561026b57600080fd5b506101f061027a366004610a26565b610948565b34801561028b57600080fd5b506100f761029a366004610a26565b610963565b6004546005549091565b6060806000835167ffffffffffffffff8111156102d657634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156102ff578160200160208202803683370190505b5090506000845167ffffffffffffffff81111561032c57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610355578160200160208202803683370190505b50905060005b85518110156104595785818151811061038457634e487b7160e01b600052603260045260246000fd5b60200260200101518382815181106103ac57634e487b7160e01b600052603260045260246000fd5b60200260200101906001600160a01b031690816001600160a01b031681525050600660008783815181106103f057634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000206000015482828151811061043c57634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061045181610e06565b91505061035b565b509092509050915091565b600260015414156104905760405162461bcd60e51b815260040161048790610d89565b60405180910390fd5b6002600155336000908152600660205260409020816104c15760405162461bcd60e51b815260040161048790610c02565b80546104df5760405162461bcd60e51b815260040161048790610caf565b80548211156105005760405162461bcd60e51b815260040161048790610d11565b60025481600101546105129190610dd7565b4210156105315760405162461bcd60e51b815260040161048790610cda565b80548214156105535760016004600082825461054d9190610def565b90915550505b818160000160008282546105679190610def565b9091555050604051339083156108fc029084906000818181858888f19350505050158015610599573d6000803e3d6000fd5b50336001600160a01b03167f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364836040516105d39190610dc0565b60405180910390a2505060018055565b600260015414156106065760405162461bcd60e51b815260040161048790610d89565b6002600155346106285760405162461bcd60e51b815260040161048790610d46565b33600090815260066020526040908190208151808301909252805490919081906106529034610dd7565b81524260209182015233600090815260068252604081208351815592909101516001928301556005805490919061068a908490610dd7565b925050819055506001600460008282546106a49190610dd7565b909155505060405133907febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a906106db903490610dc0565b60405180910390a25060018055565b6106f261097c565b6001600160a01b0381166107185760405162461bcd60e51b815260040161048790610c51565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b61074261097c565b61074c60006109bb565b565b6001600160a01b0316600090815260066020526040902080546001909101549091565b600260015414156107945760405162461bcd60e51b815260040161048790610d89565b600260015533600090815260066020526040902080546107c65760405162461bcd60e51b815260040161048790610caf565b60025481600101546107d89190610dd7565b4210156107f75760405162461bcd60e51b815260040161048790610cda565b80546000808355604051339183156108fc02918491818181858888f19350505050158015610829573d6000803e3d6000fd5b5060016004600082825461083d9190610def565b909155505060405133907f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364906105d3908490610dc0565b6001600160a01b0381166000908152600660205260409020600101545b919050565b6000546001600160a01b031690565b6003546001600160a01b03166108b9610a0b565b6001600160a01b031614806108ed57506108d1610896565b6001600160a01b03166108e2610a0b565b6001600160a01b0316145b6109095760405162461bcd60e51b815260040161048790610c2a565b600255565b61091661097c565b6001600160a01b03811661093c5760405162461bcd60e51b815260040161048790610bbc565b610945816109bb565b50565b6001600160a01b031660009081526006602052604090205490565b6006602052600090815260409020805460019091015482565b610984610a0b565b6001600160a01b0316610995610896565b6001600160a01b03161461074c5760405162461bcd60e51b815260040161048790610c7a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b3390565b80356001600160a01b038116811461089157600080fd5b600060208284031215610a37578081fd5b610a4082610a0f565b9392505050565b60006020808385031215610a59578182fd5b823567ffffffffffffffff80821115610a70578384fd5b818501915085601f830112610a83578384fd5b813581811115610a9557610a95610e37565b838102604051601f19603f83011681018181108582111715610ab957610ab9610e37565b604052828152858101935084860182860187018a1015610ad7578788fd5b8795505b83861015610b0057610aec81610a0f565b855260019590950194938601938601610adb565b5098975050505050505050565b600060208284031215610b1e578081fd5b5035919050565b6001600160a01b0391909116815260200190565b604080825283519082018190526000906020906060840190828701845b82811015610b7b5781516001600160a01b031684529284019290840190600101610b56565b50505083810382850152845180825285830191830190845b81811015610baf57835183529284019291840191600101610b93565b5090979650505050505050565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252600e908201526d125b9d985b1a5908185b5bdd5b9d60921b604082015260600190565b6020808252600d908201526c3737903832b936b4b9b9b4b7b760991b604082015260600190565b6020808252600f908201526e696e76616c6964206164647265737360881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601190820152704e6f206465706f7369742065786973747360781b604082015260600190565b6020808252601c908201527f5769746864726177616c206e6f7420617661696c61626c652079657400000000604082015260600190565b6020808252818101527f5769746864726177616c20616d6f756e74206578636565642062616c616e6365604082015260600190565b60208082526023908201527f5374616b6520616d6f756e74206d75737420626520677265617465722074686160408201526206e20360ec1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b90815260200190565b918252602082015260400190565b60008219821115610dea57610dea610e21565b500190565b600082821015610e0157610e01610e21565b500390565b6000600019821415610e1a57610e1a610e21565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfea26469706673582212200b6f3c1670bb7590175334b58020ae2ac7e7d2e27ac82635afdbf6164a3f55f764736f6c63430008010033

Block Transaction Gas Used Reward
view all blocks sequenced

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
[ Download: CSV Export  ]
[ 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.