ETH Price: $2,297.50 (+2.67%)

Contract

0x3bD6446091Bb8b47925FE9217C9A8039E0982fba
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00
Transaction Hash
Method
Block
From
To
Transfer Ownersh...142944332022-02-28 11:44:45922 days ago1646048685IN
0x3bD64460...9E0982fba
0 ETH0.0007485526.05401306
Transfer Ownersh...142814582022-02-26 11:30:26924 days ago1645875026IN
0x3bD64460...9E0982fba
0 ETH0.0006450922.46235673
0x60806040142814552022-02-26 11:30:07924 days ago1645875007IN
 Create: PauseGuardian
0 ETH0.0220387823.64610712

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
PauseGuardian

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 3 : PauseGuardian.sol
pragma solidity ^0.5.16;

import "./Ownership/Ownable.sol";

interface IComptroller {
    function getAllMarkets() external returns (address[] memory);
    function _setMintPaused(address cToken, bool state) external returns (bool);
    function _setBorrowPaused(address cToken, bool state) external returns (bool);
    function _setTransferPaused(bool state) external returns (bool);
    function _setSeizePaused(bool state) external returns (bool);
}
contract PauseGuardian is Ownable {
    IComptroller public Comptroller;

    constructor(IComptroller comptroller) public {
        Comptroller = comptroller;
    }

    function pauseAll() external onlyOwner {
        address[] memory markets = Comptroller.getAllMarkets();
        for (uint i = 0; i < markets.length; i++) {
            Comptroller._setMintPaused(markets[i], true);
            Comptroller._setBorrowPaused(markets[i], true);
        }
        Comptroller._setTransferPaused(true);
        Comptroller._setSeizePaused(true);
    }

    function setMintPaused(address cToken) external onlyOwner {
        Comptroller._setMintPaused(cToken, true);
    }

    function setBorrowPaused(address cToken) external onlyOwner {
        Comptroller._setBorrowPaused(cToken, true);
    }

    function pauseAllMints() external onlyOwner {
        address[] memory markets = Comptroller.getAllMarkets();
        for (uint i = 0; i < markets.length; i++) {
            Comptroller._setMintPaused(markets[i], true);
        }
    }

    function pauseAllBorrows() external onlyOwner {
        address[] memory markets = Comptroller.getAllMarkets();
        for (uint i = 0; i < markets.length; i++) {
            Comptroller._setBorrowPaused(markets[i], true);
        }
    }

    function setTransferPaused() external onlyOwner {
        Comptroller._setTransferPaused(true);
    }

    function setSeizePaused() external onlyOwner {
        Comptroller._setSeizePaused(true);
    }

    function setComptroller(IComptroller comptroller) external onlyOwner {
        Comptroller = comptroller;
    }
}

File 2 of 3 : Ownable.sol
pragma solidity ^0.5.0;

