ETH Price: $2,638.68 (+0.11%)
Gas: 2 Gwei

Contract

0x37cBA8d1308019594621438bd1527E5A6a34B49F
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer Ownersh...135649342021-11-06 19:50:071007 days ago1636228207IN
0x37cBA8d1...A6a34B49F
0 ETH0.00315484109.96311868
Transfer Ownersh...135565882021-11-05 12:28:081008 days ago1636115288IN
0x37cBA8d1...A6a34B49F
0 ETH0.00290529101.26509753
0x94208421135141092021-10-29 20:07:071015 days ago1635538027IN
0x37cBA8d1...A6a34B49F
0 ETH0.02593192172
0x94208421134953572021-10-26 21:22:061018 days ago1635283326IN
0x37cBA8d1...A6a34B49F
0 ETH0.01169586110
0x94208421134953572021-10-26 21:22:061018 days ago1635283326IN
0x37cBA8d1...A6a34B49F
0 ETH0.01658437110
0x94208421133930042021-10-10 20:20:421034 days ago1633897242IN
0x37cBA8d1...A6a34B49F
0 ETH0.0131167287
0x94208421133495942021-10-04 1:00:361041 days ago1633309236IN
0x37cBA8d1...A6a34B49F
0 ETH0.009712764.4219724
0x94208421132376502021-09-16 15:46:551058 days ago1631807215IN
0x37cBA8d1...A6a34B49F
0 ETH0.0099931366.28199595
0x94208421131807302021-09-07 20:11:191067 days ago1631045479IN
0x37cBA8d1...A6a34B49F
0 ETH0.01918295127.23575455
0x94208421131745032021-09-06 21:10:211068 days ago1630962621IN
0x37cBA8d1...A6a34B49F
0 ETH0.02352285156.02125
0x94208421131744082021-09-06 20:46:441068 days ago1630961204IN
0x37cBA8d1...A6a34B49F
0 ETH0.02083452138.19022664
Transfer Ownersh...131743632021-09-06 20:36:201068 days ago1630960580IN
0x37cBA8d1...A6a34B49F
0 ETH0.00390816136.22050985
0x60806040131273462021-08-30 14:12:171075 days ago1630332737IN
 Contract Creation
0 ETH0.0317990287.46832451

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

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

Contract Name:
Proxy

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2021-08-14
*/

pragma solidity 0.6.12;

/// SPDX-License-Identifier: MIT


/**
 * @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) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

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

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

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

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

    /**
     * @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: low-level 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);
            }
        }
    }
}

/*
 * @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.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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

/**
 * @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.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * 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.
 */
abstract 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 virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the 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 virtual 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 virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

contract Upgradeable is Ownable {
    address public implementation;
}

contract Proxy is Upgradeable {

    constructor(address _impl) public payable {
        replaceImplementation(_impl);
    }

    fallback() external payable {
        _fallback();
    }
    receive() external payable {
        _fallback();
    }
    function _fallback() internal {
        if (gasleft() <= 2300) {
            return;
        }

        address impl = implementation;

        assembly {
            calldatacopy(0, 0, calldatasize())
            let result := delegatecall(gas(), impl, 0, calldatasize(), 0, 0)

            returndatacopy(0, 0, returndatasize())

            switch result
            case 0 { revert(0, returndatasize()) }
            default { return(0, returndatasize()) }
        }
    }

    function replaceImplementation(address impl) public onlyOwner {
        require(Address.isContract(impl), "not a contract");
        implementation = impl;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_impl","type":"address"}],"stateMutability":"payable","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"impl","type":"address"}],"name":"replaceImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

Deployed Bytecode

