ETH Price: $3,480.77 (+7.23%)
Gas: 7 Gwei

Contract

0xD28c8Ff18f811E5fcD9b5B07889A343da8FD6502
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve203025592024-07-14 5:09:3542 hrs ago1720933775IN
0xD28c8Ff1...da8FD6502
0 ETH0.000159293.42233672
Approve202501332024-07-06 21:23:599 days ago1720301039IN
0xD28c8Ff1...da8FD6502
0 ETH0.000078911.69767095
Approve202497482024-07-06 20:06:479 days ago1720296407IN
0xD28c8Ff1...da8FD6502
0 ETH0.000070561.5179586
Approve202211742024-07-02 20:20:4713 days ago1719951647IN
0xD28c8Ff1...da8FD6502
0 ETH0.000186874.02
Transfer202210912024-07-02 20:04:1113 days ago1719950651IN
0xD28c8Ff1...da8FD6502
0 ETH0.000197934.24632949
Approve200657412024-06-11 2:55:5934 days ago1718074559IN
0xD28c8Ff1...da8FD6502
0 ETH0.000432369.30072325
Approve199912872024-05-31 17:24:4745 days ago1717176287IN
0xD28c8Ff1...da8FD6502
0 ETH0.000325513.41555421
Approve199365622024-05-24 1:49:1152 days ago1716515351IN
0xD28c8Ff1...da8FD6502
0 ETH0.000276525.94839509
Approve198542102024-05-12 13:22:5964 days ago1715520179IN
0xD28c8Ff1...da8FD6502
0 ETH0.00020094.32172375
Approve198515032024-05-12 4:17:1164 days ago1715487431IN
0xD28c8Ff1...da8FD6502
0 ETH0.00009393.8703336
Approve198514992024-05-12 4:16:2364 days ago1715487383IN
0xD28c8Ff1...da8FD6502
0 ETH0.000093673.8703336
Approve198514852024-05-12 4:13:3564 days ago1715487215IN
0xD28c8Ff1...da8FD6502
0 ETH0.000152713.28514526
Approve196999372024-04-20 23:34:4785 days ago1713656087IN
0xD28c8Ff1...da8FD6502
0 ETH0.00030926.68775478
Approve196928472024-04-19 23:46:4786 days ago1713570407IN
0xD28c8Ff1...da8FD6502
0 ETH0.000441439.49581262
Transfer Ownersh...196553192024-04-14 17:39:3592 days ago1713116375IN
0xD28c8Ff1...da8FD6502
0 ETH0.0005489419.21553918
Approve195383342024-03-29 7:59:59108 days ago1711699199IN
0xD28c8Ff1...da8FD6502
0 ETH0.0011160123.97612598
Approve194675602024-03-19 8:18:47118 days ago1710836327IN
0xD28c8Ff1...da8FD6502
0 ETH0.001382329.69706108
Approve194652472024-03-19 0:30:47118 days ago1710808247IN
0xD28c8Ff1...da8FD6502
0 ETH0.0012689427.29670013
Approve193038542024-02-25 9:58:59141 days ago1708855139IN
0xD28c8Ff1...da8FD6502
0 ETH0.0011131723.94584603
Approve192535892024-02-18 8:45:47148 days ago1708245947IN
0xD28c8Ff1...da8FD6502
0 ETH0.0009309120.13451536
Approve190926752024-01-26 18:50:59171 days ago1706295059IN
0xD28c8Ff1...da8FD6502
0 ETH0.000913319.62111678
Approve190518042024-01-21 0:58:11176 days ago1705798691IN
0xD28c8Ff1...da8FD6502
0 ETH0.0005304911.45905812
Approve189995372024-01-13 17:44:11184 days ago1705167851IN
0xD28c8Ff1...da8FD6502
0 ETH0.000868618.78182026
Approve189931902024-01-12 20:25:59185 days ago1705091159IN
0xD28c8Ff1...da8FD6502
0 ETH0.001021221.93918941
Approve189826472024-01-11 8:58:47186 days ago1704963527IN
0xD28c8Ff1...da8FD6502
0 ETH0.0006396326.36239972
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
SafePad

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion
File 1 of 1 : SafePad.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.19;

