ETH Price: $3,342.19 (+0.52%)

Contract

0x3e902c462103D45C073826bD9d134799fb427669
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim Reward214908802024-12-27 2:41:3515 hrs ago1735267295IN
0x3e902c46...9fb427669
0 ETH0.000470664.55744333
Increase_unlock_...214908742024-12-27 2:40:2315 hrs ago1735267223IN
0x3e902c46...9fb427669
0 ETH0.00039523.62978537
Increase_unlock_...214908402024-12-27 2:33:2315 hrs ago1735266803IN
0x3e902c46...9fb427669
0 ETH0.000377273.46459882
Claim Reward214894042024-12-26 21:44:2320 hrs ago1735249463IN
0x3e902c46...9fb427669
0 ETH0.000625046.05232589
Increase_unlock_...214755932024-12-24 23:25:232 days ago1735082723IN
0x3e902c46...9fb427669
0 ETH0.00043594
Claim Reward214566882024-12-22 7:56:595 days ago1734854219IN
0x3e902c46...9fb427669
0 ETH0.00041624.82987331
Withdraw214535702024-12-21 21:29:355 days ago1734816575IN
0x3e902c46...9fb427669
0 ETH0.001131878.47952721
Claim Reward214535652024-12-21 21:28:355 days ago1734816515IN
0x3e902c46...9fb427669
0 ETH0.001039698.63728769
Claim Reward214502112024-12-21 10:13:236 days ago1734776003IN
0x3e902c46...9fb427669
0 ETH0.000583616.77263169
Claim Reward214307662024-12-18 17:00:239 days ago1734541223IN
0x3e902c46...9fb427669
0 ETH0.0021503824.95428182
Claim Reward214205322024-12-17 6:42:1110 days ago1734417731IN
0x3e902c46...9fb427669
0 ETH0.001060110.26508572
Claim Reward214196472024-12-17 3:44:4710 days ago1734407087IN
0x3e902c46...9fb427669
0 ETH0.0010923610.57748739
Increase_amount214081042024-12-15 13:05:2312 days ago1734267923IN
0x3e902c46...9fb427669
0 ETH0.001078188.30367561
Claim Reward213830622024-12-12 1:12:1115 days ago1733965931IN
0x3e902c46...9fb427669
0 ETH0.0010797812.53041683
Claim Reward213830392024-12-12 1:07:3515 days ago1733965655IN
0x3e902c46...9fb427669
0 ETH0.0015412314.92391074
Withdraw213759332024-12-11 1:17:3516 days ago1733879855IN
0x3e902c46...9fb427669
0 ETH0.001742513.05412628
Claim Reward213759262024-12-11 1:16:1116 days ago1733879771IN
0x3e902c46...9fb427669
0 ETH0.0016641713.82514849
Increase_unlock_...213750432024-12-10 22:19:2316 days ago1733869163IN
0x3e902c46...9fb427669
0 ETH0.0017495316.07243285
Claim Reward213640682024-12-09 9:32:1118 days ago1733736731IN
0x3e902c46...9fb427669
0 ETH0.0011888913.79656227
Increase_unlock_...213593072024-12-08 17:36:3519 days ago1733679395IN
0x3e902c46...9fb427669
0 ETH0.0014152413
Claim Reward213566592024-12-08 8:44:5919 days ago1733647499IN
0x3e902c46...9fb427669
0 ETH0.00076858.91818922
Claim Reward213543922024-12-08 1:08:5919 days ago1733620139IN
0x3e902c46...9fb427669
0 ETH0.000980359.4928322
Claim Reward213506712024-12-07 12:39:4720 days ago1733575187IN
0x3e902c46...9fb427669
0 ETH0.0012766912.36234956
Withdraw213346812024-12-05 7:03:5922 days ago1733382239IN
0x3e902c46...9fb427669
0 ETH0.0024200218.12980321
Claim Reward213346672024-12-05 7:01:1122 days ago1733382071IN
0x3e902c46...9fb427669
0 ETH0.0021009717.45386178
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:
OrionProxy

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 2 : OrionProxy.sol
// 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();
    }

}

File 2 of 2 : Proxy.sol
// 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

[{"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"}]

