S Price: $0.068149 (+2.25%)
Gas: 55 Gwei

Contract

0x9A3Dea4432bE010Db8Bcfd297b918Ad012d389f9

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Block
From
To
Get All Rewards586123832025-12-22 17:45:3335 days ago1766425533IN
0x9A3Dea44...012d389f9
0 S0.0125895750.0001
Get All Rewards466551022025-09-12 23:23:24135 days ago1757719404IN
0x9A3Dea44...012d389f9
0 S0.0107328250.0001
Get All Rewards466059412025-09-12 13:28:27136 days ago1757683707IN
0x9A3Dea44...012d389f9
0 S0.0132241750.125
Get All Rewards466056232025-09-12 13:25:17136 days ago1757683517IN
0x9A3Dea44...012d389f9
0 S0.0129008250.0001
Get All Rewards448447552025-08-28 8:12:55151 days ago1756368775IN
0x9A3Dea44...012d389f9
0 S0.0141903355
Get All Rewards446740092025-08-27 1:37:38152 days ago1756258658IN
0x9A3Dea44...012d389f9
0 S0.0122783750.0001
Get All Rewards440625372025-08-22 7:43:06157 days ago1755848586IN
0x9A3Dea44...012d389f9
0 S0.0159951455.01
Get All Rewards440017912025-08-21 20:04:04157 days ago1755806644IN
0x9A3Dea44...012d389f9
0 S0.0122783750.0001
Get All Rewards421348382025-08-08 12:41:11171 days ago1754656871IN
0x9A3Dea44...012d389f9
0 S0.0141908855
Get All Rewards421329902025-08-08 12:17:39171 days ago1754655459IN
0x9A3Dea44...012d389f9
0 S0.0141908855
Get All Rewards419681542025-08-07 6:44:06172 days ago1754549046IN
0x9A3Dea44...012d389f9
0 S0.0107328250.0001
Get All Rewards419552312025-08-07 4:24:41172 days ago1754540681IN
0x9A3Dea44...012d389f9
0 S0.0125027250.0001
Get All Rewards419386942025-08-07 1:13:22172 days ago1754529202IN
0x9A3Dea44...012d389f9
0 S0.0124988750.0001
Get All Rewards419207192025-08-06 21:58:38172 days ago1754517518IN
0x9A3Dea44...012d389f9
0 S0.0127232250.0001
Get All Rewards416909322025-08-05 6:06:35174 days ago1754373995IN
0x9A3Dea44...012d389f9
0 S0.0127193750.0001
Get All Rewards416768892025-08-05 3:06:39174 days ago1754363199IN
0x9A3Dea44...012d389f9
0 S0.0127193750.0001
Get All Rewards415629362025-08-04 5:47:27175 days ago1754286447IN
0x9A3Dea44...012d389f9
0 S0.0122528250.0001
Get All Rewards415483192025-08-04 2:21:37175 days ago1754274097IN
0x9A3Dea44...012d389f9
0 S0.0147005655
Get All Rewards415315212025-08-03 22:44:53175 days ago1754261093IN
0x9A3Dea44...012d389f9
0 S0.0147005655
Get All Rewards412470032025-08-01 18:39:24178 days ago1754073564IN
0x9A3Dea44...012d389f9
0 S0.0127193750.0001
Get All Rewards411950832025-08-01 11:48:13178 days ago1754048893IN
0x9A3Dea44...012d389f9
0 S0.0173064355.55
Get All Rewards411887672025-08-01 10:49:00178 days ago1754045340IN
0x9A3Dea44...012d389f9
0 S0.0127193750.0001
Get All Rewards411842012025-08-01 10:09:29178 days ago1754042969IN
0x9A3Dea44...012d389f9
0 S0.0156480850.0001
Get All Rewards411839452025-08-01 10:07:12178 days ago1754042832IN
0x9A3Dea44...012d389f9
0 S0.0127193750.0001
Get All Rewards408386892025-07-30 5:44:35180 days ago1753854275IN
0x9A3Dea44...012d389f9
0 S0.0127232250.0001
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Cross-Chain Transactions
Loading...
Loading

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

Contract Name:
ProxyControlled

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
Yes with 150 runs

Other Settings:
paris EvmVersion, MIT license

Contract Source Code (Solidity Standard Json-Input format)

// SPDX-License-Identifier: MIT
pragma solidity 0.8.23;

import "./UpgradeableProxy.sol";
import "../interfaces/IControllable.sol";
import "../interfaces/IProxyControlled.sol";

