ETH Price: $2,533.09 (-0.03%)

Contract

0x5e29C223d99648C88610519f96E85E627b3ABe17
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Vote Transaction206153382024-08-26 21:05:112 days ago1724706311IN
0x5e29C223...27b3ABe17
0 ETH0.000326561.55210609
Vote Transaction206153352024-08-26 21:04:352 days ago1724706275IN
0x5e29C223...27b3ABe17
0 ETH0.000141211.5845112
Vote Transaction206153322024-08-26 21:03:592 days ago1724706239IN
0x5e29C223...27b3ABe17
0 ETH0.00014121.58697474
Vote Transaction206151552024-08-26 20:28:232 days ago1724704103IN
0x5e29C223...27b3ABe17
0 ETH0.000066111.80646527
Vote Transaction206151552024-08-26 20:28:232 days ago1724704103IN
0x5e29C223...27b3ABe17
0 ETH0.000380081.80646527
Vote Transaction206151482024-08-26 20:26:592 days ago1724704019IN
0x5e29C223...27b3ABe17
0 ETH0.000162081.81872539
Vote Transaction206151462024-08-26 20:26:352 days ago1724703995IN
0x5e29C223...27b3ABe17
0 ETH0.000163681.83960944
Vote Transaction205863032024-08-22 19:41:596 days ago1724355719IN
0x5e29C223...27b3ABe17
0 ETH0.000324051.54007778
Vote Transaction205863032024-08-22 19:41:596 days ago1724355719IN
0x5e29C223...27b3ABe17
0 ETH0.000137271.54007778
Vote Transaction205862982024-08-22 19:40:596 days ago1724355659IN
0x5e29C223...27b3ABe17
0 ETH0.000151411.70146228
Vote Transaction205755072024-08-21 7:28:598 days ago1724225339IN
0x5e29C223...27b3ABe17
0 ETH0.000240131.14126754
Vote Transaction205755062024-08-21 7:28:478 days ago1724225327IN
0x5e29C223...27b3ABe17
0 ETH0.000103461.16075732
Vote Transaction205755042024-08-21 7:28:238 days ago1724225303IN
0x5e29C223...27b3ABe17
0 ETH0.000115821.30156151
Vote Transaction205617162024-08-19 9:15:3510 days ago1724058935IN
0x5e29C223...27b3ABe17
0 ETH0.000352381.6749306
Vote Transaction205617132024-08-19 9:14:5910 days ago1724058899IN
0x5e29C223...27b3ABe17
0 ETH0.000144291.6193399
Vote Transaction205617102024-08-19 9:14:2310 days ago1724058863IN
0x5e29C223...27b3ABe17
0 ETH0.000134651.51359148
Vote Transaction205239342024-08-14 2:38:1115 days ago1723603091IN
0x5e29C223...27b3ABe17
0 ETH0.000422642.00852469
Vote Transaction205239312024-08-14 2:37:3515 days ago1723603055IN
0x5e29C223...27b3ABe17
0 ETH0.000193842.17445501
Vote Transaction205239292024-08-14 2:37:1115 days ago1723603031IN
0x5e29C223...27b3ABe17
0 ETH0.000200082.24806813
Vote Transaction205230872024-08-13 23:47:5915 days ago1723592879IN
0x5e29C223...27b3ABe17
0 ETH0.000316361.50363062
Vote Transaction205230852024-08-13 23:47:3515 days ago1723592855IN
0x5e29C223...27b3ABe17
0 ETH0.000139271.56269337
Vote Transaction205230852024-08-13 23:47:3515 days ago1723592855IN
0x5e29C223...27b3ABe17
0 ETH0.000139041.56269337
Vote Transaction205228082024-08-13 22:52:1115 days ago1723589531IN
0x5e29C223...27b3ABe17
0 ETH0.000310941.47798142
Vote Transaction205228062024-08-13 22:51:4715 days ago1723589507IN
0x5e29C223...27b3ABe17
0 ETH0.000126691.42182792
Vote Transaction205228042024-08-13 22:51:2315 days ago1723589483IN
0x5e29C223...27b3ABe17
0 ETH0.000122311.37484724
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
FederationProxy

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 5 : Proxies.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.7.0;
pragma abicoder v2;

