ETH Price: $2,063.23 (-2.35%)

Contract

0xDFdAbb3D89db0843B4f36265a4E8744D90c7f5bf
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim156243252022-09-27 11:14:591272 days ago1664277299IN
0xDFdAbb3D...D90c7f5bf
0 ETH0.0011318710.46323066
Claim156243202022-09-27 11:13:591272 days ago1664277239IN
0xDFdAbb3D...D90c7f5bf
0 ETH0.0013003510.60928829
Claim156243152022-09-27 11:12:591272 days ago1664277179IN
0xDFdAbb3D...D90c7f5bf
0 ETH0.001210329.87474749
Claim156243092022-09-27 11:11:471272 days ago1664277107IN
0xDFdAbb3D...D90c7f5bf
0 ETH0.0013305710.85577215
Claim156243012022-09-27 11:10:111272 days ago1664277011IN
0xDFdAbb3D...D90c7f5bf
0 ETH0.00121299.89580809
Claim156242952022-09-27 11:08:591272 days ago1664276939IN
0xDFdAbb3D...D90c7f5bf
0 ETH0.0013452810.97583136
Claim156242892022-09-27 11:07:471272 days ago1664276867IN
0xDFdAbb3D...D90c7f5bf
0 ETH0.0014728312.01650868
Claim156242852022-09-27 11:06:591272 days ago1664276819IN
0xDFdAbb3D...D90c7f5bf
0 ETH0.0012293410.02993956
Claim156242802022-09-27 11:05:591272 days ago1664276759IN
0xDFdAbb3D...D90c7f5bf
0 ETH0.0012344910.0719495
Claim156242752022-09-27 11:04:591272 days ago1664276699IN
0xDFdAbb3D...D90c7f5bf
0 ETH0.001133569.24844505
Claim156005202022-09-24 3:26:351276 days ago1663989995IN
0xDFdAbb3D...D90c7f5bf
0 ETH0.000679915.54723022
Finalize156005122022-09-24 3:24:591276 days ago1663989899IN
0xDFdAbb3D...D90c7f5bf
0 ETH0.005462695.87427106
Bid154780172022-09-05 12:58:541294 days ago1662382734IN
0xDFdAbb3D...D90c7f5bf
0 ETH0.002266719.97455504
Contribute154264572022-08-28 7:18:501302 days ago1661671130IN
0xDFdAbb3D...D90c7f5bf
0.021735 ETH0.000556084.38289193
Contribute154262232022-08-28 6:27:251302 days ago1661668045IN
0xDFdAbb3D...D90c7f5bf
0.018 ETH0.000656445.17383644
Contribute154259802022-08-28 5:27:401303 days ago1661664460IN
0xDFdAbb3D...D90c7f5bf
0.015 ETH0.000645435.0871062
Contribute154254162022-08-28 3:07:131303 days ago1661656033IN
0xDFdAbb3D...D90c7f5bf
0.0101 ETH0.000558564.40241349
Contribute154214522022-08-27 11:59:281303 days ago1661601568IN
0xDFdAbb3D...D90c7f5bf
0.012 ETH0.00079856.29351531
Contribute154205912022-08-27 8:46:181303 days ago1661589978IN
0xDFdAbb3D...D90c7f5bf
0.01011 ETH0.000957297.54503371
Contribute154202402022-08-27 7:22:001303 days ago1661584920IN
0xDFdAbb3D...D90c7f5bf
0.01002 ETH0.000565964.46072273
Contribute154199022022-08-27 6:00:211303 days ago1661580021IN
0xDFdAbb3D...D90c7f5bf
0.011 ETH0.000831646.55473504
Contribute154192902022-08-27 3:41:131304 days ago1661571673IN
0xDFdAbb3D...D90c7f5bf
0.01001 ETH0.001034138.1506965
Contribute154188432022-08-27 1:51:031304 days ago1661565063IN
0xDFdAbb3D...D90c7f5bf
0.0101 ETH0.001218999.60770793
Contribute154134912022-08-26 5:20:401305 days ago1661491240IN
0xDFdAbb3D...D90c7f5bf
0.0103 ETH0.000693965.59305002

Latest 3 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer156005122022-09-24 3:24:591276 days ago1663989899
0xDFdAbb3D...D90c7f5bf
0.003375 ETH
Create Bid154780172022-09-05 12:58:541294 days ago1662382734
0xDFdAbb3D...D90c7f5bf
0.135 ETH
0x60a06040154134872022-08-26 5:19:181305 days ago1661491158  Contract Creation0 ETH
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 0xA1acc8A7...182031Eb7
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 999999 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 1 : InitializedProxy.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.5;

/**
 * @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": 999999
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

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

0x60a060405234801561001057600080fd5b5060405161035738038061035783398101604081905261002f916100d7565b6001600160601b0319606083901b1660805260405160009081906001600160a01b0385169061005f9085906101a5565b600060405180830381855af49150503d806000811461009a576040519150601f19603f3d011682016040523d82523d6000602084013e61009f565b606091505b50915091508181906100cd5760405162461bcd60e51b81526004016100c491906101c1565b60405180910390fd5b505050505061023a565b600080604083850312156100ea57600080fd5b82516001600160a01b038116811461010157600080fd5b60208401519092506001600160401b038082111561011e57600080fd5b818501915085601f83011261013257600080fd5b81518181111561014457610144610224565b604051601f8201601f19908116603f0116810190838211818310171561016c5761016c610224565b8160405282815288602084870101111561018557600080fd5b6101968360208301602088016101f4565b80955050505050509250929050565b600082516101b78184602087016101f4565b9190910192915050565b60208152600082518060208401526101e08160408501602087016101f4565b601f01601f19169190910160400192915050565b60005b8381101561020f5781810151838201526020016101f7565b8381111561021e576000848401525b50505050565b634e487b7160e01b600052604160045260246000fd5b60805160601c60fc61025b60003960008181602a0152607b015260fc6000f3fe608060405260043610601f5760003560e01c8063d7dfa0dd14606b576025565b36602557005b6040517f00000000000000000000000000000000000000000000000000000000000000009036600082376000803683855af43d806000843e8180156067578184f35b8184fd5b348015607657600080fd5b50609d7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea2646970667358221220a3350e7abb318cfd6c2f0227ef2ec856c01e215d98d5d2e5e2202e41a3c4deaf64736f6c63430008050033000000000000000000000000744c2be04d079eddb21c1a9bb13bb5259a368614000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000001c41d4667fa00000000000000000000000011c07ce1315a3b92c9755f90cdf40b04b88c5731000000000000000000000000abefbc9fd2f806065b4f3c237d4b59d9a97bcac700000000000000000000000000000000000000000000000000000000000078970000000000000000000000000000000000000000000000000000000000001a8c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000d5461626c652d73657474696e6700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d5441424c452d53455454494e470000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405260043610601f5760003560e01c8063d7dfa0dd14606b576025565b36602557005b6040517f000000000000000000000000744c2be04d079eddb21c1a9bb13bb5259a3686149036600082376000803683855af43d806000843e8180156067578184f35b8184fd5b348015607657600080fd5b50609d7f000000000000000000000000744c2be04d079eddb21c1a9bb13bb5259a36861481565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea2646970667358221220a3350e7abb318cfd6c2f0227ef2ec856c01e215d98d5d2e5e2202e41a3c4deaf64736f6c63430008050033

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