S Price: $0.722242 (+7.32%)

Contract

0xbaC4e2fA5622399E7d17A037f59fCEA3E76a8570

Overview

S Balance

Sonic LogoSonic LogoSonic Logo0 S

S Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

Please try again later

Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

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

Contract Name:
FairToken

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 1 : MyToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors (EIP-6093).
 */
interface IERC20Errors {
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
    error ERC20InvalidSender(address sender);
    error ERC20InvalidReceiver(address receiver);
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
    error ERC20InvalidApprover(address approver);
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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 value) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 value) external returns (bool);
    function transferFrom(address from, address to, uint256 value) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
interface IERC20Metadata is IERC20 {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view returns (uint8);
}

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612.
 */
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);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

/**
 * @dev Basic context from OpenZeppelin to handle `msg.sender`.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

/**
 * @dev Library for ECDSA signature recovery (used in EIP-2612 permit).
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS
    }

    error ECDSAInvalidSignature();
    error ECDSAInvalidSignatureLength(uint256 length);
    error ECDSAInvalidSignatureS(bytes32 s);

    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature);
        _throwError(error, errorArg);
        return recovered;
    }

    function tryRecover(bytes32 hash, bytes memory signature)
        internal
        pure
        returns (address, RecoverError, bytes32)
    {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // solhint-disable-next-line no-inline-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length));
        }
    }

    function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s)
        internal
        pure
        returns (address, RecoverError, bytes32)
    {
        // Enforce s in lower half
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF) {
            return (address(0), RecoverError.InvalidSignatureS, s);
        }
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature, bytes32(0));
        }
        return (signer, RecoverError.NoError, bytes32(0));
    }

    function _throwError(RecoverError error, bytes32 errorArg) private pure {
        if (error == RecoverError.NoError) {
            return;
        } else if (error == RecoverError.InvalidSignature) {
            revert ECDSAInvalidSignature();
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert ECDSAInvalidSignatureLength(uint256(errorArg));
        } else if (error == RecoverError.InvalidSignatureS) {
            revert ECDSAInvalidSignatureS(errorArg);
        }
    }
}

/**
 * @dev Minimal library for hashing typed data (EIP-712).
 */
