ETH Price: $1,942.02 (-1.89%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

1 Internal Transaction found.

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
-119912652021-03-07 12:11:551822 days ago1615119115  Contract Creation0 ETH
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

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

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

Contract Name:
DSGuard

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-03-30
*/

/**
 *Submitted for verification at Etherscan.io on 2021-01-09
*/

// File: localhost/contracts/handlers/maker/dapphub/DSAuth.sol

// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program.  If not, see <http://www.gnu.org/licenses/>.

pragma solidity >=0.4.23;

interface DSAuthority {
    function canCall(
        address src,
        address dst,
        bytes4 sig
    ) external view returns (bool);
}

contract DSAuthEvents {
    event LogSetAuthority(address indexed authority);
    event LogSetOwner(address indexed owner);
}

contract DSAuth is DSAuthEvents {
    DSAuthority public authority;
    address public owner;

    constructor() public {
        owner = msg.sender;
        emit LogSetOwner(msg.sender);
    }

    function setOwner(address owner_) public auth {
        owner = owner_;
        emit LogSetOwner(owner);
    }

    function setAuthority(DSAuthority authority_) public auth {
        authority = authority_;
        emit LogSetAuthority(address(authority));
    }

    modifier auth {
        require(isAuthorized(msg.sender, msg.sig), "ds-auth-unauthorized");
        _;
    }

    function isAuthorized(address src, bytes4 sig)
        internal
        view
        returns (bool)
    {
        if (src == address(this)) {
            return true;
        } else if (src == owner) {
            return true;
        } else if (authority == DSAuthority(0)) {
            return false;
        } else {
            return authority.canCall(src, address(this), sig);
        }
    }
}

// File: localhost/contracts/handlers/maker/dapphub/DSGuard.sol

// guard.sol -- simple whitelist implementation of DSAuthority

// Copyright (C) 2017  DappHub, LLC

// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program.  If not, see <http://www.gnu.org/licenses/>.

pragma solidity >=0.4.23;


contract DSGuardEvents {
    event LogPermit(
        bytes32 indexed src,
        bytes32 indexed dst,
        bytes32 indexed sig
    );

    event LogForbid(
        bytes32 indexed src,
        bytes32 indexed dst,
        bytes32 indexed sig
    );
}

contract DSGuard is DSAuth, DSAuthority, DSGuardEvents {
    bytes32 public constant ANY = bytes32(uint256(-1));

    mapping(bytes32 => mapping(bytes32 => mapping(bytes32 => bool))) acl;

    function canCall(
        address src_,
        address dst_,
        bytes4 sig
    ) public view override returns (bool) {
        bytes32 src = bytes32(bytes20(src_));
        bytes32 dst = bytes32(bytes20(dst_));

        return
            acl[src][dst][sig] ||
            acl[src][dst][ANY] ||
            acl[src][ANY][sig] ||
            acl[src][ANY][ANY] ||
            acl[ANY][dst][sig] ||
            acl[ANY][dst][ANY] ||
            acl[ANY][ANY][sig] ||
            acl[ANY][ANY][ANY];
    }

    function permit(
        bytes32 src,
        bytes32 dst,
        bytes32 sig
    ) public auth {
        acl[src][dst][sig] = true;
        emit LogPermit(src, dst, sig);
    }

    function forbid(
        bytes32 src,
        bytes32 dst,
        bytes32 sig
    ) public auth {
        acl[src][dst][sig] = false;
        emit LogForbid(src, dst, sig);
    }

    function permit(
        address src,
        address dst,
        bytes32 sig
    ) public {
        permit(bytes32(bytes20(src)), bytes32(bytes20(dst)), sig);
    }

    function forbid(
        address src,
        address dst,
        bytes32 sig
    ) public {
        forbid(bytes32(bytes20(src)), bytes32(bytes20(dst)), sig);
    }
}

// File: localhost/contracts/handlers/maker/dapphub/DSGuardFactory.sol

// guard.sol -- simple whitelist implementation of DSAuthority

// Copyright (C) 2017  DappHub, LLC

// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program.  If not, see <http://www.gnu.org/licenses/>.

pragma solidity >0.5.0;


contract DSGuardFactory {
    mapping(address => bool) public isGuard;
    mapping(address => address) public guards;

    function newGuard(
        bool permitFurucombo,
        address furucombo,
        address dsProxy
    ) public returns (DSGuard guard) {
        guard = new DSGuard();
        if (permitFurucombo) {
            guard.permit(
                furucombo,
                dsProxy,
                bytes4(keccak256("execute(address,bytes)"))
            );
        }
        guard.setOwner(msg.sender);
        isGuard[address(guard)] = true;
        guards[msg.sender] = address(guard);
    }
}

Contract Security Audit

Contract ABI

API
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"src","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"dst","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"sig","type":"bytes32"}],"name":"LogForbid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"src","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"dst","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"sig","type":"bytes32"}],"name":"LogPermit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"authority","type":"address"}],"name":"LogSetAuthority","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"}],"name":"LogSetOwner","type":"event"},{"inputs":[],"name":"ANY","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"authority","outputs":[{"internalType":"contract DSAuthority","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"src_","type":"address"},{"internalType":"address","name":"dst_","type":"address"},{"internalType":"bytes4","name":"sig","type":"bytes4"}],"name":"canCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"bytes32","name":"sig","type":"bytes32"}],"name":"forbid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"src","type":"bytes32"},{"internalType":"bytes32","name":"dst","type":"bytes32"},{"internalType":"bytes32","name":"sig","type":"bytes32"}],"name":"forbid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"bytes32","name":"sig","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"src","type":"bytes32"},{"internalType":"bytes32","name":"dst","type":"bytes32"},{"internalType":"bytes32","name":"sig","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract DSAuthority","name":"authority_","type":"address"}],"name":"setAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"}]

