ETH Price: $2,042.51 (+0.92%)

Contract

0x9d9e5A6043D0635f8d454FC8aEfA005a9Df5cFAc
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Vote225548442025-05-24 19:40:35291 days ago1748115635IN
0x9d9e5A60...a9Df5cFAc
0 ETH0.000187721.43224831
Vote223416042025-04-24 21:38:59321 days ago1745530739IN
0x9d9e5A60...a9Df5cFAc
0 ETH0.000091710.69971973
Vote221402572025-03-27 19:11:35349 days ago1743102695IN
0x9d9e5A60...a9Df5cFAc
0 ETH0.000047210.48736972
Vote215205352024-12-31 6:02:11436 days ago1735624931IN
0x9d9e5A60...a9Df5cFAc
0 ETH0.000470973.59295141
Vote213507212024-12-07 12:49:47459 days ago1733575787IN
0x9d9e5A60...a9Df5cFAc
0 ETH0.0015050211.48146977
Unvote213507162024-12-07 12:48:47459 days ago1733575727IN
0x9d9e5A60...a9Df5cFAc
0 ETH0.0008216711.29789033
Unvote211209362024-11-05 10:45:23491 days ago1730803523IN
0x9d9e5A60...a9Df5cFAc
0 ETH0.000520057.15067708
Vote210324552024-10-24 2:25:11504 days ago1729736711IN
0x9d9e5A60...a9Df5cFAc
0 ETH0.000770035.87494212
Vote208796402024-10-02 18:34:59525 days ago1727894099IN
0x9d9e5A60...a9Df5cFAc
0 ETH0.0036684827.98597324
Vote207686452024-09-17 6:49:47541 days ago1726555787IN
0x9d9e5A60...a9Df5cFAc
0 ETH0.000302192.30558721
Unvote206776042024-09-04 13:45:35553 days ago1725457535IN
0x9d9e5A60...a9Df5cFAc
0 ETH0.000551177.57859709
Unvote206775802024-09-04 13:40:47553 days ago1725457247IN
0x9d9e5A60...a9Df5cFAc
0 ETH0.000613438.43468435
Vote Proposal206766582024-09-04 10:35:47553 days ago1725446147IN
0x9d9e5A60...a9Df5cFAc
0 ETH0.000280112.85995177
Vote Proposal206695422024-09-03 10:46:23554 days ago1725360383IN
0x9d9e5A60...a9Df5cFAc
0 ETH0.000201782.06023298
Vote Proposal206695042024-09-03 10:38:47554 days ago1725359927IN
0x9d9e5A60...a9Df5cFAc
0 ETH0.000242252.47343822
Vote Proposal206692012024-09-03 9:37:47554 days ago1725356267IN
0x9d9e5A60...a9Df5cFAc
0 ETH0.000262622.68134933
Unvote206521362024-09-01 0:28:35557 days ago1725150515IN
0x9d9e5A60...a9Df5cFAc
0 ETH0.000082141.12950294
Unvote206521222024-09-01 0:25:47557 days ago1725150347IN
0x9d9e5A60...a9Df5cFAc
0 ETH0.00008231.1316587
Unvote206521202024-09-01 0:25:23557 days ago1725150323IN
0x9d9e5A60...a9Df5cFAc
0 ETH0.000078811.08368639
Unvote206521132024-09-01 0:23:59557 days ago1725150239IN
0x9d9e5A60...a9Df5cFAc
0 ETH0.000082561.13521427
Unvote206520732024-09-01 0:15:59557 days ago1725149759IN
0x9d9e5A60...a9Df5cFAc
0 ETH0.00008031.10418882
Unvote206520582024-09-01 0:12:59557 days ago1725149579IN
0x9d9e5A60...a9Df5cFAc
0 ETH0.00007961.09459544
Unvote206520382024-09-01 0:08:59557 days ago1725149339IN
0x9d9e5A60...a9Df5cFAc
0 ETH0.000080431.10599626
Unvote206520232024-09-01 0:05:59557 days ago1725149159IN
0x9d9e5A60...a9Df5cFAc
0 ETH0.000082151.12963541
Unvote206520142024-09-01 0:04:11557 days ago1725149051IN
0x9d9e5A60...a9Df5cFAc
0 ETH0.000080161.10226703
View all transactions

View more zero value Internal Transactions in Advanced View mode

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

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

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

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

Contract Name:
OrionProxy

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity Standard Json-Input format)

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/proxy/Proxy.sol";

contract OrionProxy is  Proxy
{
    /**
    * @dev Emitted when the implementation is upgraded.
    * @param implementation Address of the new implementation.
    */
    event Upgraded(address indexed implementation);

    /**
    * @dev Emitted when the administration has been transferred.
    * @param previousAdmin Address of the previous admin.
    * @param newAdmin Address of the new admin.
    */
    event AdminChanged(address previousAdmin, address newAdmin);

    constructor()
    {
        assert(IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1));
        assert(ADMIN_SLOT == bytes32(uint256(keccak256('eip1967.proxy.admin')) - 1));

        _setAdmin(msg.sender);
    }

    /**
    * @dev Upgrade the backing implementation of the proxy.
    * Only the admin can call this function.
    * @param newImplementation Address of the new implementation.
    */
    function upgradeTo(address newImplementation) external
    {
        require(msg.sender == _admin(),"Need only owner access");

        _setImplementation(newImplementation);
    }

    /**
    * @dev Changes the admin of the proxy.
    * Only the current admin can call this function.
    * @param newAdmin Address to transfer proxy administration to.
    */
    function changeAdmin(address newAdmin) external 
    {
        require(msg.sender == _admin(),"Need only owner access");
        require(newAdmin != address(0), "Cannot change the admin of a proxy to the zero address");

        _setAdmin(newAdmin);
    }

    //ERC1967
    /**
    * @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 internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;

    /**
     * @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)
        }
    }
    /**
    * @return adm The admin slot.
    */
    function _admin() internal view returns (address adm) {
        bytes32 slot = ADMIN_SLOT;
        assembly {
        adm := sload(slot)
        }
    }


    /**
     * @dev Stores a new address in the EIP1967 implementation slot.
     */
    function _setImplementation(address newImplementation) private {

        emit Upgraded(newImplementation);

        bytes32 slot = IMPLEMENTATION_SLOT;

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

    }
    /**
    * @dev Sets the address of the proxy admin.
    * @param newAdmin Address of the new proxy admin.
    */
    function _setAdmin(address newAdmin) internal {

        emit AdminChanged(_admin(), newAdmin);

        bytes32 slot = ADMIN_SLOT;

        assembly {
        sstore(slot, newAdmin)
        }

    }

    function implementation() external view returns (address)
    {
        return _implementation();
    }

    function admin() external view returns (address)
    {
        return _admin();
    }

}

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