import "../GSN/Context.sol";
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _owner;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 3 of 3 : Context.sol
pragma solidity ^0.5.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

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

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IComptroller","name":"comptroller","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"constant":true,"inputs":[],"name":"Comptroller","outputs":[{"internalType":"contract IComptroller","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pauseAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pauseAllBorrows","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pauseAllMints","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"cToken","type":"address"}],"name":"setBorrowPaused","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract IComptroller","name":"comptroller","type":"address"}],"name":"setComptroller","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"cToken","type":"address"}],"name":"setMintPaused","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"setSeizePaused","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"setTransferPaused","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b50604051610fcf380380610fcf8339818101604052602081101561003357600080fd5b505160006100486001600160e01b036100b716565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180546001600160a01b0319166001600160a01b03929092169190911790556100bb565b3390565b610f05806100ca6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c8063715018a61161008c5780638da5cb5b116100665780638da5cb5b146101765780638f32d59b1461017e578063b0a8338f1461019a578063f2fde38b146101c0576100cf565b8063715018a614610122578063809928e71461012a5780638bad38dd14610150576100cf565b806309167dd2146100d4578063190dbc9e146100de5780634ae36e8e146100e65780634b20ab111461010a578063595c6a67146101125780635dd036121461011a575b600080fd5b6100dc6101e6565b005b6100dc6102a9565b6100ee6104bd565b604080516001600160a01b039092168252519081900360200190f35b6100dc6104cc565b6100dc6106e0565b6100dc610a91565b6100dc610b26565b6100dc6004803603602081101561014057600080fd5b50356001600160a01b0316610bb7565b6100dc6004803603602081101561016657600080fd5b50356001600160a01b0316610c57565b6100ee610cc0565b610186610ccf565b604080519115158252519081900360200190f35b6100dc600480360360208110156101b057600080fd5b50356001600160a01b0316610cf3565b6100dc600480360360208110156101d657600080fd5b50356001600160a01b0316610d93565b6101ee610ccf565b61022d576040805162461bcd60e51b81526020600482018190526024820152600080516020610eb1833981519152604482015290519081900360640190fd5b60018054604080516305ae1b6f60e31b81526004810193909352516001600160a01b0390911691632d70db789160248083019260209291908290030181600087803b15801561027b57600080fd5b505af115801561028f573d6000803e3d6000fd5b505050506040513d60208110156102a557600080fd5b5050565b6102b1610ccf565b6102f0576040805162461bcd60e51b81526020600482018190526024820152600080516020610eb1833981519152604482015290519081900360640190fd5b6001546040805163b0772d0b60e01b815290516060926001600160a01b03169163b0772d0b91600480830192600092919082900301818387803b15801561033657600080fd5b505af115801561034a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561037357600080fd5b810190808051604051939291908464010000000082111561039357600080fd5b9083019060208201858111156103a857600080fd5b82518660208202830111640100000000821117156103c557600080fd5b82525081516020918201928201910280838360005b838110156103f25781810151838201526020016103da565b50505050905001604052505050905060008090505b81518110156102a55760015482516001600160a01b03909116906318c882a59084908490811061043357fe5b602090810291909101810151604080516001600160e01b031960e086901b1681526001600160a01b0390921660048301526001602483015251604480830193928290030181600087803b15801561048957600080fd5b505af115801561049d573d6000803e3d6000fd5b505050506040513d60208110156104b357600080fd5b5050600101610407565b6001546001600160a01b031681565b6104d4610ccf565b610513576040805162461bcd60e51b81526020600482018190526024820152600080516020610eb1833981519152604482015290519081900360640190fd5b6001546040805163b0772d0b60e01b815290516060926001600160a01b03169163b0772d0b91600480830192600092919082900301818387803b15801561055957600080fd5b505af115801561056d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561059657600080fd5b81019080805160405193929190846401000000008211156105b657600080fd5b9083019060208201858111156105cb57600080fd5b82518660208202830111640100000000821117156105e857600080fd5b82525081516020918201928201910280838360005b838110156106155781810151838201526020016105fd565b50505050905001604052505050905060008090505b81518110156102a55760015482516001600160a01b0390911690633bcf7ec19084908490811061065657fe5b602090810291909101810151604080516001600160e01b031960e086901b1681526001600160a01b0390921660048301526001602483015251604480830193928290030181600087803b1580156106ac57600080fd5b505af11580156106c0573d6000803e3d6000fd5b505050506040513d60208110156106d657600080fd5b505060010161062a565b6106e8610ccf565b610727576040805162461bcd60e51b81526020600482018190526024820152600080516020610eb1833981519152604482015290519081900360640190fd5b6001546040805163b0772d0b60e01b815290516060926001600160a01b03169163b0772d0b91600480830192600092919082900301818387803b15801561076d57600080fd5b505af1158015610781573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156107aa57600080fd5b81019080805160405193929190846401000000008211156107ca57600080fd5b9083019060208201858111156107df57600080fd5b82518660208202830111640100000000821117156107fc57600080fd5b82525081516020918201928201910280838360005b83811015610829578181015183820152602001610811565b50505050905001604052505050905060008090505b81518110156109995760015482516001600160a01b0390911690633bcf7ec19084908490811061086a57fe5b602090810291909101810151604080516001600160e01b031960e086901b1681526001600160a01b0390921660048301526001602483015251604480830193928290030181600087803b1580156108c057600080fd5b505af11580156108d4573d6000803e3d6000fd5b505050506040513d60208110156108ea57600080fd5b505060015482516001600160a01b03909116906318c882a59084908490811061090f57fe5b602090810291909101810151604080516001600160e01b031960e086901b1681526001600160a01b0390921660048301526001602483015251604480830193928290030181600087803b15801561096557600080fd5b505af1158015610979573d6000803e3d6000fd5b505050506040513d602081101561098f57600080fd5b505060010161083e565b5060018054604080516323afd8d960e21b81526004810193909352516001600160a01b0390911691638ebf63649160248083019260209291908290030181600087803b1580156109e857600080fd5b505af11580156109fc573d6000803e3d6000fd5b505050506040513d6020811015610a1257600080fd5b505060018054604080516305ae1b6f60e31b81526004810193909352516001600160a01b0390911691632d70db789160248083019260209291908290030181600087803b158015610a6257600080fd5b505af1158015610a76573d6000803e3d6000fd5b505050506040513d6020811015610a8c57600080fd5b505050565b610a99610ccf565b610ad8576040805162461bcd60e51b81526020600482018190526024820152600080516020610eb1833981519152604482015290519081900360640190fd5b60018054604080516323afd8d960e21b81526004810193909352516001600160a01b0390911691638ebf63649160248083019260209291908290030181600087803b15801561027b57600080fd5b610b2e610ccf565b610b6d576040805162461bcd60e51b81526020600482018190526024820152600080516020610eb1833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610bbf610ccf565b610bfe576040805162461bcd60e51b81526020600482018190526024820152600080516020610eb1833981519152604482015290519081900360640190fd5b6001805460408051633bcf7ec160e01b81526001600160a01b038581166004830152602482019490945290519290911691633bcf7ec1916044808201926020929091908290030181600087803b158015610a6257600080fd5b610c5f610ccf565b610c9e576040805162461bcd60e51b81526020600482018190526024820152600080516020610eb1833981519152604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031690565b600080546001600160a01b0316610ce4610de6565b6001600160a01b031614905090565b610cfb610ccf565b610d3a576040805162461bcd60e51b81526020600482018190526024820152600080516020610eb1833981519152604482015290519081900360640190fd5b60018054604080516318c882a560e01b81526001600160a01b0385811660048301526024820194909452905192909116916318c882a5916044808201926020929091908290030181600087803b158015610a6257600080fd5b610d9b610ccf565b610dda576040805162461bcd60e51b81526020600482018190526024820152600080516020610eb1833981519152604482015290519081900360640190fd5b610de381610dea565b50565b3390565b6001600160a01b038116610e2f5760405162461bcd60e51b8152600401808060200182810382526026815260200180610e8b6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b039290921691909117905556fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a265627a7a7231582045ec620df06feefc9b6bf1c195445166b40e2423b60b501b9b98525fdc9b410064736f6c634300051000320000000000000000000000000f390559f258eb8591c8e31cf0905e97cf36ace2

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c8063715018a61161008c5780638da5cb5b116100665780638da5cb5b146101765780638f32d59b1461017e578063b0a8338f1461019a578063f2fde38b146101c0576100cf565b8063715018a614610122578063809928e71461012a5780638bad38dd14610150576100cf565b806309167dd2146100d4578063190dbc9e146100de5780634ae36e8e146100e65780634b20ab111461010a578063595c6a67146101125780635dd036121461011a575b600080fd5b6100dc6101e6565b005b6100dc6102a9565b6100ee6104bd565b604080516001600160a01b039092168252519081900360200190f35b6100dc6104cc565b6100dc6106e0565b6100dc610a91565b6100dc610b26565b6100dc6004803603602081101561014057600080fd5b50356001600160a01b0316610bb7565b6100dc6004803603602081101561016657600080fd5b50356001600160a01b0316610c57565b6100ee610cc0565b610186610ccf565b604080519115158252519081900360200190f35b6100dc600480360360208110156101b057600080fd5b50356001600160a01b0316610cf3565b6100dc600480360360208110156101d657600080fd5b50356001600160a01b0316610d93565b6101ee610ccf565b61022d576040805162461bcd60e51b81526020600482018190526024820152600080516020610eb1833981519152604482015290519081900360640190fd5b60018054604080516305ae1b6f60e31b81526004810193909352516001600160a01b0390911691632d70db789160248083019260209291908290030181600087803b15801561027b57600080fd5b505af115801561028f573d6000803e3d6000fd5b505050506040513d60208110156102a557600080fd5b5050565b6102b1610ccf565b6102f0576040805162461bcd60e51b81526020600482018190526024820152600080516020610eb1833981519152604482015290519081900360640190fd5b6001546040805163b0772d0b60e01b815290516060926001600160a01b03169163b0772d0b91600480830192600092919082900301818387803b15801561033657600080fd5b505af115801561034a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561037357600080fd5b810190808051604051939291908464010000000082111561039357600080fd5b9083019060208201858111156103a857600080fd5b82518660208202830111640100000000821117156103c557600080fd5b82525081516020918201928201910280838360005b838110156103f25781810151838201526020016103da565b50505050905001604052505050905060008090505b81518110156102a55760015482516001600160a01b03909116906318c882a59084908490811061043357fe5b602090810291909101810151604080516001600160e01b031960e086901b1681526001600160a01b0390921660048301526001602483015251604480830193928290030181600087803b15801561048957600080fd5b505af115801561049d573d6000803e3d6000fd5b505050506040513d60208110156104b357600080fd5b5050600101610407565b6001546001600160a01b031681565b6104d4610ccf565b610513576040805162461bcd60e51b81526020600482018190526024820152600080516020610eb1833981519152604482015290519081900360640190fd5b6001546040805163b0772d0b60e01b815290516060926001600160a01b03169163b0772d0b91600480830192600092919082900301818387803b15801561055957600080fd5b505af115801561056d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561059657600080fd5b81019080805160405193929190846401000000008211156105b657600080fd5b9083019060208201858111156105cb57600080fd5b82518660208202830111640100000000821117156105e857600080fd5b82525081516020918201928201910280838360005b838110156106155781810151838201526020016105fd565b50505050905001604052505050905060008090505b81518110156102a55760015482516001600160a01b0390911690633bcf7ec19084908490811061065657fe5b602090810291909101810151604080516001600160e01b031960e086901b1681526001600160a01b0390921660048301526001602483015251604480830193928290030181600087803b1580156106ac57600080fd5b505af11580156106c0573d6000803e3d6000fd5b505050506040513d60208110156106d657600080fd5b505060010161062a565b6106e8610ccf565b610727576040805162461bcd60e51b81526020600482018190526024820152600080516020610eb1833981519152604482015290519081900360640190fd5b6001546040805163b0772d0b60e01b815290516060926001600160a01b03169163b0772d0b91600480830192600092919082900301818387803b15801561076d57600080fd5b505af1158015610781573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405260208110156107aa57600080fd5b81019080805160405193929190846401000000008211156107ca57600080fd5b9083019060208201858111156107df57600080fd5b82518660208202830111640100000000821117156107fc57600080fd5b82525081516020918201928201910280838360005b83811015610829578181015183820152602001610811565b50505050905001604052505050905060008090505b81518110156109995760015482516001600160a01b0390911690633bcf7ec19084908490811061086a57fe5b602090810291909101810151604080516001600160e01b031960e086901b1681526001600160a01b0390921660048301526001602483015251604480830193928290030181600087803b1580156108c057600080fd5b505af11580156108d4573d6000803e3d6000fd5b505050506040513d60208110156108ea57600080fd5b505060015482516001600160a01b03909116906318c882a59084908490811061090f57fe5b602090810291909101810151604080516001600160e01b031960e086901b1681526001600160a01b0390921660048301526001602483015251604480830193928290030181600087803b15801561096557600080fd5b505af1158015610979573d6000803e3d6000fd5b505050506040513d602081101561098f57600080fd5b505060010161083e565b5060018054604080516323afd8d960e21b81526004810193909352516001600160a01b0390911691638ebf63649160248083019260209291908290030181600087803b1580156109e857600080fd5b505af11580156109fc573d6000803e3d6000fd5b505050506040513d6020811015610a1257600080fd5b505060018054604080516305ae1b6f60e31b81526004810193909352516001600160a01b0390911691632d70db789160248083019260209291908290030181600087803b158015610a6257600080fd5b505af1158015610a76573d6000803e3d6000fd5b505050506040513d6020811015610a8c57600080fd5b505050565b610a99610ccf565b610ad8576040805162461bcd60e51b81526020600482018190526024820152600080516020610eb1833981519152604482015290519081900360640190fd5b60018054604080516323afd8d960e21b81526004810193909352516001600160a01b0390911691638ebf63649160248083019260209291908290030181600087803b15801561027b57600080fd5b610b2e610ccf565b610b6d576040805162461bcd60e51b81526020600482018190526024820152600080516020610eb1833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610bbf610ccf565b610bfe576040805162461bcd60e51b81526020600482018190526024820152600080516020610eb1833981519152604482015290519081900360640190fd5b6001805460408051633bcf7ec160e01b81526001600160a01b038581166004830152602482019490945290519290911691633bcf7ec1916044808201926020929091908290030181600087803b158015610a6257600080fd5b610c5f610ccf565b610c9e576040805162461bcd60e51b81526020600482018190526024820152600080516020610eb1833981519152604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031690565b600080546001600160a01b0316610ce4610de6565b6001600160a01b031614905090565b610cfb610ccf565b610d3a576040805162461bcd60e51b81526020600482018190526024820152600080516020610eb1833981519152604482015290519081900360640190fd5b60018054604080516318c882a560e01b81526001600160a01b0385811660048301526024820194909452905192909116916318c882a5916044808201926020929091908290030181600087803b158015610a6257600080fd5b610d9b610ccf565b610dda576040805162461bcd60e51b81526020600482018190526024820152600080516020610eb1833981519152604482015290519081900360640190fd5b610de381610dea565b50565b3390565b6001600160a01b038116610e2f5760405162461bcd60e51b8152600401808060200182810382526026815260200180610e8b6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b039290921691909117905556fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a265627a7a7231582045ec620df06feefc9b6bf1c195445166b40e2423b60b501b9b98525fdc9b410064736f6c63430005100032

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000f390559f258eb8591c8e31cf0905e97cf36ace2

-----Decoded View---------------
Arg [0] : comptroller (address): 0x0F390559F258eB8591C8e31Cf0905E97cf36ACE2

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000f390559f258eb8591c8e31cf0905e97cf36ace2


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.