0x608060405234801561001057600080fd5b50600180546001600160a01b031916339081179091556040517fce241d7ca1f669fee44b6fc00b8eba2df3bb514eed0f6f668f8f89096e81ed9490600090a26108b68061005e6000396000f3fe608060405234801561001057600080fd5b506004361061009e5760003560e01c8063a8542f6611610066578063a8542f6614610174578063b70096131461018e578063bf7e214f146101e3578063cbeea68c146101eb578063f0217ce5146102215761009e565b806313af4035146100a35780632bc3217d146100cb57806379d88d87146101015780637a9e5e4b1461012a5780638da5cb5b14610150575b600080fd5b6100c9600480360360208110156100b957600080fd5b50356001600160a01b031661024a565b005b6100c9600480360360608110156100e157600080fd5b506001600160a01b038135811691602081013590911690604001356102f8565b6100c96004803603606081101561011757600080fd5b5080359060208101359060400135610322565b6100c96004803603602081101561014057600080fd5b50356001600160a01b03166103d9565b610158610483565b604080516001600160a01b039092168252519081900360200190f35b61017c610492565b60408051918252519081900360200190f35b6101cf600480360360608110156101a457600080fd5b5080356001600160a01b0390811691602081013590911690604001356001600160e01b031916610498565b604080519115158252519081900360200190f35b6101586106ad565b6100c96004803603606081101561020157600080fd5b506001600160a01b038135811691602081013590911690604001356106bc565b6100c96004803603606081101561023757600080fd5b50803590602081013590604001356106dd565b610260336000356001600160e01b031916610797565b6102a8576040805162461bcd60e51b8152602060048201526014602482015273191ccb585d5d1a0b5d5b985d5d1a1bdc9a5e995960621b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0383811691909117918290556040519116907fce241d7ca1f669fee44b6fc00b8eba2df3bb514eed0f6f668f8f89096e81ed9490600090a250565b61031d8360601b6001600160601b0319168360601b6001600160601b03191683610322565b505050565b610338336000356001600160e01b031916610797565b610380576040805162461bcd60e51b8152602060048201526014602482015273191ccb585d5d1a0b5d5b985d5d1a1bdc9a5e995960621b604482015290519081900360640190fd5b60008381526002602090815260408083208584528252808320848452909152808220805460ff19169055518291849186917f95ba64c95d85e67ac83a0476c4a62ac2cf8ab2d0407545b8c9d79c3eefa6282991a4505050565b6103ef336000356001600160e01b031916610797565b610437576040805162461bcd60e51b8152602060048201526014602482015273191ccb585d5d1a0b5d5b985d5d1a1bdc9a5e995960621b604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b03838116919091178083556040519116917f1abebea81bfa2637f28358c371278fb15ede7ea8dd28d2e03b112ff6d936ada491a250565b6001546001600160a01b031681565b60001981565b6bffffffffffffffffffffffff19606084811b821660008181526002602090815260408083209488901b9095168083529381528482206001600160e01b03198716835290529283205490919060ff1680610515575060008281526002602090815260408083208484528252808320600019845290915290205460ff165b8061054d57506000828152600260209081526040808320600019845282528083206001600160e01b03198816845290915290205460ff165b80610578575060008281526002602090815260408083206000198452825280832090915290205460ff165b806105c5575060008181527f38b5b2ceac7637132d27514ffcf440b705287635075af7b8bd5adcaa6a4cc5bb602090815260408083206001600160e01b03198816845290915290205460ff165b8061060a575060008181527f38b5b2ceac7637132d27514ffcf440b705287635075af7b8bd5adcaa6a4cc5bb60209081526040808320600019845290915290205460ff165b8061064d57506001600160e01b0319841660009081527f47fa60fbc027ac3984ea309688a33182f4193c478b40ba8d294eb2cd3ddc4d97602052604090205460ff165b806106a357506000196000527f47fa60fbc027ac3984ea309688a33182f4193c478b40ba8d294eb2cd3ddc4d976020527ff423d1317b37667cd26005728bffa7c8b0499e133951fcf8e814d4fc5f4c98f65460ff165b9695505050505050565b6000546001600160a01b031681565b61031d8360601b6001600160601b0319168360601b6001600160601b031916835b6106f3336000356001600160e01b031916610797565b61073b576040805162461bcd60e51b8152602060048201526014602482015273191ccb585d5d1a0b5d5b985d5d1a1bdc9a5e995960621b604482015290519081900360640190fd5b60008381526002602090815260408083208584528252808320848452909152808220805460ff19166001179055518291849186917f6f50375045128971c5469d343039ba7b8e30a5b190453737b28bda6f7a30677191a4505050565b60006001600160a01b0383163014156107b25750600161087a565b6001546001600160a01b03848116911614156107d05750600161087a565b6000546001600160a01b03166107e85750600061087a565b6000546040805163b700961360e01b81526001600160a01b0386811660048301523060248301526001600160e01b0319861660448301529151919092169163b7009613916064808301926020929190829003018186803b15801561084b57600080fd5b505afa15801561085f573d6000803e3d6000fd5b505050506040513d602081101561087557600080fd5b505190505b9291505056fea2646970667358221220ccf9edff0920285302af872f7795f7f3f19ccc48b2ed0bada85d1f77b456a5a764736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061009e5760003560e01c8063a8542f6611610066578063a8542f6614610174578063b70096131461018e578063bf7e214f146101e3578063cbeea68c146101eb578063f0217ce5146102215761009e565b806313af4035146100a35780632bc3217d146100cb57806379d88d87146101015780637a9e5e4b1461012a5780638da5cb5b14610150575b600080fd5b6100c9600480360360208110156100b957600080fd5b50356001600160a01b031661024a565b005b6100c9600480360360608110156100e157600080fd5b506001600160a01b038135811691602081013590911690604001356102f8565b6100c96004803603606081101561011757600080fd5b5080359060208101359060400135610322565b6100c96004803603602081101561014057600080fd5b50356001600160a01b03166103d9565b610158610483565b604080516001600160a01b039092168252519081900360200190f35b61017c610492565b60408051918252519081900360200190f35b6101cf600480360360608110156101a457600080fd5b5080356001600160a01b0390811691602081013590911690604001356001600160e01b031916610498565b604080519115158252519081900360200190f35b6101586106ad565b6100c96004803603606081101561020157600080fd5b506001600160a01b038135811691602081013590911690604001356106bc565b6100c96004803603606081101561023757600080fd5b50803590602081013590604001356106dd565b610260336000356001600160e01b031916610797565b6102a8576040805162461bcd60e51b8152602060048201526014602482015273191ccb585d5d1a0b5d5b985d5d1a1bdc9a5e995960621b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0383811691909117918290556040519116907fce241d7ca1f669fee44b6fc00b8eba2df3bb514eed0f6f668f8f89096e81ed9490600090a250565b61031d8360601b6001600160601b0319168360601b6001600160601b03191683610322565b505050565b610338336000356001600160e01b031916610797565b610380576040805162461bcd60e51b8152602060048201526014602482015273191ccb585d5d1a0b5d5b985d5d1a1bdc9a5e995960621b604482015290519081900360640190fd5b60008381526002602090815260408083208584528252808320848452909152808220805460ff19169055518291849186917f95ba64c95d85e67ac83a0476c4a62ac2cf8ab2d0407545b8c9d79c3eefa6282991a4505050565b6103ef336000356001600160e01b031916610797565b610437576040805162461bcd60e51b8152602060048201526014602482015273191ccb585d5d1a0b5d5b985d5d1a1bdc9a5e995960621b604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b03838116919091178083556040519116917f1abebea81bfa2637f28358c371278fb15ede7ea8dd28d2e03b112ff6d936ada491a250565b6001546001600160a01b031681565b60001981565b6bffffffffffffffffffffffff19606084811b821660008181526002602090815260408083209488901b9095168083529381528482206001600160e01b03198716835290529283205490919060ff1680610515575060008281526002602090815260408083208484528252808320600019845290915290205460ff165b8061054d57506000828152600260209081526040808320600019845282528083206001600160e01b03198816845290915290205460ff165b80610578575060008281526002602090815260408083206000198452825280832090915290205460ff165b806105c5575060008181527f38b5b2ceac7637132d27514ffcf440b705287635075af7b8bd5adcaa6a4cc5bb602090815260408083206001600160e01b03198816845290915290205460ff165b8061060a575060008181527f38b5b2ceac7637132d27514ffcf440b705287635075af7b8bd5adcaa6a4cc5bb60209081526040808320600019845290915290205460ff165b8061064d57506001600160e01b0319841660009081527f47fa60fbc027ac3984ea309688a33182f4193c478b40ba8d294eb2cd3ddc4d97602052604090205460ff165b806106a357506000196000527f47fa60fbc027ac3984ea309688a33182f4193c478b40ba8d294eb2cd3ddc4d976020527ff423d1317b37667cd26005728bffa7c8b0499e133951fcf8e814d4fc5f4c98f65460ff165b9695505050505050565b6000546001600160a01b031681565b61031d8360601b6001600160601b0319168360601b6001600160601b031916835b6106f3336000356001600160e01b031916610797565b61073b576040805162461bcd60e51b8152602060048201526014602482015273191ccb585d5d1a0b5d5b985d5d1a1bdc9a5e995960621b604482015290519081900360640190fd5b60008381526002602090815260408083208584528252808320848452909152808220805460ff19166001179055518291849186917f6f50375045128971c5469d343039ba7b8e30a5b190453737b28bda6f7a30677191a4505050565b60006001600160a01b0383163014156107b25750600161087a565b6001546001600160a01b03848116911614156107d05750600161087a565b6000546001600160a01b03166107e85750600061087a565b6000546040805163b700961360e01b81526001600160a01b0386811660048301523060248301526001600160e01b0319861660448301529151919092169163b7009613916064808301926020929190829003018186803b15801561084b57600080fd5b505afa15801561085f573d6000803e3d6000fd5b505050506040513d602081101561087557600080fd5b505190505b9291505056fea2646970667358221220ccf9edff0920285302af872f7795f7f3f19ccc48b2ed0bada85d1f77b456a5a764736f6c634300060c0033