0x60806040526004361061004e5760003560e01c80635c60da1b14610065578063715018a6146100965780638da5cb5b146100ab578063d69efdc5146100c0578063f2fde38b146100f35761005d565b3661005d5761005b610126565b005b61005b610126565b34801561007157600080fd5b5061007a610166565b604080516001600160a01b039092168252519081900360200190f35b3480156100a257600080fd5b5061005b610175565b3480156100b757600080fd5b5061007a610233565b3480156100cc57600080fd5b5061005b600480360360208110156100e357600080fd5b50356001600160a01b0316610242565b3480156100ff57600080fd5b5061005b6004803603602081101561011657600080fd5b50356001600160a01b0316610323565b6108fc5a1161013457610164565b6001546001600160a01b03163660008037600080366000845af43d6000803e80801561015f573d6000f35b3d6000fd5b565b6001546001600160a01b031681565b61017d61043d565b6001600160a01b031661018e610233565b6001600160a01b0316146101e9576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b61024a61043d565b6001600160a01b031661025b610233565b6001600160a01b0316146102b6576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6102bf81610437565b610301576040805162461bcd60e51b815260206004820152600e60248201526d1b9bdd08184818dbdb9d1c9858dd60921b604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b61032b61043d565b6001600160a01b031661033c610233565b6001600160a01b031614610397576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166103dc5760405162461bcd60e51b81526004018080602001828103825260268152602001806104426026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3b151590565b339056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373a2646970667358221220606c3321f02458176535386fd4b851f45acf391b9632dab19d278a3f2e94465764736f6c634300060c0033

Deployed Bytecode Sourcemap

11200:931:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11438:11;:9;:11::i;:::-;11200:931;;11375:11;:9;:11::i;11163:29::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;11163:29:0;;;;;;;;;;;;;;10570:148;;;;;;;;;;;;;:::i;9919:87::-;;;;;;;;;;;;;:::i;11964:164::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11964:164:0;-1:-1:-1;;;;;11964:164:0;;:::i;10873:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10873:244:0;-1:-1:-1;;;;;10873:244:0;;:::i;11463:493::-;11521:4;11508:9;:17;11504:56;;11542:7;;11504:56;11587:14;;-1:-1:-1;;;;;11587:14:0;11657;11572:12;;11638:34;11748:1;11745;11729:14;11726:1;11720:4;11713:5;11700:50;11787:16;11784:1;11781;11766:38;11827:6;11847:38;;;;11919:16;11916:1;11909:27;11847:38;11866:16;11863:1;11856:27;11623:326;:::o;11163:29::-;;;-1:-1:-1;;;;;11163:29:0;;:::o;10570:148::-;10150:12;:10;:12::i;:::-;-1:-1:-1;;;;;10139:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;10139:23:0;;10131:68;;;;;-1:-1:-1;;;10131:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10677:1:::1;10661:6:::0;;10640:40:::1;::::0;-1:-1:-1;;;;;10661:6:0;;::::1;::::0;10640:40:::1;::::0;10677:1;;10640:40:::1;10708:1;10691:19:::0;;-1:-1:-1;;;;;;10691:19:0::1;::::0;;10570:148::o;9919:87::-;9965:7;9992:6;-1:-1:-1;;;;;9992:6:0;9919:87;:::o;11964:164::-;10150:12;:10;:12::i;:::-;-1:-1:-1;;;;;10139:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;10139:23:0;;10131:68;;;;;-1:-1:-1;;;10131:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12045:24:::1;12064:4;12045:18;:24::i;:::-;12037:51;;;::::0;;-1:-1:-1;;;12037:51:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;12037:51:0;;;;;;;;;;;;;::::1;;12099:14;:21:::0;;-1:-1:-1;;;;;;12099:21:0::1;-1:-1:-1::0;;;;;12099:21:0;;;::::1;::::0;;;::::1;::::0;;11964:164::o;10873:244::-;10150:12;:10;:12::i;:::-;-1:-1:-1;;;;;10139:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;10139:23:0;;10131:68;;;;;-1:-1:-1;;;10131:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10962:22:0;::::1;10954:73;;;;-1:-1:-1::0;;;10954:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11064:6;::::0;;11043:38:::1;::::0;-1:-1:-1;;;;;11043:38:0;;::::1;::::0;11064:6;::::1;::::0;11043:38:::1;::::0;::::1;11092:6;:17:::0;;-1:-1:-1;;;;;;11092:17:0::1;-1:-1:-1::0;;;;;11092:17:0;;;::::1;::::0;;;::::1;::::0;;10873:244::o;746:422::-;1113:20;1152:8;;;746:422::o;8548:106::-;8636:10;8548:106;:::o

Swarm Source

ipfs://606c3321f02458176535386fd4b851f45acf391b9632dab19d278a3f2e944657

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.