ETH Price: $1,947.37 (-0.96%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim210209312024-10-22 11:50:47495 days ago1729597847IN
0x6a084832...d7d2a77D0
0 ETH0.000704886.87502471
Claim206329012024-08-29 7:58:59549 days ago1724918339IN
0x6a084832...d7d2a77D0
0 ETH0.000163131.36365726
Transfer Ownersh...205830272024-08-22 8:43:35556 days ago1724316215IN
0x6a084832...d7d2a77D0
0 ETH0.000034651.21460865
Set Vesting205829182024-08-22 8:21:47556 days ago1724314907IN
0x6a084832...d7d2a77D0
0 ETH0.000043730.94907744
Set Vesting205829152024-08-22 8:21:11556 days ago1724314871IN
0x6a084832...d7d2a77D0
0 ETH0.000050591.09814391
Set Vesting205829132024-08-22 8:20:47556 days ago1724314847IN
0x6a084832...d7d2a77D0
0 ETH0.000048811.0594404
Set Vesting205829082024-08-22 8:19:47556 days ago1724314787IN
0x6a084832...d7d2a77D0
0 ETH0.000048351.04948367
Set Vesting205828982024-08-22 8:17:47556 days ago1724314667IN
0x6a084832...d7d2a77D0
0 ETH0.000055071.19527323
Set Vesting205828962024-08-22 8:17:23556 days ago1724314643IN
0x6a084832...d7d2a77D0
0 ETH0.000046611.01166253
Set Vesting205828912024-08-22 8:16:23556 days ago1724314583IN
0x6a084832...d7d2a77D0
0 ETH0.000056081.21716915
Set Vesting205828882024-08-22 8:15:35556 days ago1724314535IN
0x6a084832...d7d2a77D0
0 ETH0.000054511.18305774

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

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

Contract Name:
VestingManager

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 1000000 runs

Other Settings:
paris EvmVersion

Contract Source Code (Solidity Standard Json-Input format)

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {IVesting} from "./interface/IVesting.sol";
import {ReentrancyGuard} from "@openzeppelin/contracts/utils/ReentrancyGuard.sol";

contract VestingManager is Ownable, ReentrancyGuard {
    // =============== Errors ===============

    /**
     * @dev Reverts if calls not by vesting contract
     */
    error OnlyVesting();

    /**
     * @dev Reverts if user not setted to contract
     */
    error NoUserToVesting();

    // =============== Mappings ===============

    /**
     * @dev User address to address of vesting where he takes tokens
     */
    mapping(address => address) public userToVesting;

    /**
     * @dev Addresses of contract for vesting
     */
    mapping(address => bool) public vestingAddresses;

    // =============== Constructor ===============

    constructor(address owner) Ownable(owner) {}

    // =============== Functions ===============

    /**
     * @dev Function for returning amount of unlocked tokens from user's vesting contract
     * @param userAddress Address of user
     * @return Amount of unlocked tokens
     */
    function unlockedBalanceOf(
        address userAddress
    ) public view returns (uint256) {
        address vestingAddress = userToVesting[userAddress];

        return IVesting(vestingAddress).unlockedBalanceOf(userAddress);
    }

    /**
     * @dev Function for buying tokens from user's vesting
     * @param amount Amount for buying
     */
    function buy(uint256 amount) external payable nonReentrant {
        address vestingAddress = userToVesting[msg.sender];
        checkUser(msg.sender);

        IVesting(vestingAddress).buy{value: msg.value}(amount);
    }

    /**
     * @dev Function for claiming unlocked token amount from user's vesting
     */
    function claim() external nonReentrant {
        address vestingAddress = userToVesting[msg.sender];
        checkUser(msg.sender);

        IVesting(vestingAddress).claim();
    }

    /**
     * @dev Getter function for getting info how many tokens user have already claimed
     * @param userAddress Address of user
     * @return Amount of claimed unlocked tokens
     */
    function getUserClaimed(
        address userAddress
    ) external view returns (uint256) {
        address vestingAddress = userToVesting[userAddress];

        return IVesting(vestingAddress).getUsersClaimed(userAddress);
    }

    /**
     * @dev Function for setting user to certain vesting
     * @param userAddress Address of user
     */
    function setUserToVesting(address userAddress) public {
        onlyVesting();
        userToVesting[userAddress] = msg.sender;
    }

    /**
     * @dev Function for setting vesting contract address
     * @param _vestingAddress Address of vesting contract
     */
    function setVesting(address _vestingAddress) public onlyOwner {
        vestingAddresses[_vestingAddress] = true;
    }

    /**
     * @dev Function for checking that `msg.sender` consists in vesting
     */
    function onlyVesting() internal view {
        if (!vestingAddresses[msg.sender]) {
            revert OnlyVesting();
        }
    }

    /**
     * @dev Function for checking that user setted to vesting
     * @param userAddress Address of user
     */
    function checkUser(address userAddress) internal view {
        address vestingAddress = userToVesting[userAddress];
        if (vestingAddress == address(0)) revert NoUserToVesting();
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol)

pragma solidity ^0.8.20;

/**
 * @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;

    /**
     * @dev Unauthorized reentrant call.
     */
    error ReentrancyGuardReentrantCall();

    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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be NOT_ENTERED
        if (_status == ENTERED) {
            revert ReentrancyGuardReentrantCall();
        }

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == ENTERED;
    }
}

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