import "./zeppelin/upgradable/proxy/TransparentUpgradeableProxy.sol";

contract BridgeProxy is TransparentUpgradeableProxy {
    constructor(address _logic, address _admin, bytes memory _data) TransparentUpgradeableProxy(_logic,_admin, _data) payable {}
}

contract AllowTokensProxy is TransparentUpgradeableProxy {
    constructor(address _logic, address _admin, bytes memory _data) TransparentUpgradeableProxy(_logic,_admin, _data) payable {}
}

contract FederationProxy is TransparentUpgradeableProxy {
    constructor(address _logic, address _admin, bytes memory _data) TransparentUpgradeableProxy(_logic,_admin, _data) payable {}
}

File 2 of 5 : Proxy.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.7.0;
pragma abicoder v2;

/**
 * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
 * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
 * be specified by overriding the virtual {_implementation} function.
 *
 * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
 * different contract through the {_delegate} function.
 *
 * The success and return data of the delegated call will be returned back to the caller of the proxy.
 */
abstract contract Proxy {
    /**
     * @dev Delegates the current call to `implementation`.
     *
     * This function does not return to its internall call site, it will return directly to the external caller.
     */
    function _delegate(address implementation) internal virtual {
        // solhint-disable-next-line no-inline-assembly
        assembly {
            // Copy msg.data. We take full control of memory in this inline assembly
            // block because it will not return to Solidity code. We overwrite the
            // Solidity scratch pad at memory position 0.
            calldatacopy(0, 0, calldatasize())

            // Call the implementation.
            // out and outsize are 0 because we don't know the size yet.
            let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)

            // Copy the returned data.
            returndatacopy(0, 0, returndatasize())

            switch result
            // delegatecall returns 0 on error.
            case 0 { revert(0, returndatasize()) }
            default { return(0, returndatasize()) }
        }
    }

    /**
     * @dev This is a virtual function that should be overriden so it returns the address to which the fallback function
     * and {_fallback} should delegate.
     */
    function _implementation() internal view virtual returns (address);

    /**
     * @dev Delegates the current call to the address returned by `_implementation()`.
     *
     * This function does not return to its internall call site, it will return directly to the external caller.
     */
    function _fallback() internal virtual {
        _beforeFallback();
        _delegate(_implementation());
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other
     * function in the contract matches the call data.
     */
    fallback () external payable virtual {
        _fallback();
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data
     * is empty.
     */
    receive () external payable virtual {
        _fallback();
    }

    /**
     * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback`
     * call, or as part of the Solidity `fallback` or `receive` functions.
     *
     * If overriden should call `super._beforeFallback()`.
     */
    function _beforeFallback() internal virtual {
    }
}

File 3 of 5 : TransparentUpgradeableProxy.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.7.0;
pragma abicoder v2;

import "./UpgradeableProxy.sol";

/**
 * @dev This contract implements a proxy that is upgradeable by an admin.
 *
 * To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector
 * clashing], which can potentially be used in an attack, this contract uses the
 * https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two
 * things that go hand in hand:
 *
 * 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if
 * that call matches one of the admin functions exposed by the proxy itself.
 * 2. If the admin calls the proxy, it can access the admin functions, but its calls will never be forwarded to the
 * implementation. If the admin tries to call a function on the implementation it will fail with an error that says
 * "admin cannot fallback to proxy target".
 *
 * These properties mean that the admin account can only be used for admin actions like upgrading the proxy or changing
 * the admin, so it's best if it's a dedicated account that is not used for anything else. This will avoid headaches due
 * to sudden errors when trying to call a function from the proxy implementation.
 *
 * Our recommendation is for the dedicated account to be an instance of the {ProxyAdmin} contract. If set up this way,
 * you should think of the `ProxyAdmin` instance as the real administrative interface of your proxy.
 */
contract TransparentUpgradeableProxy is UpgradeableProxy {
    /**
     * @dev Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and
     * optionally initialized with `_data` as explained in {UpgradeableProxy-constructor}.
     */
    constructor(address _logic, address admin_, bytes memory _data) payable UpgradeableProxy(_logic, _data) {
        assert(_ADMIN_SLOT == bytes32(uint256(keccak256("eip1967.proxy.admin")) - 1));
        _setAdmin(admin_);
    }

    /**
     * @dev Emitted when the admin account has changed.
     */
    event AdminChanged(address previousAdmin, address newAdmin);

    /**
     * @dev Storage slot with the admin of the contract.
     * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is
     * validated in the constructor.
     */
    bytes32 private constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;

    /**
     * @dev Modifier used internally that will delegate the call to the implementation unless the sender is the admin.
     */
    modifier ifAdmin() {
        if (msg.sender == _admin()) {
            _;
        } else {
            _fallback();
        }
    }

    /**
     * @dev Returns the current admin.
     *
     * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyAdmin}.
     *
     * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the
     * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
     * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`
     */
    function admin() external ifAdmin returns (address admin_) {
        admin_ = _admin();
    }

    /**
     * @dev Returns the current implementation.
     *
     * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyImplementation}.
     *
     * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the
     * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.
     * `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`
     */
    function implementation() external ifAdmin returns (address implementation_) {
        implementation_ = _implementation();
    }

    /**
     * @dev Changes the admin of the proxy.
     *
     * Emits an {AdminChanged} event.
     *
     * NOTE: Only the admin can call this function. See {ProxyAdmin-changeProxyAdmin}.
     */
    function changeAdmin(address newAdmin) external virtual ifAdmin {
        require(newAdmin != address(0), "TransparentUpgradeableProxy: new admin is the zero address");
        emit AdminChanged(_admin(), newAdmin);
        _setAdmin(newAdmin);
    }

    /**
     * @dev Upgrade the implementation of the proxy.
     *
     * NOTE: Only the admin can call this function. See {ProxyAdmin-upgrade}.
     */
    function upgradeTo(address newImplementation) external virtual ifAdmin {
        _upgradeTo(newImplementation);
    }

    /**
     * @dev Upgrade the implementation of the proxy, and then call a function from the new implementation as specified
     * by `data`, which should be an encoded function call. This is useful to initialize new storage variables in the
     * proxied contract.
     *
     * NOTE: Only the admin can call this function. See {ProxyAdmin-upgradeAndCall}.
     */
    function upgradeToAndCall(address newImplementation, bytes calldata data) external payable virtual ifAdmin {
        _upgradeTo(newImplementation);
        Address.functionDelegateCall(newImplementation, data);
    }

    /**
     * @dev Returns the current admin.
     */
    function _admin() internal view virtual returns (address adm) {
        bytes32 slot = _ADMIN_SLOT;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            adm := sload(slot)
        }
    }

    /**
     * @dev Stores a new address in the EIP1967 admin slot.
     */
    function _setAdmin(address newAdmin) private {
        bytes32 slot = _ADMIN_SLOT;

        // solhint-disable-next-line no-inline-assembly
        assembly {
            sstore(slot, newAdmin)
        }
    }

    /**
     * @dev Makes sure the admin cannot access the fallback function. See {Proxy-_beforeFallback}.
     */
    function _beforeFallback() internal virtual override {
        require(msg.sender != _admin(), "TransparentUpgradeableProxy: admin cannot fallback to proxy target");
        super._beforeFallback();
    }
}

