ETH Price: $3,488.81 (+2.17%)

Contract

0xd611d21e956e42b43Ba48F22A1a70421db52A2aC
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve172675862023-05-15 20:36:11589 days ago1684182971IN
0xd611d21e...1db52A2aC
0 ETH0.00662463143.30361142
Approve172675642023-05-15 20:31:47589 days ago1684182707IN
0xd611d21e...1db52A2aC
0 ETH0.00713982153.41272874
Approve172675292023-05-15 20:24:47589 days ago1684182287IN
0xd611d21e...1db52A2aC
0 ETH0.0039713285.33150558
Approve172675272023-05-15 20:24:23589 days ago1684182263IN
0xd611d21e...1db52A2aC
0 ETH0.0037468780.94690993
Approve172675172023-05-15 20:22:23589 days ago1684182143IN
0xd611d21e...1db52A2aC
0 ETH0.003561176.51704044
Approve172675172023-05-15 20:22:23589 days ago1684182143IN
0xd611d21e...1db52A2aC
0 ETH0.003561176.51704044
Approve172675142023-05-15 20:21:47589 days ago1684182107IN
0xd611d21e...1db52A2aC
0 ETH0.0035424576.11625091
Approve172675102023-05-15 20:20:59589 days ago1684182059IN
0xd611d21e...1db52A2aC
0 ETH0.0033828472.6867663

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Worthless

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 1000000 runs

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

library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

interface IERC20 {
    function totalSupply() external view returns (uint256);

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

    function transfer(
        address recipient,
        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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

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

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

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint
    );

    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    )
        external
        payable
        returns (uint amountToken, uint amountETH, uint liquidity);

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
}

interface IUniswapV2Pair {
    function sync() external;
}

contract Worthless is Context, IERC20 {
    using SafeMath for uint256;

    string private constant _name = "Worthless";
    string private constant _symbol = "WORTHLESS";
    uint8 private constant _decimals = 18;
    uint256 private _tTotal = 1000000000 * 10 ** _decimals;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

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

    constructor() {
        balances[_msgSender()] = _tTotal;
        emit Transfer(address(0), _msgSender(), _tTotal);

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;
    }

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

    function name() public pure returns (string memory) {
        return _name;
    }

    function symbol() public pure returns (string memory) {
        return _symbol;
    }

    function symbolFnctn() public pure returns (string memory) {
        return _symbol;
    }

    function decimals() public pure returns (uint8) {
        return _decimals;
    }

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

    function transfer(
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()] - amount
        );
        return true;
    }

    function increaseAllowance(
        address spender,
        uint256 addedValue
    ) public virtual returns (bool) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender] + addedValue
        );
        return true;
    }

    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender] - subtractedValue
        );
        return true;
    }

    function _approve(address owner, address spender, uint256 amount) private {
        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 _burnTokens(address from, uint256 value) internal {
        require(from != address(0), "ERC20: burn from the zero address");
        balances[from] = balances[from].sub(
            value,
            "ERC20: burn amount exceeds balance"
        );
        _tTotal = _tTotal.sub(value);
        emit Transfer(from, address(0), value);
    }

    function burn(uint256 amount) external {
        _burnTokens(_msgSender(), amount);
    }

    function _transfer(address from, address to, uint256 amount) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        balances[from] -= amount;
        balances[to] += amount;
        emit Transfer(from, to, amount);
    }
}