library Address {
    function isContract(address account) internal view returns (bool) {
        return account.code.length > 0;
    }

    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    function functionCall(
        address target,
        bytes memory data
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                0,
                "Address: low-level call failed"
            );
    }

    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return
            verifyCallResultFromTarget(
                target,
                success,
                returndata,
                errorMessage
            );
    }

    function functionStaticCall(
        address target,
        bytes memory data
    ) internal view returns (bytes memory) {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return
            verifyCallResultFromTarget(
                target,
                success,
                returndata,
                errorMessage
            );
    }

    function functionDelegateCall(
        address target,
        bytes memory data
    ) internal returns (bytes memory) {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return
            verifyCallResultFromTarget(
                target,
                success,
                returndata,
                errorMessage
            );
    }

    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(
        bytes memory returndata,
        string memory errorMessage
    ) private pure {
        if (returndata.length > 0) {
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

interface IERC20Permit {
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    function nonces(address owner) external view returns (uint256);

    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

interface IERC20 {
    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );

    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function transfer(address to, uint256 amount) external returns (bool);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

library SafeERC20 {
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.transfer.selector, to, value)
        );
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.transferFrom.selector, from, to, value)
        );
    }

    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.approve.selector, spender, value)
        );
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(
                token.approve.selector,
                spender,
                oldAllowance + value
            )
        );
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(
                oldAllowance >= value,
                "SafeERC20: decreased allowance below zero"
            );
            _callOptionalReturn(
                token,
                abi.encodeWithSelector(
                    token.approve.selector,
                    spender,
                    oldAllowance - value
                )
            );
        }
    }

    function forceApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        bytes memory approvalCall = abi.encodeWithSelector(
            token.approve.selector,
            spender,
            value
        );

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(
                token,
                abi.encodeWithSelector(token.approve.selector, spender, 0)
            );
            _callOptionalReturn(token, approvalCall);
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(
            nonceAfter == nonceBefore + 1,
            "SafeERC20: permit did not succeed"
        );
    }

    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        bytes memory returndata = address(token).functionCall(
            data,
            "SafeERC20: low-level call failed"
        );
        require(
            returndata.length == 0 || abi.decode(returndata, (bool)),
            "SafeERC20: ERC20 operation did not succeed"
        );
    }

    function _callOptionalReturnBool(
        IERC20 token,
        bytes memory data
    ) private returns (bool) {
        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success &&
            (returndata.length == 0 || abi.decode(returndata, (bool))) &&
            Address.isContract(address(token));
    }
}

interface IERC20Metadata is IERC20 {
    function name() external view returns (string memory);

    function symbol() external view returns (string memory);

    function decimals() external view returns (uint8);
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(
        address account
    ) public view virtual override returns (uint256) {
        return _balances[account];
    }