Deployed Bytecode Sourcemap

3263:1473:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1316:113;;;;;;;;;;;;;;;;-1:-1:-1;1316:113:0;-1:-1:-1;;;;;1316:113:0;;:::i;:::-;;4561:172;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;4561:172:0;;;;;;;;;;;;;;;;;:::i;4187:186::-;;;;;;;;;;;;;;;;-1:-1:-1;4187:186:0;;;;;;;;;;;;:::i;1437:150::-;;;;;;;;;;;;;;;;-1:-1:-1;1437:150:0;-1:-1:-1;;;;;1437:150:0;;:::i;1182:20::-;;;:::i;:::-;;;;-1:-1:-1;;;;;1182:20:0;;;;;;;;;;;;;;3325:50;;;:::i;:::-;;;;;;;;;;;;;;;;3461:525;;;;;;;;;;;;;;;;-1:-1:-1;3461:525:0;;-1:-1:-1;;;;;3461:525:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;;3461:525:0;;:::i;:::-;;;;;;;;;;;;;;;;;;1147:28;;;:::i;4381:172::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;4381:172:0;;;;;;;;;;;;;;;;;:::i;3994:185::-;;;;;;;;;;;;;;;;-1:-1:-1;3994:185:0;;;;;;;;;;;;:::i;1316:113::-;1628:33;1641:10;-1:-1:-1;;;;;;1653:7:0;;;1628:12;:33::i;:::-;1620:66;;;;;-1:-1:-1;;;1620:66:0;;;;;;;;;;;;-1:-1:-1;;;1620:66:0;;;;;;;;;;;;;;;1373:5:::1;:14:::0;;-1:-1:-1;;;;;;1373:14:0::1;-1:-1:-1::0;;;;;1373:14:0;;::::1;::::0;;;::::1;::::0;;;;1403:18:::1;::::0;1415:5;::::1;::::0;1403:18:::1;::::0;-1:-1:-1;;1403:18:0::1;1316:113:::0;:::o;4561:172::-;4668:57;-1:-1:-1;;;;;;4683:12:0;;;;4675:21;;;4706:12;;;;4698:21;4721:3;4668:6;:57::i;:::-;4561:172;;;:::o;4187:186::-;1628:33;1641:10;-1:-1:-1;;;;;;1653:7:0;;;1628:12;:33::i;:::-;1620:66;;;;;-1:-1:-1;;;1620:66:0;;;;;;;;;;;;-1:-1:-1;;;1620:66:0;;;;;;;;;;;;;;;4320:5:::1;4299:8:::0;;;:3:::1;:8;::::0;;;;;;;:13;;;;;;;;:18;;;;;;;;;:26;;-1:-1:-1;;4299:26:0::1;::::0;;4341:24;4299:18;;:13;;:8;;4341:24:::1;::::0;::::1;4187:186:::0;;;:::o;1437:150::-;1628:33;1641:10;-1:-1:-1;;;;;;1653:7:0;;;1628:12;:33::i;:::-;1620:66;;;;;-1:-1:-1;;;1620:66:0;;;;;;;;;;;;-1:-1:-1;;;1620:66:0;;;;;;;;;;;;;;;1506:9:::1;:22:::0;;-1:-1:-1;;;;;;1506:22:0::1;-1:-1:-1::0;;;;;1506:22:0;;::::1;::::0;;;::::1;::::0;;;1544:35:::1;::::0;1568:9;::::1;::::0;1544:35:::1;::::0;::::1;1437:150:::0;:::o;1182:20::-;;;-1:-1:-1;;;;;1182:20:0;;:::o;3325:50::-;-1:-1:-1;;3325:50:0;:::o;3461:525::-;-1:-1:-1;;;;;;3621:13:0;;;;3613:22;;3582:4;3715:8;;;:3;:8;;;;;;;;3668:13;;;;3660:22;;;3715:13;;;;;;;;;-1:-1:-1;;;;;;3715:18:0;;;;;;;;;;3613:22;;3660;3715:18;;;:53;;-1:-1:-1;3750:8:0;;;;:3;:8;;;;;;;;:13;;;;;;;;-1:-1:-1;;3750:18:0;;;;;;;;;;3715:53;:88;;;-1:-1:-1;3785:8:0;;;;:3;:8;;;;;;;;-1:-1:-1;;3785:13:0;;;;;;;-1:-1:-1;;;;;;3785:18:0;;;;;;;;;;;;3715:88;:123;;;-1:-1:-1;3820:8:0;;;;:3;:8;;;;;;;;-1:-1:-1;;3820:13:0;;;;;;;:18;;;;;;;;3715:123;:158;;;-1:-1:-1;3855:8:0;:13;;;:8;;:13;;;:8;:13;;;-1:-1:-1;;;;;;3855:18:0;;;;;;;;;;;;3715:158;:193;;;-1:-1:-1;3890:8:0;:13;;;:8;;:13;;;:8;:13;;;-1:-1:-1;;3890:18:0;;;;;;;;;;3715:193;:228;;;-1:-1:-1;;;;;;;3925:18:0;;:8;:18;;;:13;:8;:18;:8;:18;;;;;3715:228;:263;;;-1:-1:-1;;;;3960:8:0;:13;:8;:18;;;;;3715:263;3695:283;3461:525;-1:-1:-1;;;;;;3461:525:0:o;1147:28::-;;;-1:-1:-1;;;;;1147:28:0;;:::o;4381:172::-;4488:57;-1:-1:-1;;;;;;4503:12:0;;;;4495:21;;;4526:12;;;;4518:21;4541:3;3994:185;1628:33;1641:10;-1:-1:-1;;;;;;1653:7:0;;;1628:12;:33::i;:::-;1620:66;;;;;-1:-1:-1;;;1620:66:0;;;;;;;;;;;;-1:-1:-1;;;1620:66:0;;;;;;;;;;;;;;;4106:8:::1;::::0;;;:3:::1;:8;::::0;;;;;;;:13;;;;;;;;:18;;;;;;;;;:25;;-1:-1:-1;;4106:25:0::1;4127:4;4106:25;::::0;;4147:24;4120:3;;4115;;4110;;4147:24:::1;::::0;::::1;3994:185:::0;;;:::o;1714:412::-;1811:4;1852;-1:-1:-1;;;;;1837:20:0;;;1833:286;;;-1:-1:-1;1881:4:0;1874:11;;1833:286;1914:5;;-1:-1:-1;;;;;1907:12:0;;;1914:5;;1907:12;1903:216;;;-1:-1:-1;1943:4:0;1936:11;;1903:216;1994:1;1969:9;-1:-1:-1;;;;;1969:9:0;1965:154;;-1:-1:-1;2020:5:0;2013:12;;1965:154;2065:9;;:42;;;-1:-1:-1;;;2065:42:0;;-1:-1:-1;;;;;2065:42:0;;;;;;;2096:4;2065:42;;;;-1:-1:-1;;;;;;2065:42:0;;;;;;;;:9;;;;;-1:-1:-1;;2065:42:0;;;;;;;;;;;;;;:9;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2065:42:0;;-1:-1:-1;1965:154:0;1714:412;;;;:::o

Swarm Source

ipfs://ccf9edff0920285302af872f7795f7f3f19ccc48b2ed0bada85d1f77b456a5a7

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.