interface IVesting {
    /**
     * @dev Function for minting tokens
     * @param amount Amount for buying
     */
    function buy(uint256 amount) external payable;

    /**
     * @dev Function for claiming unlocked token amount
     */
    function claim() external;

    /**
     * @dev Returns amount of unlocked tokens of `userAddress`
     * @notice Amount multiplied by `MULTIPLIER`
     * @param userAddress Address of token holder
     * @return Amount of unlocked tokens
     */
    function unlockedBalanceOf(
        address userAddress
    ) external view returns (uint256);

    function getUsersClaimed(
        address userAddress
    ) external view returns (uint256);
    /**
     * @dev Function for withdrawing ethers by owner
     */
    function withdraw() external payable;
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"NoUserToVesting","type":"error"},{"inputs":[],"name":"OnlyVesting","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"}],"name":"getUserClaimed","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"}],"name":"setUserToVesting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vestingAddress","type":"address"}],"name":"setVesting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"}],"name":"unlockedBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userToVesting","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"vestingAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

0x608060405234801561001057600080fd5b5060405161097e38038061097e83398101604081905261002f916100c2565b806001600160a01b03811661005e57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b61006781610072565b5050600180556100f2565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100d457600080fd5b81516001600160a01b03811681146100eb57600080fd5b9392505050565b61087d806101016000396000f3fe6080604052600436106100bc5760003560e01c806384955c8811610074578063d4ef0fa31161004e578063d4ef0fa31461020c578063d96a094a1461024f578063f2fde38b1461026257600080fd5b806384955c88146101725780638da5cb5b146101a0578063c55321e6146101ec57600080fd5b80634e71d92d116100a55780634e71d92d146101285780636f6ff3bc1461013d578063715018a61461015d57600080fd5b80630faddafa146100c15780633231a830146100e3575b600080fd5b3480156100cd57600080fd5b506100e16100dc3660046107df565b610282565b005b3480156100ef57600080fd5b506101136100fe3660046107df565b60036020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b34801561013457600080fd5b506100e16102d8565b34801561014957600080fd5b506100e16101583660046107df565b61037c565b34801561016957600080fd5b506100e16103d3565b34801561017e57600080fd5b5061019261018d3660046107df565b6103e5565b60405190815260200161011f565b3480156101ac57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161011f565b3480156101f857600080fd5b506101926102073660046107df565b610492565b34801561021857600080fd5b506101c76102273660046107df565b60026020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b6100e161025d366004610815565b6104fb565b34801561026e57600080fd5b506100e161027d3660046107df565b6105c2565b61028a610628565b73ffffffffffffffffffffffffffffffffffffffff16600090815260026020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001633179055565b6102e0610671565b3360008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1690610310906106b4565b8073ffffffffffffffffffffffffffffffffffffffff16634e71d92d6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561035857600080fd5b505af115801561036c573d6000803e3d6000fd5b505050505061037a60018055565b565b610384610717565b73ffffffffffffffffffffffffffffffffffffffff16600090815260036020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b6103db610717565b61037a600061076a565b73ffffffffffffffffffffffffffffffffffffffff8181166000818152600260205260408082205490517f84955c8800000000000000000000000000000000000000000000000000000000815260048101939093529092169081906384955c88906024015b602060405180830381865afa158015610467573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061048b919061082e565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8181166000818152600260205260408082205490517fed60e1f0000000000000000000000000000000000000000000000000000000008152600481019390935290921690819063ed60e1f09060240161044a565b610503610671565b3360008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1690610533906106b4565b6040517fd96a094a0000000000000000000000000000000000000000000000000000000081526004810183905273ffffffffffffffffffffffffffffffffffffffff82169063d96a094a9034906024016000604051808303818588803b15801561059c57600080fd5b505af11580156105b0573d6000803e3d6000fd5b5050505050506105bf60018055565b50565b6105ca610717565b73ffffffffffffffffffffffffffffffffffffffff811661061f576040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600060048201526024015b60405180910390fd5b6105bf8161076a565b3360009081526003602052604090205460ff1661037a576040517fd940e7f500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600154036106ad576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600155565b73ffffffffffffffffffffffffffffffffffffffff8082166000908152600260205260409020541680610713576040517f029deba300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461037a576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610616565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156107f157600080fd5b813573ffffffffffffffffffffffffffffffffffffffff8116811461048b57600080fd5b60006020828403121561082757600080fd5b5035919050565b60006020828403121561084057600080fd5b505191905056fea26469706673582212209ceaa3b617d82b1d9a05be6174217cc4629eff0d658e6f401f0c59017c1de6f364736f6c63430008140033000000000000000000000000c946cb236481c159f460b212b34ab246dac37fcd