/// @title EIP1967 Upgradable proxy implementation.
/// @dev Only Controller has access and should implement time-lock for upgrade action.
/// @author belbix
contract ProxyControlled is UpgradeableProxy, IProxyControlled {

  /// @notice Version of the contract
  /// @dev Should be incremented when contract changed
  string public constant PROXY_CONTROLLED_VERSION = "1.0.0";


  constructor(address _logic) UpgradeableProxy(_logic) {
    //make sure that given logic is controllable
    require(IControllable(_logic).created() >= 0);
  }

  /// @notice Upgrade contract logic
  /// @dev Upgrade allowed only for Controller and should be done only after time-lock period
  /// @param newImplementation_ Implementation address
  function upgrade(address newImplementation_) external override {
    require(IControllable(address(this)).isController(msg.sender), "Proxy: Forbidden");
    IControllable(address(this)).increaseRevision(_implementation());
    _upgradeTo(newImplementation_);
    // the new contract must have the same ABI and you must have the power to change it again
    require(IControllable(address(this)).isController(msg.sender), "Proxy: Wrong implementation");
  }

  /// @notice Return current logic implementation
  function implementation() external override view returns (address) {
    return _implementation();
  }

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

// SPDX-License-Identifier: BUSL-1.1

pragma solidity 0.8.23;

interface IControllable {

  function VERSION() external pure returns (string memory);

  function revision() external view returns (uint);

  function previousImplementation() external view returns (address);

  function isController(address contract_) external view returns (bool);

  function isGovernance(address contract_) external view returns (bool);

  function created() external view returns (uint256);

  function createdBlock() external view returns (uint256);

  function controller() external view returns (address);

  function increaseRevision(address oldLogic) external;

}

// SPDX-License-Identifier: BUSL-1.1

pragma solidity 0.8.23;

interface IProxyControlled {

  function upgrade(address newImplementation_) external;

  function implementation() external view returns (address);

}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/Proxy.sol)

pragma solidity ^0.8.20;

/**
 * @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 internal call site, it will return directly to the external caller.
     */
    function _delegate(address implementation) internal virtual {
        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 overridden 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 internal call site, it will return directly to the external caller.
     */
    function _fallback() internal virtual {
        _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();
    }
}

// SPDX-License-Identifier: MIT
pragma solidity 0.8.23;

import "../openzeppelin/Proxy.sol";

/// @title OpenZeppelin https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v3.4/contracts/proxy/UpgradeableProxy.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}.
abstract 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) payable {
    assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1));
    _setImplementation(_logic);
  }

  /// @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(newImplementation.code.length != 0, "UpgradeableProxy: new implementation is not a contract");

    bytes32 slot = _IMPLEMENTATION_SLOT;

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

Settings
{
  "evmVersion": "paris",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 150
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_logic","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"PROXY_CONTROLLED_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation_","type":"address"}],"name":"upgrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