pragma solidity ^0.8.0;

/**
 * @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 {
        _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 overridden should call `super._beforeFallback()`.
     */
    function _beforeFallback() internal virtual {}
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","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":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"changeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

0x608060405234801561001057600080fd5b5061003c60017f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd61012a565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc1461006a5761006a61014f565b61009560017fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610461012a565b60008051602061059b833981519152146100b1576100b161014f565b6100ba336100bf565b610165565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6100f660008051602061059b8339815191525490565b604080516001600160a01b03928316815291841660208301520160405180910390a160008051602061059b83398151915255565b60008282101561014a57634e487b7160e01b600052601160045260246000fd5b500390565b634e487b7160e01b600052600160045260246000fd5b610427806101746000396000f3fe6080604052600436106100435760003560e01c80633659cfe61461005a5780635c60da1b1461007a5780638f283970146100ab578063f851a440146100cb57610052565b36610052576100506100e0565b005b6100506100e0565b34801561006657600080fd5b506100506100753660046103a1565b610112565b34801561008657600080fd5b5061008f61018c565b6040516001600160a01b03909116815260200160405180910390f35b3480156100b757600080fd5b506100506100c63660046103a1565b6101bb565b3480156100d757600080fd5b5061008f6102a2565b61011061010b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6102ba565b565b6000805160206103d2833981519152546001600160a01b0316336001600160a01b0316146101805760405162461bcd60e51b81526020600482015260166024820152754e656564206f6e6c79206f776e65722061636365737360501b60448201526064015b60405180910390fd5b610189816102de565b50565b60006101b67f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b905090565b6000805160206103d2833981519152546001600160a01b0316336001600160a01b0316146102245760405162461bcd60e51b81526020600482015260166024820152754e656564206f6e6c79206f776e65722061636365737360501b6044820152606401610177565b6001600160a01b0381166102995760405162461bcd60e51b815260206004820152603660248201527f43616e6e6f74206368616e6765207468652061646d696e206f6620612070726f604482015275787920746f20746865207a65726f206164647265737360501b6064820152608401610177565b61018981610336565b60006101b66000805160206103d28339815191525490565b3660008037600080366000845af43d6000803e8080156102d9573d6000f35b3d6000fd5b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a27f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61036d6000805160206103d28339815191525490565b604080516001600160a01b03928316815291841660208301520160405180910390a16000805160206103d283398151915255565b6000602082840312156103b357600080fd5b81356001600160a01b03811681146103ca57600080fd5b939250505056feb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103a2646970667358221220ac3f8714733d0e6d97eaae96b97589e890d7171ddd53d51df810df44aa37580664736f6c634300080d0033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103

Deployed Bytecode

0x6080604052600436106100435760003560e01c80633659cfe61461005a5780635c60da1b1461007a5780638f283970146100ab578063f851a440146100cb57610052565b36610052576100506100e0565b005b6100506100e0565b34801561006657600080fd5b506100506100753660046103a1565b610112565b34801561008657600080fd5b5061008f61018c565b6040516001600160a01b03909116815260200160405180910390f35b3480156100b757600080fd5b506100506100c63660046103a1565b6101bb565b3480156100d757600080fd5b5061008f6102a2565b61011061010b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6102ba565b565b6000805160206103d2833981519152546001600160a01b0316336001600160a01b0316146101805760405162461bcd60e51b81526020600482015260166024820152754e656564206f6e6c79206f776e65722061636365737360501b60448201526064015b60405180910390fd5b610189816102de565b50565b60006101b67f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b905090565b6000805160206103d2833981519152546001600160a01b0316336001600160a01b0316146102245760405162461bcd60e51b81526020600482015260166024820152754e656564206f6e6c79206f776e65722061636365737360501b6044820152606401610177565b6001600160a01b0381166102995760405162461bcd60e51b815260206004820152603660248201527f43616e6e6f74206368616e6765207468652061646d696e206f6620612070726f604482015275787920746f20746865207a65726f206164647265737360501b6064820152608401610177565b61018981610336565b60006101b66000805160206103d28339815191525490565b3660008037600080366000845af43d6000803e8080156102d9573d6000f35b3d6000fd5b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a27f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61036d6000805160206103d28339815191525490565b604080516001600160a01b03928316815291841660208301520160405180910390a16000805160206103d283398151915255565b6000602082840312156103b357600080fd5b81356001600160a01b03811681146103ca57600080fd5b939250505056feb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103a2646970667358221220ac3f8714733d0e6d97eaae96b97589e890d7171ddd53d51df810df44aa37580664736f6c634300080d0033

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

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