608060405234801561001057600080fd5b5061003c60017f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd61012a565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc1461006a5761006a61014f565b61009560017fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610461012a565b60008051602061059b833981519152146100b1576100b161014f565b6100ba336100bf565b610165565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6100f660008051602061059b8339815191525490565b604080516001600160a01b03928316815291841660208301520160405180910390a160008051602061059b83398151915255565b60008282101561014a57634e487b7160e01b600052601160045260246000fd5b500390565b634e487b7160e01b600052600160045260246000fd5b610427806101746000396000f3fe6080604052600436106100435760003560e01c80633659cfe61461005a5780635c60da1b1461007a5780638f283970146100ab578063f851a440146100cb57610052565b36610052576100506100e0565b005b6100506100e0565b34801561006657600080fd5b506100506100753660046103a1565b610112565b34801561008657600080fd5b5061008f61018c565b6040516001600160a01b03909116815260200160405180910390f35b3480156100b757600080fd5b506100506100c63660046103a1565b6101bb565b3480156100d757600080fd5b5061008f6102a2565b61011061010b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6102ba565b565b6000805160206103d2833981519152546001600160a01b0316336001600160a01b0316146101805760405162461bcd60e51b81526020600482015260166024820152754e656564206f6e6c79206f776e65722061636365737360501b60448201526064015b60405180910390fd5b610189816102de565b50565b60006101b67f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b905090565b6000805160206103d2833981519152546001600160a01b0316336001600160a01b0316146102245760405162461bcd60e51b81526020600482015260166024820152754e656564206f6e6c79206f776e65722061636365737360501b6044820152606401610177565b6001600160a01b0381166102995760405162461bcd60e51b815260206004820152603660248201527f43616e6e6f74206368616e6765207468652061646d696e206f6620612070726f604482015275787920746f20746865207a65726f206164647265737360501b6064820152608401610177565b61018981610336565b60006101b66000805160206103d28339815191525490565b3660008037600080366000845af43d6000803e8080156102d9573d6000f35b3d6000fd5b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a27f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61036d6000805160206103d28339815191525490565b604080516001600160a01b03928316815291841660208301520160405180910390a16000805160206103d283398151915255565b6000602082840312156103b357600080fd5b81356001600160a01b03811681146103ca57600080fd5b939250505056feb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103a2646970667358221220ac3f8714733d0e6d97eaae96b97589e890d7171ddd53d51df810df44aa37580664736f6c634300080d0033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103

Deployed Bytecode

0x6080604052600436106100435760003560e01c80633659cfe61461005a5780635c60da1b1461007a5780638f283970146100ab578063f851a440146100cb57610052565b36610052576100506100e0565b005b6100506100e0565b34801561006657600080fd5b506100506100753660046103a1565b610112565b34801561008657600080fd5b5061008f61018c565b6040516001600160a01b03909116815260200160405180910390f35b3480156100b757600080fd5b506100506100c63660046103a1565b6101bb565b3480156100d757600080fd5b5061008f6102a2565b61011061010b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b6102ba565b565b6000805160206103d2833981519152546001600160a01b0316336001600160a01b0316146101805760405162461bcd60e51b81526020600482015260166024820152754e656564206f6e6c79206f776e65722061636365737360501b60448201526064015b60405180910390fd5b610189816102de565b50565b60006101b67f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b905090565b6000805160206103d2833981519152546001600160a01b0316336001600160a01b0316146102245760405162461bcd60e51b81526020600482015260166024820152754e656564206f6e6c79206f776e65722061636365737360501b6044820152606401610177565b6001600160a01b0381166102995760405162461bcd60e51b815260206004820152603660248201527f43616e6e6f74206368616e6765207468652061646d696e206f6620612070726f604482015275787920746f20746865207a65726f206164647265737360501b6064820152608401610177565b61018981610336565b60006101b66000805160206103d28339815191525490565b3660008037600080366000845af43d6000803e8080156102d9573d6000f35b3d6000fd5b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a27f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc55565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61036d6000805160206103d28339815191525490565b604080516001600160a01b03928316815291841660208301520160405180910390a16000805160206103d283398151915255565b6000602082840312156103b357600080fd5b81356001600160a01b03811681146103ca57600080fd5b939250505056feb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103a2646970667358221220ac3f8714733d0e6d97eaae96b97589e890d7171ddd53d51df810df44aa37580664736f6c634300080d0033

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.