ETH Price: $2,901.88 (-10.46%)
Gas: 51 Gwei

Contract

0x4CD0c43B0D53bc318cc5342b77EB6f124E47f526
 
Transaction Hash
Method
Block
From
To
Value
0x225a61b3f07cff59dbc98659663ec0aa9511f543a1da9ebce727fe241aa64abe Transfer(pending)2024-06-30 14:37:264 days ago1719758246IN
Free Ross DAO: FREE Token
0 ETH(Pending)(Pending)
Transfer202366562024-07-05 0:15:112 hrs ago1720138511IN
Free Ross DAO: FREE Token
0 ETH0.0009660422
Approve202345222024-07-04 17:04:479 hrs ago1720112687IN
Free Ross DAO: FREE Token
0 ETH0.0005552211.30981534
Approve202315952024-07-04 7:15:4719 hrs ago1720077347IN
Free Ross DAO: FREE Token
0 ETH0.000234034.767198
Transfer202297062024-07-04 0:56:1126 hrs ago1720054571IN
Free Ross DAO: FREE Token
0 ETH0.0006102310
Approve202261932024-07-03 13:10:5937 hrs ago1720012259IN
Free Ross DAO: FREE Token
0 ETH0.001299926.30540551
Approve202236922024-07-03 4:47:3546 hrs ago1719982055IN
Free Ross DAO: FREE Token
0 ETH0.00018253.69314121
Transfer202232182024-07-03 3:12:1147 hrs ago1719976331IN
Free Ross DAO: FREE Token
0 ETH0.0006169910.11288181
Transfer202231822024-07-03 3:04:5947 hrs ago1719975899IN
Free Ross DAO: FREE Token
0 ETH0.0003913510
Approve202228682024-07-03 2:01:592 days ago1719972119IN
Free Ross DAO: FREE Token
0 ETH0.000238964.86414767
Approve202227962024-07-03 1:46:592 days ago1719971219IN
Free Ross DAO: FREE Token
0 ETH0.000086063.17213257
Approve202213462024-07-02 20:55:112 days ago1719953711IN
Free Ross DAO: FREE Token
0 ETH0.000376467.62753573
Approve202192752024-07-02 13:57:232 days ago1719928643IN
Free Ross DAO: FREE Token
0 ETH0.00037027.53551319
Approve202192062024-07-02 13:43:352 days ago1719927815IN
Free Ross DAO: FREE Token
0 ETH0.000341066.91030246
Approve202174342024-07-02 7:47:352 days ago1719906455IN
Free Ross DAO: FREE Token
0 ETH0.000180933.6642357
Approve202172912024-07-02 7:18:352 days ago1719904715IN
Free Ross DAO: FREE Token
0 ETH0.000168773.41534091
Approve202170992024-07-02 6:39:472 days ago1719902387IN
Free Ross DAO: FREE Token
0 ETH0.000157573.21134306
Approve202158822024-07-02 2:34:233 days ago1719887663IN
Free Ross DAO: FREE Token
0 ETH0.00010882.2173556
Approve202102872024-07-01 7:50:233 days ago1719820223IN
Free Ross DAO: FREE Token
0 ETH0.000258375.25921934
Approve202102532024-07-01 7:43:353 days ago1719819815IN
Free Ross DAO: FREE Token
0 ETH0.000281235.72458277
Approve202066822024-06-30 19:46:234 days ago1719776783IN
Free Ross DAO: FREE Token
0 ETH0.000156193.16475345
Approve202052342024-06-30 14:55:354 days ago1719759335IN
Free Ross DAO: FREE Token
0 ETH0.000199524.06439885
Approve202025792024-06-30 6:01:594 days ago1719727319IN
Free Ross DAO: FREE Token
0 ETH0.000134292.7176798
Approve202014572024-06-30 2:15:595 days ago1719713759IN
Free Ross DAO: FREE Token
0 ETH0.000081171.6446599
Approve201993232024-06-29 19:06:595 days ago1719688019IN
Free Ross DAO: FREE Token
0 ETH0.000160383.24567587
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To Value
138129192021-12-16 0:12:06932 days ago1639613526  Contract Creation0 ETH
Loading...
Loading

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

Contract Name:
InitializedProxy

Compiler Version
v0.8.5+commit.a4f2e591

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion
File 1 of 1 : InitializedProxy.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @title InitializedProxy
 * @author Anna Carroll
 */
contract InitializedProxy {
    // address of logic contract
    address public immutable logic;

    // ======== Constructor =========

    constructor(
        address _logic,
        bytes memory _initializationCalldata
    ) {
        logic = _logic;
        // Delegatecall into the logic contract, supplying initialization calldata
        (bool _ok, bytes memory returnData) =
            _logic.delegatecall(_initializationCalldata);
        // Revert if delegatecall to implementation reverts
        require(_ok, string(returnData));
    }

    // ======== Fallback =========

    fallback() external payable {
        address _impl = logic;
        assembly {
            let ptr := mload(0x40)
            calldatacopy(ptr, 0, calldatasize())
            let result := delegatecall(gas(), _impl, ptr, calldatasize(), 0, 0)
            let size := returndatasize()
            returndatacopy(ptr, 0, size)

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

    // ======== Receive =========

    receive() external payable {} // solhint-disable-line no-empty-blocks
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"bytes","name":"_initializationCalldata","type":"bytes"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"logic","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

Deployed Bytecode

0x608060405260043610601f5760003560e01c8063d7dfa0dd14606b576025565b36602557005b6040517f0000000000000000000000007b0fce54574d9746414d11367f54c9ab94e53dca9036600082376000803683855af43d806000843e8180156067578184f35b8184fd5b348015607657600080fd5b50609d7f0000000000000000000000007b0fce54574d9746414d11367f54c9ab94e53dca81565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea264697066735822122013174273c18ed4bea127cbc0952900378004a1870c433d85adc8dafba30dae5764736f6c63430008050033

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  ]
[ 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.