Deployed Bytecode

0x6080604052600436106100bc5760003560e01c806384955c8811610074578063d4ef0fa31161004e578063d4ef0fa31461020c578063d96a094a1461024f578063f2fde38b1461026257600080fd5b806384955c88146101725780638da5cb5b146101a0578063c55321e6146101ec57600080fd5b80634e71d92d116100a55780634e71d92d146101285780636f6ff3bc1461013d578063715018a61461015d57600080fd5b80630faddafa146100c15780633231a830146100e3575b600080fd5b3480156100cd57600080fd5b506100e16100dc3660046107df565b610282565b005b3480156100ef57600080fd5b506101136100fe3660046107df565b60036020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b34801561013457600080fd5b506100e16102d8565b34801561014957600080fd5b506100e16101583660046107df565b61037c565b34801561016957600080fd5b506100e16103d3565b34801561017e57600080fd5b5061019261018d3660046107df565b6103e5565b60405190815260200161011f565b3480156101ac57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161011f565b3480156101f857600080fd5b506101926102073660046107df565b610492565b34801561021857600080fd5b506101c76102273660046107df565b60026020526000908152604090205473ffffffffffffffffffffffffffffffffffffffff1681565b6100e161025d366004610815565b6104fb565b34801561026e57600080fd5b506100e161027d3660046107df565b6105c2565b61028a610628565b73ffffffffffffffffffffffffffffffffffffffff16600090815260026020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001633179055565b6102e0610671565b3360008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1690610310906106b4565b8073ffffffffffffffffffffffffffffffffffffffff16634e71d92d6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561035857600080fd5b505af115801561036c573d6000803e3d6000fd5b505050505061037a60018055565b565b610384610717565b73ffffffffffffffffffffffffffffffffffffffff16600090815260036020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b6103db610717565b61037a600061076a565b73ffffffffffffffffffffffffffffffffffffffff8181166000818152600260205260408082205490517f84955c8800000000000000000000000000000000000000000000000000000000815260048101939093529092169081906384955c88906024015b602060405180830381865afa158015610467573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061048b919061082e565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff8181166000818152600260205260408082205490517fed60e1f0000000000000000000000000000000000000000000000000000000008152600481019390935290921690819063ed60e1f09060240161044a565b610503610671565b3360008181526002602052604090205473ffffffffffffffffffffffffffffffffffffffff1690610533906106b4565b6040517fd96a094a0000000000000000000000000000000000000000000000000000000081526004810183905273ffffffffffffffffffffffffffffffffffffffff82169063d96a094a9034906024016000604051808303818588803b15801561059c57600080fd5b505af11580156105b0573d6000803e3d6000fd5b5050505050506105bf60018055565b50565b6105ca610717565b73ffffffffffffffffffffffffffffffffffffffff811661061f576040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600060048201526024015b60405180910390fd5b6105bf8161076a565b3360009081526003602052604090205460ff1661037a576040517fd940e7f500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600154036106ad576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600155565b73ffffffffffffffffffffffffffffffffffffffff8082166000908152600260205260409020541680610713576040517f029deba300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461037a576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610616565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156107f157600080fd5b813573ffffffffffffffffffffffffffffffffffffffff8116811461048b57600080fd5b60006020828403121561082757600080fd5b5035919050565b60006020828403121561084057600080fd5b505191905056fea26469706673582212209ceaa3b617d82b1d9a05be6174217cc4629eff0d658e6f401f0c59017c1de6f364736f6c63430008140033

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
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.