0x608060405234801561001057600080fd5b5060405161071638038061071683398101604081905261002f9161018c565b8061005b60017f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd6101bc565b6000805160206106f683398151915214610077576100776101e3565b610080816100f6565b506000816001600160a01b031663325a19f16040518163ffffffff1660e01b8152600401602060405180830381865afa1580156100c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100e591906101f9565b10156100f057600080fd5b50610212565b806001600160a01b03163b60000361017a5760405162461bcd60e51b815260206004820152603660248201527f5570677261646561626c6550726f78793a206e657720696d706c656d656e746160448201527f74696f6e206973206e6f74206120636f6e747261637400000000000000000000606482015260840160405180910390fd5b6000805160206106f683398151915255565b60006020828403121561019e57600080fd5b81516001600160a01b03811681146101b557600080fd5b9392505050565b818103818111156101dd57634e487b7160e01b600052601160045260246000fd5b92915050565b634e487b7160e01b600052600160045260246000fd5b60006020828403121561020b57600080fd5b5051919050565b6104d5806102216000396000f3fe6080604052600436106100385760003560e01c80630900f0101461004f5780633bc845301461006f5780635c60da1b146100b657610047565b36610047576100456100e3565b005b6100456100e3565b34801561005b57600080fd5b5061004561006a3660046103de565b610103565b34801561007b57600080fd5b506100a0604051806040016040528060058152602001640312e302e360dc1b81525081565b6040516100ad919061040e565b60405180910390f35b3480156100c257600080fd5b506100cb6102d2565b6040516001600160a01b0390911681526020016100ad565b6101016100fc6000805160206104808339815191525490565b6102ef565b565b60405163b429afeb60e01b8152336004820152309063b429afeb90602401602060405180830381865afa15801561013e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610162919061045d565b6101a65760405162461bcd60e51b815260206004820152601060248201526f283937bc3c9d102337b93134b23232b760811b60448201526064015b60405180910390fd5b30634fac6ccd6101c26000805160206104808339815191525490565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b15801561020357600080fd5b505af1158015610217573d6000803e3d6000fd5b5050505061022481610313565b60405163b429afeb60e01b8152336004820152309063b429afeb90602401602060405180830381865afa15801561025f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610283919061045d565b6102cf5760405162461bcd60e51b815260206004820152601b60248201527f50726f78793a2057726f6e6720696d706c656d656e746174696f6e0000000000604482015260640161019d565b50565b60006102ea6000805160206104808339815191525490565b905090565b3660008037600080366000845af43d6000803e80801561030e573d6000f35b3d6000fd5b61031c81610353565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b806001600160a01b03163b6000036103cc5760405162461bcd60e51b815260206004820152603660248201527f5570677261646561626c6550726f78793a206e657720696d706c656d656e74616044820152751d1a5bdb881a5cc81b9bdd08184818dbdb9d1c9858dd60521b606482015260840161019d565b60008051602061048083398151915255565b6000602082840312156103f057600080fd5b81356001600160a01b038116811461040757600080fd5b9392505050565b60006020808352835180602085015260005b8181101561043c57858101830151858201604001528201610420565b506000604082860101526040601f19601f8301168501019250505092915050565b60006020828403121561046f57600080fd5b8151801515811461040757600080fdfe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca264697066735822122031c23b2c74783e888b7109cb4ed60e81b3642559951ab47c8a1d55a6483cc45a64736f6c63430008170033360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc000000000000000000000000889677e6d07d22a53dac907d204ecbb08e38b529

Deployed Bytecode

0x6080604052600436106100385760003560e01c80630900f0101461004f5780633bc845301461006f5780635c60da1b146100b657610047565b36610047576100456100e3565b005b6100456100e3565b34801561005b57600080fd5b5061004561006a3660046103de565b610103565b34801561007b57600080fd5b506100a0604051806040016040528060058152602001640312e302e360dc1b81525081565b6040516100ad919061040e565b60405180910390f35b3480156100c257600080fd5b506100cb6102d2565b6040516001600160a01b0390911681526020016100ad565b6101016100fc6000805160206104808339815191525490565b6102ef565b565b60405163b429afeb60e01b8152336004820152309063b429afeb90602401602060405180830381865afa15801561013e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610162919061045d565b6101a65760405162461bcd60e51b815260206004820152601060248201526f283937bc3c9d102337b93134b23232b760811b60448201526064015b60405180910390fd5b30634fac6ccd6101c26000805160206104808339815191525490565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401600060405180830381600087803b15801561020357600080fd5b505af1158015610217573d6000803e3d6000fd5b5050505061022481610313565b60405163b429afeb60e01b8152336004820152309063b429afeb90602401602060405180830381865afa15801561025f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610283919061045d565b6102cf5760405162461bcd60e51b815260206004820152601b60248201527f50726f78793a2057726f6e6720696d706c656d656e746174696f6e0000000000604482015260640161019d565b50565b60006102ea6000805160206104808339815191525490565b905090565b3660008037600080366000845af43d6000803e80801561030e573d6000f35b3d6000fd5b61031c81610353565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b806001600160a01b03163b6000036103cc5760405162461bcd60e51b815260206004820152603660248201527f5570677261646561626c6550726f78793a206e657720696d706c656d656e74616044820152751d1a5bdb881a5cc81b9bdd08184818dbdb9d1c9858dd60521b606482015260840161019d565b60008051602061048083398151915255565b6000602082840312156103f057600080fd5b81356001600160a01b038116811461040757600080fd5b9392505050565b60006020808352835180602085015260005b8181101561043c57858101830151858201604001528201610420565b506000604082860101526040601f19601f8301168501019250505092915050565b60006020828403121561046f57600080fd5b8151801515811461040757600080fdfe360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbca264697066735822122031c23b2c74783e888b7109cb4ed60e81b3642559951ab47c8a1d55a6483cc45a64736f6c63430008170033

Block Transaction Gas Used Reward
view all blocks ##produced##

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
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.