File 4 of 5 : UpgradeableProxy.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.7.0;
pragma abicoder v2;

import "./Proxy.sol";
import "../../utils/Address.sol";

/**
 * @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an
 * implementation address that can be changed. This address is stored in storage in the location specified by
 * https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the
 * implementation behind the proxy.
 *
 * Upgradeability is only provided internally through {_upgradeTo}. For an externally upgradeable proxy see
 * {TransparentUpgradeableProxy}.
 */
contract UpgradeableProxy is Proxy {
    /**
     * @dev Initializes the upgradeable proxy with an initial implementation specified by `_logic`.
     *
     * If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded
     * function call, and allows initializating the storage of the proxy like a Solidity constructor.
     */
    constructor(address _logic, bytes memory _data) payable {
        assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1));
        _setImplementation(_logic);
        if(_data.length > 0) {
            Address.functionDelegateCall(_logic, _data);
        }
    }

    /**
     * @dev Emitted when the implementation is upgraded.
     */
    event Upgraded(address indexed implementation);

    /**
     * @dev Storage slot with the address of the current implementation.
     * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
     * validated in the constructor.
     */
    bytes32 private constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    /**
     * @dev Returns the current implementation address.
     */
    function _implementation() internal view virtual override returns (address impl) {
        bytes32 slot = _IMPLEMENTATION_SLOT;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            impl := sload(slot)
        }
    }

    /**
     * @dev Upgrades the proxy to a new implementation.
     *
     * Emits an {Upgraded} event.
     */
    function _upgradeTo(address newImplementation) internal virtual {
        _setImplementation(newImplementation);
        emit Upgraded(newImplementation);
    }

    /**
     * @dev Stores a new address in the EIP1967 implementation slot.
     */
    function _setImplementation(address newImplementation) private {
        require(Address.isContract(newImplementation), "UpgradeableProxy: new implementation is not a contract");

        bytes32 slot = _IMPLEMENTATION_SLOT;

        // solhint-disable-next-line no-inline-assembly
        assembly {
            sstore(slot, newImplementation)
        }
    }
}