    function transfer(
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    function allowance(
        address owner,
        address spender
    ) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(
        address spender,
        uint256 amount
    ) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    function increaseAllowance(
        address spender,
        uint256 addedValue
    ) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;

            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;

            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

abstract contract Ownable is Context {
    address private _owner;

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

    constructor() {
        _transferOwnership(_msgSender());
    }

    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

contract SafePad is Ownable, ERC20 {
    using SafeERC20 for IERC20;

    constructor() ERC20("SafePad", "SAFEPAD") {
        _transferOwnership(0xe2c1276827F212478532B74520820a558d9B9d70);
        _mint(owner(), 1_000_000_000_000 * (10 ** 18));
    }

    receive() external payable {}

    fallback() external payable {}

    function burn(uint256 amount) external {
        super._burn(_msgSender(), amount);
    }

    function claimStuckTokens(address token) external onlyOwner {
        if (token == address(0x0)) {
            payable(_msgSender()).transfer(address(this).balance);
            return;
        }
        IERC20 ERC20token = IERC20(token);
        uint256 balance = ERC20token.balanceOf(address(this));
        ERC20token.safeTransfer(_msgSender(), balance);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040518060400160405280600781526020016614d8599954185960ca1b8152506040518060400160405280600781526020016614d0519154105160ca1b8152506200006c62000066620000e260201b60201c565b620000e6565b60046200007a8382620002a7565b506005620000898282620002a7565b505050620000b173e2c1276827f212478532b74520820a558d9b9d70620000e660201b60201c565b620000dc620000c86000546001600160a01b031690565b6c0c9f2c9cd04674edea4000000062000136565b6200039b565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001915760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620001a5919062000373565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200022e57607f821691505b6020821081036200024f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001fe57600081815260208120601f850160051c810160208610156200027e5750805b601f850160051c820191505b818110156200029f578281556001016200028a565b505050505050565b81516001600160401b03811115620002c357620002c362000203565b620002db81620002d4845462000219565b8462000255565b602080601f831160018114620003135760008415620002fa5750858301515b600019600386901b1c1916600185901b1785556200029f565b600085815260208120601f198616915b82811015620003445788860151825594840194600190910190840162000323565b5085821015620003635787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200039557634e487b7160e01b600052601160045260246000fd5b92915050565b61139a80620003ab6000396000f3fe6080604052600436106100eb5760003560e01c8063715018a611610084578063a9059cbb11610056578063a9059cbb146102ac578063dd62ed3e146102cc578063f2fde38b1461031f578063f9d0831a1461033f57005b8063715018a61461022d5780638da5cb5b1461024257806395d89b4114610277578063a457c2d71461028c57005b8063313ce567116100bd578063313ce5671461018e57806339509351146101aa57806342966c68146101ca57806370a08231146101ea57005b806306fdde03146100f4578063095ea7b31461011f57806318160ddd1461014f57806323b872dd1461016e57005b366100f257005b005b34801561010057600080fd5b5061010961035f565b6040516101169190611132565b60405180910390f35b34801561012b57600080fd5b5061013f61013a3660046111ac565b6103f1565b6040519015158152602001610116565b34801561015b57600080fd5b506003545b604051908152602001610116565b34801561017a57600080fd5b5061013f6101893660046111d6565b61040b565b34801561019a57600080fd5b5060405160128152602001610116565b3480156101b657600080fd5b5061013f6101c53660046111ac565b61042f565b3480156101d657600080fd5b506100f26101e5366004611212565b61047b565b3480156101f657600080fd5b5061016061020536600461122b565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b34801561023957600080fd5b506100f2610488565b34801561024e57600080fd5b5060005460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610116565b34801561028357600080fd5b5061010961049c565b34801561029857600080fd5b5061013f6102a73660046111ac565b6104ab565b3480156102b857600080fd5b5061013f6102c73660046111ac565b610567565b3480156102d857600080fd5b506101606102e736600461124d565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260026020908152604080832093909416825291909152205490565b34801561032b57600080fd5b506100f261033a36600461122b565b610575565b34801561034b57600080fd5b506100f261035a36600461122b565b61060f565b60606004805461036e90611280565b80601f016020809104026020016040519081016040528092919081815260200182805461039a90611280565b80156103e75780601f106103bc576101008083540402835291602001916103e7565b820191906000526020600020905b8154815290600101906020018083116103ca57829003601f168201915b5050505050905090565b6000336103ff81858561071d565b60019150505b92915050565b60003361041985828561089c565b610424858585610959565b506001949350505050565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906103ff90829086906104769087906112d3565b61071d565b6104853382610b81565b50565b610490610d13565b61049a6000610d7a565b565b60606005805461036e90611280565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091908381101561055a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610424828686840361071d565b6000336103ff818585610959565b61057d610d13565b73ffffffffffffffffffffffffffffffffffffffff81166106065760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610551565b61048581610d7a565b610617610d13565b73ffffffffffffffffffffffffffffffffffffffff81166106625760405133904780156108fc02916000818181858888f1935050505015801561065e573d6000803e3d6000fd5b5050565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152819060009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa1580156106d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f5919061130d565b905061071873ffffffffffffffffffffffffffffffffffffffff83163383610def565b505050565b73ffffffffffffffffffffffffffffffffffffffff83166107a55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610551565b73ffffffffffffffffffffffffffffffffffffffff821661082e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610551565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600260209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461095357818110156109465760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610551565b610953848484840361071d565b50505050565b73ffffffffffffffffffffffffffffffffffffffff83166109e25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610551565b73ffffffffffffffffffffffffffffffffffffffff8216610a6b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610551565b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604090205481811015610b075760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610551565b73ffffffffffffffffffffffffffffffffffffffff80851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610b749086815260200190565b60405180910390a3610953565b73ffffffffffffffffffffffffffffffffffffffff8216610c0a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610551565b73ffffffffffffffffffffffffffffffffffffffff821660009081526001602052604090205481811015610ca65760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610551565b73ffffffffffffffffffffffffffffffffffffffff831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461049a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610551565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805173ffffffffffffffffffffffffffffffffffffffff848116602483015260448083018590528351808403909101815260649092018352602080830180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65649084015261071892869291600091610eba918516908490610f4d565b9050805160001480610edb575080806020019051810190610edb9190611326565b6107185760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610551565b6060610f5c8484600085610f64565b949350505050565b606082471015610fdc5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610551565b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516110059190611348565b60006040518083038185875af1925050503d8060008114611042576040519150601f19603f3d011682016040523d82523d6000602084013e611047565b606091505b509150915061105887838387611063565b979650505050505050565b606083156110df5782516000036110d85773ffffffffffffffffffffffffffffffffffffffff85163b6110d85760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610551565b5081610f5c565b610f5c83838151156110f45781518083602001fd5b8060405162461bcd60e51b81526004016105519190611132565b60005b83811015611129578181015183820152602001611111565b50506000910152565b602081526000825180602084015261115181604085016020870161110e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b803573ffffffffffffffffffffffffffffffffffffffff811681146111a757600080fd5b919050565b600080604083850312156111bf57600080fd5b6111c883611183565b946020939093013593505050565b6000806000606084860312156111eb57600080fd5b6111f484611183565b925061120260208501611183565b9150604084013590509250925092565b60006020828403121561122457600080fd5b5035919050565b60006020828403121561123d57600080fd5b61124682611183565b9392505050565b6000806040838503121561126057600080fd5b61126983611183565b915061127760208401611183565b90509250929050565b600181811c9082168061129457607f821691505b6020821081036112cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b80820180821115610405577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006020828403121561131f57600080fd5b5051919050565b60006020828403121561133857600080fd5b8151801515811461124657600080fd5b6000825161135a81846020870161110e565b919091019291505056fea2646970667358221220e7742778ade60754dae1bfecc4ea8d75b2ae8e157c14071547d19e4583315ca764736f6c63430008130033

Deployed Bytecode

0x6080604052600436106100eb5760003560e01c8063715018a611610084578063a9059cbb11610056578063a9059cbb146102ac578063dd62ed3e146102cc578063f2fde38b1461031f578063f9d0831a1461033f57005b8063715018a61461022d5780638da5cb5b1461024257806395d89b4114610277578063a457c2d71461028c57005b8063313ce567116100bd578063313ce5671461018e57806339509351146101aa57806342966c68146101ca57806370a08231146101ea57005b806306fdde03146100f4578063095ea7b31461011f57806318160ddd1461014f57806323b872dd1461016e57005b366100f257005b005b34801561010057600080fd5b5061010961035f565b6040516101169190611132565b60405180910390f35b34801561012b57600080fd5b5061013f61013a3660046111ac565b6103f1565b6040519015158152602001610116565b34801561015b57600080fd5b506003545b604051908152602001610116565b34801561017a57600080fd5b5061013f6101893660046111d6565b61040b565b34801561019a57600080fd5b5060405160128152602001610116565b3480156101b657600080fd5b5061013f6101c53660046111ac565b61042f565b3480156101d657600080fd5b506100f26101e5366004611212565b61047b565b3480156101f657600080fd5b5061016061020536600461122b565b73ffffffffffffffffffffffffffffffffffffffff1660009081526001602052604090205490565b34801561023957600080fd5b506100f2610488565b34801561024e57600080fd5b5060005460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610116565b34801561028357600080fd5b5061010961049c565b34801561029857600080fd5b5061013f6102a73660046111ac565b6104ab565b3480156102b857600080fd5b5061013f6102c73660046111ac565b610567565b3480156102d857600080fd5b506101606102e736600461124d565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260026020908152604080832093909416825291909152205490565b34801561032b57600080fd5b506100f261033a36600461122b565b610575565b34801561034b57600080fd5b506100f261035a36600461122b565b61060f565b60606004805461036e90611280565b80601f016020809104026020016040519081016040528092919081815260200182805461039a90611280565b80156103e75780601f106103bc576101008083540402835291602001916103e7565b820191906000526020600020905b8154815290600101906020018083116103ca57829003601f168201915b5050505050905090565b6000336103ff81858561071d565b60019150505b92915050565b60003361041985828561089c565b610424858585610959565b506001949350505050565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906103ff90829086906104769087906112d3565b61071d565b6104853382610b81565b50565b610490610d13565b61049a6000610d7a565b565b60606005805461036e90611280565b33600081815260026020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091908381101561055a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610424828686840361071d565b6000336103ff818585610959565b61057d610d13565b73ffffffffffffffffffffffffffffffffffffffff81166106065760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610551565b61048581610d7a565b610617610d13565b73ffffffffffffffffffffffffffffffffffffffff81166106625760405133904780156108fc02916000818181858888f1935050505015801561065e573d6000803e3d6000fd5b5050565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152819060009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa1580156106d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f5919061130d565b905061071873ffffffffffffffffffffffffffffffffffffffff83163383610def565b505050565b73ffffffffffffffffffffffffffffffffffffffff83166107a55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610551565b73ffffffffffffffffffffffffffffffffffffffff821661082e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610551565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600260209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461095357818110156109465760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610551565b610953848484840361071d565b50505050565b73ffffffffffffffffffffffffffffffffffffffff83166109e25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610551565b73ffffffffffffffffffffffffffffffffffffffff8216610a6b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610551565b73ffffffffffffffffffffffffffffffffffffffff831660009081526001602052604090205481811015610b075760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610551565b73ffffffffffffffffffffffffffffffffffffffff80851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610b749086815260200190565b60405180910390a3610953565b73ffffffffffffffffffffffffffffffffffffffff8216610c0a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610551565b73ffffffffffffffffffffffffffffffffffffffff821660009081526001602052604090205481811015610ca65760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610551565b73ffffffffffffffffffffffffffffffffffffffff831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461049a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610551565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6040805173ffffffffffffffffffffffffffffffffffffffff848116602483015260448083018590528351808403909101815260649092018352602080830180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905283518085019094528084527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65649084015261071892869291600091610eba918516908490610f4d565b9050805160001480610edb575080806020019051810190610edb9190611326565b6107185760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610551565b6060610f5c8484600085610f64565b949350505050565b606082471015610fdc5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610551565b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516110059190611348565b60006040518083038185875af1925050503d8060008114611042576040519150601f19603f3d011682016040523d82523d6000602084013e611047565b606091505b509150915061105887838387611063565b979650505050505050565b606083156110df5782516000036110d85773ffffffffffffffffffffffffffffffffffffffff85163b6110d85760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610551565b5081610f5c565b610f5c83838151156110f45781518083602001fd5b8060405162461bcd60e51b81526004016105519190611132565b60005b83811015611129578181015183820152602001611111565b50506000910152565b602081526000825180602084015261115181604085016020870161110e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b803573ffffffffffffffffffffffffffffffffffffffff811681146111a757600080fd5b919050565b600080604083850312156111bf57600080fd5b6111c883611183565b946020939093013593505050565b6000806000606084860312156111eb57600080fd5b6111f484611183565b925061120260208501611183565b9150604084013590509250925092565b60006020828403121561122457600080fd5b5035919050565b60006020828403121561123d57600080fd5b61124682611183565b9392505050565b6000806040838503121561126057600080fd5b61126983611183565b915061127760208401611183565b90509250929050565b600181811c9082168061129457607f821691505b6020821081036112cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b80820180821115610405577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006020828403121561131f57600080fd5b5051919050565b60006020828403121561133857600080fd5b8151801515811461124657600080fd5b6000825161135a81846020870161110e565b919091019291505056fea2646970667358221220e7742778ade60754dae1bfecc4ea8d75b2ae8e157c14071547d19e4583315ca764736f6c63430008130033

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.