Settings
{
  "remappings": [
    "@balancer-labs/=lib/balancer-v2-monorepo/../../node_modules/@balancer-labs/",
    "balancer-v2-monorepo/=lib/balancer-v2-monorepo/",
    "balancer-v2-vault-interfaces/=lib/balancer-v2-monorepo/pkg/interfaces/contracts/vault/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/contracts/",
    "solady/=lib/solady/src/",
    "solmate/=lib/solmate/src/",
    "uniswap-v2-interfaces/=lib/v2-periphery/contracts/interfaces/",
    "v2-periphery/=lib/v2-periphery/contracts/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 1000000
  },
  "metadata": {
    "bytecodeHash": "none",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "london",
  "libraries": {}
}

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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"pure","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"symbolFnctn","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052620000126012600a6200036a565b6200002290633b9aca0062000382565b6000553480156200003257600080fd5b50600054600360006200004a6200025160201b60201c565b6001600160a01b03168152602081019190915260400160002055336001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600054604051620000ad91815260200190565b60405180910390a36000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200010f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200013591906200039c565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000183573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a991906200039c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001f7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021d91906200039c565b600180546001600160a01b039485166001600160a01b031991821617909155600280549290941691161790915550620003c7565b3390565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620002ac57816000190482111562000290576200029062000255565b808516156200029e57918102915b93841c939080029062000270565b509250929050565b600082620002c55750600162000364565b81620002d45750600062000364565b8160018114620002ed5760028114620002f85762000318565b600191505062000364565b60ff8411156200030c576200030c62000255565b50506001821b62000364565b5060208310610133831016604e8410600b84101617156200033d575081810a62000364565b6200034983836200026b565b806000190482111562000360576200036062000255565b0290505b92915050565b60006200037b60ff841683620002b4565b9392505050565b808202811582820484141762000364576200036462000255565b600060208284031215620003af57600080fd5b81516001600160a01b03811681146200037b57600080fd5b610c7880620003d76000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806342966c681161009757806395d89b411161006657806395d89b411461025f578063a457c2d714610298578063a9059cbb146102ab578063dd62ed3e146102be57600080fd5b806342966c68146101f457806349bd5a5e1461020957806370a08231146102295780637c4273351461025f57600080fd5b806318160ddd116100d357806318160ddd146101ad57806323b872dd146101bf578063313ce567146101d257806339509351146101e157600080fd5b806306fdde03146100fa578063095ea7b3146101455780631694505e14610168575b600080fd5b60408051808201909152600981527f576f7274686c657373000000000000000000000000000000000000000000000060208201525b60405161013c9190610a92565b60405180910390f35b610158610153366004610b27565b610304565b604051901515815260200161013c565b6001546101889073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161013c565b6000545b60405190815260200161013c565b6101586101cd366004610b51565b61031b565b6040516012815260200161013c565b6101586101ef366004610b27565b61037a565b610207610202366004610b8d565b6103be565b005b6002546101889073ffffffffffffffffffffffffffffffffffffffff1681565b6101b1610237366004610ba6565b73ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b60408051808201909152600981527f574f5254484c4553530000000000000000000000000000000000000000000000602082015261012f565b6101586102a6366004610b27565b6103cb565b6101586102b9366004610b27565b61040f565b6101b16102cc366004610bc1565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260046020908152604080832093909416825291909152205490565b600061031133848461041c565b5060015b92915050565b60006103288484846105d5565b73ffffffffffffffffffffffffffffffffffffffff841660009081526004602090815260408083203380855292529091205461037091869161036b908690610c23565b61041c565b5060019392505050565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161031191859061036b908690610c36565b6103c83382610880565b50565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161031191859061036b908690610c23565b60006103113384846105d5565b73ffffffffffffffffffffffffffffffffffffffff83166104c3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016104ba565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104ba565b73ffffffffffffffffffffffffffffffffffffffff821661071b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104ba565b600081116107ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f000000000000000000000000000000000000000000000060648201526084016104ba565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260036020526040812080548392906107e0908490610c23565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805483929061081a908490610c36565b925050819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516105c891815260200190565b73ffffffffffffffffffffffffffffffffffffffff8216610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016104ba565b61096d81604051806060016040528060228152602001610c4a6022913973ffffffffffffffffffffffffffffffffffffffff851660009081526003602052604090205491906109f5565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260036020526040812091909155546109a19082610a49565b600090815560405182815273ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60008184841115610a33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ba9190610a92565b506000610a408486610c23565b95945050505050565b6000610a8b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506109f5565b9392505050565b600060208083528351808285015260005b81811015610abf57858101830151858201604001528201610aa3565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610b2257600080fd5b919050565b60008060408385031215610b3a57600080fd5b610b4383610afe565b946020939093013593505050565b600080600060608486031215610b6657600080fd5b610b6f84610afe565b9250610b7d60208501610afe565b9150604084013590509250925092565b600060208284031215610b9f57600080fd5b5035919050565b600060208284031215610bb857600080fd5b610a8b82610afe565b60008060408385031215610bd457600080fd5b610bdd83610afe565b9150610beb60208401610afe565b90509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8181038181111561031557610315610bf4565b8082018082111561031557610315610bf456fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e6365a164736f6c6343000813000a

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806342966c681161009757806395d89b411161006657806395d89b411461025f578063a457c2d714610298578063a9059cbb146102ab578063dd62ed3e146102be57600080fd5b806342966c68146101f457806349bd5a5e1461020957806370a08231146102295780637c4273351461025f57600080fd5b806318160ddd116100d357806318160ddd146101ad57806323b872dd146101bf578063313ce567146101d257806339509351146101e157600080fd5b806306fdde03146100fa578063095ea7b3146101455780631694505e14610168575b600080fd5b60408051808201909152600981527f576f7274686c657373000000000000000000000000000000000000000000000060208201525b60405161013c9190610a92565b60405180910390f35b610158610153366004610b27565b610304565b604051901515815260200161013c565b6001546101889073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161013c565b6000545b60405190815260200161013c565b6101586101cd366004610b51565b61031b565b6040516012815260200161013c565b6101586101ef366004610b27565b61037a565b610207610202366004610b8d565b6103be565b005b6002546101889073ffffffffffffffffffffffffffffffffffffffff1681565b6101b1610237366004610ba6565b73ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b60408051808201909152600981527f574f5254484c4553530000000000000000000000000000000000000000000000602082015261012f565b6101586102a6366004610b27565b6103cb565b6101586102b9366004610b27565b61040f565b6101b16102cc366004610bc1565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260046020908152604080832093909416825291909152205490565b600061031133848461041c565b5060015b92915050565b60006103288484846105d5565b73ffffffffffffffffffffffffffffffffffffffff841660009081526004602090815260408083203380855292529091205461037091869161036b908690610c23565b61041c565b5060019392505050565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161031191859061036b908690610c36565b6103c83382610880565b50565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909161031191859061036b908690610c23565b60006103113384846105d5565b73ffffffffffffffffffffffffffffffffffffffff83166104c3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216610566576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016104ba565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316610678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104ba565b73ffffffffffffffffffffffffffffffffffffffff821661071b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104ba565b600081116107ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f000000000000000000000000000000000000000000000060648201526084016104ba565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260036020526040812080548392906107e0908490610c23565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805483929061081a908490610c36565b925050819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516105c891815260200190565b73ffffffffffffffffffffffffffffffffffffffff8216610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016104ba565b61096d81604051806060016040528060228152602001610c4a6022913973ffffffffffffffffffffffffffffffffffffffff851660009081526003602052604090205491906109f5565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260036020526040812091909155546109a19082610a49565b600090815560405182815273ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60008184841115610a33576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ba9190610a92565b506000610a408486610c23565b95945050505050565b6000610a8b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506109f5565b9392505050565b600060208083528351808285015260005b81811015610abf57858101830151858201604001528201610aa3565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610b2257600080fd5b919050565b60008060408385031215610b3a57600080fd5b610b4383610afe565b946020939093013593505050565b600080600060608486031215610b6657600080fd5b610b6f84610afe565b9250610b7d60208501610afe565b9150604084013590509250925092565b600060208284031215610b9f57600080fd5b5035919050565b600060208284031215610bb857600080fd5b610a8b82610afe565b60008060408385031215610bd457600080fd5b610bdd83610afe565b9150610beb60208401610afe565b90509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8181038181111561031557610315610bf4565b8082018082111561031557610315610bf456fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e6365a164736f6c6343000813000a

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.