library EIP712 {
    bytes32 private constant TYPE_HASH =
        keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");

    function domainSeparatorV4(
        string memory name,
        string memory version,
        uint256 chainId,
        address verifyingContract
    ) internal pure returns (bytes32) {
        return keccak256(
            abi.encode(TYPE_HASH, keccak256(bytes(name)), keccak256(bytes(version)), chainId, verifyingContract)
        );
    }

    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash)
        internal
        pure
        returns (bytes32)
    {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

/**
 * @dev Minimal Nonces tracking for EIP-2612.
 */
abstract contract Nonces {
    mapping(address => uint256) private _nonces;

    function nonces(address owner) public view virtual returns (uint256) {
        return _nonces[owner];
    }

    function _useNonce(address owner) internal virtual returns (uint256 current) {
        current = _nonces[owner];
        _nonces[owner]++;
    }
}

/**
 * @dev Minimal ERC20 base with custom errors from EIP-6093.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    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 returns (string memory) {
        return _name;
    }
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }
    function decimals() public view virtual returns (uint8) {
        return 18;
    }
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }
    function balanceOf(address account) public view virtual returns (uint256) {
        return _balances[account];
    }

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

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

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

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

    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // mint
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            // burn
            unchecked {
                _totalSupply -= value;
            }
        } else {
            unchecked {
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    function _mint(address account, uint256 value) internal virtual {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    function _approve(address owner, address spender, uint256 value) internal virtual {
        _approve(owner, spender, value, true);
    }

    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

/**
 * @dev Minimal ERC20Permit (EIP-2612) using the above ECDSA/EIP712/Nonces libs.
 */
abstract contract ERC20Permit is ERC20, IERC20Permit, Nonces {
    bytes32 private constant PERMIT_TYPEHASH =
        keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");

    error ERC2612ExpiredSignature(uint256 deadline);
    error ERC2612InvalidSigner(address signer, address owner);

    // domain separator is cached after constructor
    bytes32 private immutable _DOMAIN_SEPARATOR;
    uint256 private immutable _CHAIN_ID;
    address private immutable _VERIFYING_CONTRACT;

    constructor(string memory name_) {
        _CHAIN_ID = block.chainid;
        _VERIFYING_CONTRACT = address(this);
        _DOMAIN_SEPARATOR = EIP712.domainSeparatorV4(name_, "1", _CHAIN_ID, _VERIFYING_CONTRACT);
    }

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual {
        if (block.timestamp > deadline) {
            revert ERC2612ExpiredSignature(deadline);
        }
        // EIP-712 struct hash
        bytes32 structHash = keccak256(abi.encode(
            PERMIT_TYPEHASH,
            owner,
            spender,
            value,
            _useNonce(owner),
            deadline
        ));
        // typed data hash
        bytes32 hash = EIP712.toTypedDataHash(_DOMAIN_SEPARATOR, structHash);

        address signer = ECDSA.recover(hash, abi.encodePacked(r, s, v));
        if (signer != owner) {
            revert ERC2612InvalidSigner(signer, owner);
        }
        _approve(owner, spender, value);
    }

    function nonces(address owner) public view virtual override(Nonces, IERC20Permit) returns (uint256) {
        return super.nonces(owner);
    }

    function DOMAIN_SEPARATOR() external view virtual returns (bytes32) {
        // If chainid changed, we build a new domain separator
        if (block.chainid == _CHAIN_ID && address(this) == _VERIFYING_CONTRACT) {
            return _DOMAIN_SEPARATOR;
        } else {
            return EIP712.domainSeparatorV4(name(), "1", block.chainid, address(this));
        }
    }
}

/**
 * @title FairToken
 * @notice A minimal, no-ownership ERC-20 with EIP-2612 permit. 
 *         - No taxes, blacklists, or special permissions
 *         - Entire supply minted to deployer
 *         - Complies with the newest OpenZeppelin style (ERC-6093 errors)
 */
contract FairToken is ERC20Permit {
    constructor(
        uint256 totalSupply,
        string memory name,
        string memory symbol
    )
        ERC20(name, symbol)
        ERC20Permit(name) // EIP-712 domain name
    {
        _mint(msg.sender, totalSupply);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","type":"error"},{"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":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"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":"value","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","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":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c806370a082311161007157806370a08231146101915780637ecebe00146101c157806395d89b41146101f1578063a9059cbb1461020f578063d505accf1461023f578063dd62ed3e1461025b576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce567146101555780633644e51514610173575b600080fd5b6100c161028b565b6040516100ce919061122a565b60405180910390f35b6100f160048036038101906100ec91906112e5565b61031d565b6040516100fe9190611340565b60405180910390f35b61010f610340565b60405161011c919061136a565b60405180910390f35b61013f600480360381019061013a9190611385565b61034a565b60405161014c9190611340565b60405180910390f35b61015d610379565b60405161016a91906113f4565b60405180910390f35b61017b610382565b6040516101889190611428565b60405180910390f35b6101ab60048036038101906101a69190611443565b610479565b6040516101b8919061136a565b60405180910390f35b6101db60048036038101906101d69190611443565b6104c1565b6040516101e8919061136a565b60405180910390f35b6101f96104d3565b604051610206919061122a565b60405180910390f35b610229600480360381019061022491906112e5565b610565565b6040516102369190611340565b60405180910390f35b610259600480360381019061025491906114c8565b610588565b005b6102756004803603810190610270919061156a565b610712565b604051610282919061136a565b60405180910390f35b60606003805461029a906115d9565b80601f01602080910402602001604051908101604052809291908181526020018280546102c6906115d9565b80156103135780601f106102e857610100808354040283529160200191610313565b820191906000526020600020905b8154815290600101906020018083116102f657829003601f168201915b5050505050905090565b600080610328610799565b90506103358185856107a1565b600191505092915050565b6000600254905090565b600080610355610799565b90506103628582856107b3565b61036d858585610847565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000092461480156103fe57507f000000000000000000000000bac4e2fa5622399e7d17a037f59fcea3e76a857073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16145b1561042b577f98cf2780eb441ebb765ff84ee39e3ad85f6ced01568cfc245d86930da41f6e6a9050610476565b61047361043661028b565b6040518060400160405280600181526020017f3100000000000000000000000000000000000000000000000000000000000000815250463061093b565b90505b90565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006104cc826109a4565b9050919050565b6060600480546104e2906115d9565b80601f016020809104026020016040519081016040528092919081815260200182805461050e906115d9565b801561055b5780601f106105305761010080835404028352916020019161055b565b820191906000526020600020905b81548152906001019060200180831161053e57829003601f168201915b5050505050905090565b600080610570610799565b905061057d818585610847565b600191505092915050565b834211156105cd57836040517f627913020000000000000000000000000000000000000000000000000000000081526004016105c4919061136a565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886105fc8c6109ed565b8960405160200161061296959493929190611619565b60405160208183030381529060405280519060200120905060006106567f98cf2780eb441ebb765ff84ee39e3ad85f6ced01568cfc245d86930da41f6e6a83610a8b565b9050600061068782868689604051602001610673939291906116d1565b604051602081830303815290604052610abe565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106fb57808a6040517f4b800e460000000000000000000000000000000000000000000000000000000081526004016106f292919061170e565b60405180910390fd5b6107068a8a8a6107a1565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b6107ae8383836001610aea565b505050565b60006107bf8484610712565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108415781811015610831578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161082893929190611737565b60405180910390fd5b61084084848484036000610aea565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108b95760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108b0919061176e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361092b5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610922919061176e565b60405180910390fd5b610936838383610cc1565b505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f858051906020012085805190602001208585604051602001610984959493929190611789565b604051602081830303815290604052805190602001209050949350505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610a819061180b565b9190505550919050565b60008282604051602001610aa09291906118aa565b60405160208183030381529060405280519060200120905092915050565b600080600080610ace8686610ee6565b925092509250610ade8282610f42565b82935050505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610b5c5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610b53919061176e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bce5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610bc5919061176e565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610cbb578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610cb2919061136a565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d13578060026000828254610d0791906118e1565b92505081905550610de6565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d9f578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610d9693929190611737565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e2f5780600260008282540392505081905550610e7c565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ed9919061136a565b60405180910390a3505050565b60008060006041845103610f2b5760008060006020870151925060408701519150606087015160001a9050610f1d888285856110a6565b955095509550505050610f3b565b60006002855160001b9250925092505b9250925092565b60006003811115610f5657610f55611915565b5b826003811115610f6957610f68611915565b5b03156110a25760016003811115610f8357610f82611915565b5b826003811115610f9657610f95611915565b5b03610fcd576040517ff645eedf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60026003811115610fe157610fe0611915565b5b826003811115610ff457610ff3611915565b5b03611039578060001c6040517ffce698f7000000000000000000000000000000000000000000000000000000008152600401611030919061136a565b60405180910390fd5b60038081111561104c5761104b611915565b5b82600381111561105f5761105e611915565b5b036110a157806040517fd78bce0c0000000000000000000000000000000000000000000000000000000081526004016110989190611428565b60405180910390fd5b5b5050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8460001c11156110e6576000600385925092509250611190565b60006001888888886040516000815260200160405260405161110b9493929190611944565b6020604051602081039080840390855afa15801561112d573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361118157600060016000801b93509350935050611190565b8060008060001b935093509350505b9450945094915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111d45780820151818401526020810190506111b9565b60008484015250505050565b6000601f19601f8301169050919050565b60006111fc8261119a565b61120681856111a5565b93506112168185602086016111b6565b61121f816111e0565b840191505092915050565b6000602082019050818103600083015261124481846111f1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061127c82611251565b9050919050565b61128c81611271565b811461129757600080fd5b50565b6000813590506112a981611283565b92915050565b6000819050919050565b6112c2816112af565b81146112cd57600080fd5b50565b6000813590506112df816112b9565b92915050565b600080604083850312156112fc576112fb61124c565b5b600061130a8582860161129a565b925050602061131b858286016112d0565b9150509250929050565b60008115159050919050565b61133a81611325565b82525050565b60006020820190506113556000830184611331565b92915050565b611364816112af565b82525050565b600060208201905061137f600083018461135b565b92915050565b60008060006060848603121561139e5761139d61124c565b5b60006113ac8682870161129a565b93505060206113bd8682870161129a565b92505060406113ce868287016112d0565b9150509250925092565b600060ff82169050919050565b6113ee816113d8565b82525050565b600060208201905061140960008301846113e5565b92915050565b6000819050919050565b6114228161140f565b82525050565b600060208201905061143d6000830184611419565b92915050565b6000602082840312156114595761145861124c565b5b60006114678482850161129a565b91505092915050565b611479816113d8565b811461148457600080fd5b50565b60008135905061149681611470565b92915050565b6114a58161140f565b81146114b057600080fd5b50565b6000813590506114c28161149c565b92915050565b600080600080600080600060e0888a0312156114e7576114e661124c565b5b60006114f58a828b0161129a565b97505060206115068a828b0161129a565b96505060406115178a828b016112d0565b95505060606115288a828b016112d0565b94505060806115398a828b01611487565b93505060a061154a8a828b016114b3565b92505060c061155b8a828b016114b3565b91505092959891949750929550565b600080604083850312156115815761158061124c565b5b600061158f8582860161129a565b92505060206115a08582860161129a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115f157607f821691505b602082108103611604576116036115aa565b5b50919050565b61161381611271565b82525050565b600060c08201905061162e6000830189611419565b61163b602083018861160a565b611648604083018761160a565b611655606083018661135b565b611662608083018561135b565b61166f60a083018461135b565b979650505050505050565b6000819050919050565b6116956116908261140f565b61167a565b82525050565b60008160f81b9050919050565b60006116b38261169b565b9050919050565b6116cb6116c6826113d8565b6116a8565b82525050565b60006116dd8286611684565b6020820191506116ed8285611684565b6020820191506116fd82846116ba565b600182019150819050949350505050565b6000604082019050611723600083018561160a565b611730602083018461160a565b9392505050565b600060608201905061174c600083018661160a565b611759602083018561135b565b611766604083018461135b565b949350505050565b6000602082019050611783600083018461160a565b92915050565b600060a08201905061179e6000830188611419565b6117ab6020830187611419565b6117b86040830186611419565b6117c5606083018561135b565b6117d2608083018461160a565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611816826112af565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611848576118476117dc565b5b600182019050919050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b6000611894600283611853565b915061189f8261185e565b600282019050919050565b60006118b582611887565b91506118c18285611684565b6020820191506118d18284611684565b6020820191508190509392505050565b60006118ec826112af565b91506118f7836112af565b925082820190508082111561190f5761190e6117dc565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60006080820190506119596000830187611419565b61196660208301866113e5565b6119736040830185611419565b6119806060830184611419565b9594505050505056fea2646970667358221220efcbf8c323237f2649ab2d2a1b27d07fdf67a9e958282f08c27dd07b10cdb20764736f6c634300081c0033

Block Transaction 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

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.