File 5 of 5 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.7.0;
pragma abicoder v2;

/**
 * @dev Collection of functions related to the address type,
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

     /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "istanbul",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"address","name":"_admin","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"admin_","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"changeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"implementation_","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260405162000cff38038062000cff83398101604081905262000026916200028b565b8282828281620000368262000077565b8051156200005757620000558282620000d960201b620002ca1760201c565b505b50620000609050565b6200006b826200012a565b5050505050506200047a565b6200008d816200014e60201b620003131760201c565b620000b55760405162461bcd60e51b8152600401620000ac90620003a4565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b60606200012383836040518060400160405280601d81526020017f416464726573733a2064656c65676174652063616c6c206661696c65640000008152506200018d60201b60201c565b9392505050565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610355565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906200018357508115155b925050505b919050565b60606200019a846200014e565b620001b95760405162461bcd60e51b8152600401620000ac9062000401565b600080856001600160a01b031685604051620001d6919062000351565b600060405180830381855af49150503d806000811462000213576040519150601f19603f3d011682016040523d82523d6000602084013e62000218565b606091505b5090925090506200022b82828662000235565b9695505050505050565b606083156200024657508162000123565b825115620002575782518084602001fd5b8160405162461bcd60e51b8152600401620000ac91906200036f565b80516001600160a01b03811681146200018857600080fd5b600080600060608486031215620002a0578283fd5b620002ab8462000273565b9250620002bb6020850162000273565b60408501519092506001600160401b0380821115620002d8578283fd5b818601915086601f830112620002ec578283fd5b815181811115620002f957fe5b604051601f8201601f1916810160200183811182821017156200031857fe5b60405281815283820160200189101562000330578485fd5b6200034382602083016020870162000447565b809450505050509250925092565b600082516200036581846020870162000447565b9190910192915050565b60006020825282518060208401526200039081604085016020870162000447565b601f01601f19169190910160400192915050565b60208082526036908201527f5570677261646561626c6550726f78793a206e657720696d706c656d656e746160408201527f74696f6e206973206e6f74206120636f6e747261637400000000000000000000606082015260800190565b60208082526026908201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6040820152651b9d1c9858dd60d21b606082015260800190565b60005b83811015620004645781810151838201526020016200044a565b8381111562000474576000848401525b50505050565b610875806200048a6000396000f3fe60806040526004361061004e5760003560e01c80633659cfe6146100655780634f1ef286146100855780635c60da1b146100985780638f283970146100c3578063f851a440146100e35761005d565b3661005d5761005b6100f8565b005b61005b6100f8565b34801561007157600080fd5b5061005b610080366004610599565b610112565b61005b6100933660046105b3565b61014c565b3480156100a457600080fd5b506100ad6101c9565b6040516100ba919061064d565b60405180910390f35b3480156100cf57600080fd5b5061005b6100de366004610599565b610206565b3480156100ef57600080fd5b506100ad61029f565b610100610351565b61011061010b610392565b6103b7565b565b61011a6103db565b6001600160a01b0316336001600160a01b031614156101415761013c81610400565b610149565b6101496100f8565b50565b6101546103db565b6001600160a01b0316336001600160a01b031614156101bc5761017683610400565b6101b68383838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506102ca92505050565b506101c4565b6101c46100f8565b505050565b60006101d36103db565b6001600160a01b0316336001600160a01b031614156101fb576101f4610392565b9050610203565b6102036100f8565b90565b61020e6103db565b6001600160a01b0316336001600160a01b03161415610141576001600160a01b0381166102565760405162461bcd60e51b815260040161024d906106ae565b60405180910390fd5b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61027f6103db565b8260405161028e929190610661565b60405180910390a161013c81610440565b60006102a96103db565b6001600160a01b0316336001600160a01b031614156101fb576101f46103db565b606061030c83836040518060400160405280601d81526020017f416464726573733a2064656c65676174652063616c6c206661696c6564000000815250610464565b9392505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061034757508115155b925050505b919050565b6103596103db565b6001600160a01b0316336001600160a01b0316141561038a5760405162461bcd60e51b815260040161024d906107a7565b610110610110565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b3660008037600080366000845af43d6000803e8080156103d6573d6000f35b3d6000fd5b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b61040981610500565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610355565b606061046f84610313565b61048b5760405162461bcd60e51b815260040161024d90610761565b600080856001600160a01b0316856040516104a69190610631565b600060405180830381855af49150503d80600081146104e1576040519150601f19603f3d011682016040523d82523d6000602084013e6104e6565b606091505b50915091506104f6828286610549565b9695505050505050565b61050981610313565b6105255760405162461bcd60e51b815260040161024d9061070b565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b6060831561055857508161030c565b8251156105685782518084602001fd5b8160405162461bcd60e51b815260040161024d919061067b565b80356001600160a01b038116811461034c57600080fd5b6000602082840312156105aa578081fd5b61030c82610582565b6000806000604084860312156105c7578182fd5b6105d084610582565b9250602084013567ffffffffffffffff808211156105ec578384fd5b818601915086601f8301126105ff578384fd5b81358181111561060d578485fd5b87602082850101111561061e578485fd5b6020830194508093505050509250925092565b6000825161064381846020870161080f565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b600060208252825180602084015261069a81604085016020870161080f565b601f01601f19169190910160400192915050565b6020808252603a908201527f5472616e73706172656e745570677261646561626c6550726f78793a206e657760408201527f2061646d696e20697320746865207a65726f2061646472657373000000000000606082015260800190565b60208082526036908201527f5570677261646561626c6550726f78793a206e657720696d706c656d656e74616040820152751d1a5bdb881a5cc81b9bdd08184818dbdb9d1c9858dd60521b606082015260800190565b60208082526026908201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6040820152651b9d1c9858dd60d21b606082015260800190565b60208082526042908201527f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60408201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f78792074617267606082015261195d60f21b608082015260a00190565b60005b8381101561082a578181015183820152602001610812565b83811115610839576000848401525b5050505056fea26469706673582212206ff744d73074432841eb53e7de625437a2ea89d6f859de8ecb94a396ebf75e0e64736f6c634300070600330000000000000000000000005631a6ac95b6bde690807085aaa70e3b2d9d76c5000000000000000000000000e4d351911a6d599f91a3db1843e2ecb0f851e7e600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000144c1b4a1e30000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000200000000000000000000000012ed69359919fc775bc2674860e8fe2d2b6a7b5d000000000000000000000000040007b1804ad78a97f541bebed377dcb60e413800000000000000000000000000000000000000000000000000000000000000050000000000000000000000005eb6ceca6bdd82f4a38aac0b957e6a4b5b1cceba0000000000000000000000008a9ec366c1b359fed1a7372cf8607ec52963b550000000000000000000000000a4398c6ff62e9b93b32b28dd29bd27c6b106245f0000000000000000000000001089a708b03821b19db9bdf179fbd7ed7ce591d700000000000000000000000004237d65eb6cdc9f93db42fef53f7d5aaca2f1d600000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061004e5760003560e01c80633659cfe6146100655780634f1ef286146100855780635c60da1b146100985780638f283970146100c3578063f851a440146100e35761005d565b3661005d5761005b6100f8565b005b61005b6100f8565b34801561007157600080fd5b5061005b610080366004610599565b610112565b61005b6100933660046105b3565b61014c565b3480156100a457600080fd5b506100ad6101c9565b6040516100ba919061064d565b60405180910390f35b3480156100cf57600080fd5b5061005b6100de366004610599565b610206565b3480156100ef57600080fd5b506100ad61029f565b610100610351565b61011061010b610392565b6103b7565b565b61011a6103db565b6001600160a01b0316336001600160a01b031614156101415761013c81610400565b610149565b6101496100f8565b50565b6101546103db565b6001600160a01b0316336001600160a01b031614156101bc5761017683610400565b6101b68383838080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506102ca92505050565b506101c4565b6101c46100f8565b505050565b60006101d36103db565b6001600160a01b0316336001600160a01b031614156101fb576101f4610392565b9050610203565b6102036100f8565b90565b61020e6103db565b6001600160a01b0316336001600160a01b03161415610141576001600160a01b0381166102565760405162461bcd60e51b815260040161024d906106ae565b60405180910390fd5b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61027f6103db565b8260405161028e929190610661565b60405180910390a161013c81610440565b60006102a96103db565b6001600160a01b0316336001600160a01b031614156101fb576101f46103db565b606061030c83836040518060400160405280601d81526020017f416464726573733a2064656c65676174652063616c6c206661696c6564000000815250610464565b9392505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061034757508115155b925050505b919050565b6103596103db565b6001600160a01b0316336001600160a01b0316141561038a5760405162461bcd60e51b815260040161024d906107a7565b610110610110565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b3660008037600080366000845af43d6000803e8080156103d6573d6000f35b3d6000fd5b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b61040981610500565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610355565b606061046f84610313565b61048b5760405162461bcd60e51b815260040161024d90610761565b600080856001600160a01b0316856040516104a69190610631565b600060405180830381855af49150503d80600081146104e1576040519150601f19603f3d011682016040523d82523d6000602084013e6104e6565b606091505b50915091506104f6828286610549565b9695505050505050565b61050981610313565b6105255760405162461bcd60e51b815260040161024d9061070b565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b6060831561055857508161030c565b8251156105685782518084602001fd5b8160405162461bcd60e51b815260040161024d919061067b565b80356001600160a01b038116811461034c57600080fd5b6000602082840312156105aa578081fd5b61030c82610582565b6000806000604084860312156105c7578182fd5b6105d084610582565b9250602084013567ffffffffffffffff808211156105ec578384fd5b818601915086601f8301126105ff578384fd5b81358181111561060d578485fd5b87602082850101111561061e578485fd5b6020830194508093505050509250925092565b6000825161064381846020870161080f565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b600060208252825180602084015261069a81604085016020870161080f565b601f01601f19169190910160400192915050565b6020808252603a908201527f5472616e73706172656e745570677261646561626c6550726f78793a206e657760408201527f2061646d696e20697320746865207a65726f2061646472657373000000000000606082015260800190565b60208082526036908201527f5570677261646561626c6550726f78793a206e657720696d706c656d656e74616040820152751d1a5bdb881a5cc81b9bdd08184818dbdb9d1c9858dd60521b606082015260800190565b60208082526026908201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6040820152651b9d1c9858dd60d21b606082015260800190565b60208082526042908201527f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60408201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f78792074617267606082015261195d60f21b608082015260a00190565b60005b8381101561082a578181015183820152602001610812565b83811115610839576000848401525b5050505056fea26469706673582212206ff744d73074432841eb53e7de625437a2ea89d6f859de8ecb94a396ebf75e0e64736f6c63430007060033

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

0000000000000000000000005631a6ac95b6bde690807085aaa70e3b2d9d76c5000000000000000000000000e4d351911a6d599f91a3db1843e2ecb0f851e7e600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000144c1b4a1e30000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000200000000000000000000000012ed69359919fc775bc2674860e8fe2d2b6a7b5d000000000000000000000000040007b1804ad78a97f541bebed377dcb60e413800000000000000000000000000000000000000000000000000000000000000050000000000000000000000005eb6ceca6bdd82f4a38aac0b957e6a4b5b1cceba0000000000000000000000008a9ec366c1b359fed1a7372cf8607ec52963b550000000000000000000000000a4398c6ff62e9b93b32b28dd29bd27c6b106245f0000000000000000000000001089a708b03821b19db9bdf179fbd7ed7ce591d700000000000000000000000004237d65eb6cdc9f93db42fef53f7d5aaca2f1d600000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _logic (address): 0x5631a6Ac95B6BDE690807085aAa70E3b2D9d76C5
Arg [1] : _admin (address): 0xe4D351911A6d599F91A3DB1843e2ECb0f851E7e6
Arg [2] : _data (bytes): 0xc1b4a1e30000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000200000000000000000000000012ed69359919fc775bc2674860e8fe2d2b6a7b5d000000000000000000000000040007b1804ad78a97f541bebed377dcb60e413800000000000000000000000000000000000000000000000000000000000000050000000000000000000000005eb6ceca6bdd82f4a38aac0b957e6a4b5b1cceba0000000000000000000000008a9ec366c1b359fed1a7372cf8607ec52963b550000000000000000000000000a4398c6ff62e9b93b32b28dd29bd27c6b106245f0000000000000000000000001089a708b03821b19db9bdf179fbd7ed7ce591d700000000000000000000000004237d65eb6cdc9f93db42fef53f7d5aaca2f1d6

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000005631a6ac95b6bde690807085aaa70e3b2d9d76c5
Arg [1] : 000000000000000000000000e4d351911a6d599f91a3db1843e2ecb0f851e7e6
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000144
Arg [4] : c1b4a1e300000000000000000000000000000000000000000000000000000000
Arg [5] : 0000008000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000200000000000000000000000012ed69359919fc775bc2674860e8fe2d
Arg [7] : 2b6a7b5d000000000000000000000000040007b1804ad78a97f541bebed377dc
Arg [8] : b60e413800000000000000000000000000000000000000000000000000000000
Arg [9] : 000000050000000000000000000000005eb6ceca6bdd82f4a38aac0b957e6a4b
Arg [10] : 5b1cceba0000000000000000000000008a9ec366c1b359fed1a7372cf8607ec5
Arg [11] : 2963b550000000000000000000000000a4398c6ff62e9b93b32b28dd29bd27c6
Arg [12] : b106245f0000000000000000000000001089a708b03821b19db9bdf179fbd7ed
Arg [13] : 7ce591d700000000000000000000000004237d65eb6cdc9f93db42fef53f7d5a
Arg [14] : aca2f1d600000000000000000000000000000000000000000000000000000000


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.