ETH Price: $2,159.18 (-3.53%)

Contract

0x0308Bfd8b9a03d65E00a974Daa03014aAC1acBb7
 

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Update User Pric...178560372023-08-06 12:52:11955 days ago1691326331IN
0x0308Bfd8...aAC1acBb7
0 ETH0.0006108611.74392737
Update User Pric...167023352023-02-25 2:27:591118 days ago1677292079IN
0x0308Bfd8...aAC1acBb7
0 ETH0.0011659322.410163
Update User Pric...160076812022-11-20 0:35:471215 days ago1668904547IN
0x0308Bfd8...aAC1acBb7
0 ETH0.0005497710.56715482
Update User Pric...155129942022-09-11 5:07:471285 days ago1662872867IN
0x0308Bfd8...aAC1acBb7
0 ETH0.000508687.07992237
Update User Pric...154738312022-09-04 20:52:231291 days ago1662324743IN
0x0308Bfd8...aAC1acBb7
0 ETH0.000237913.31127591
Update User Pric...154734312022-09-04 19:21:211291 days ago1662319281IN
0x0308Bfd8...aAC1acBb7
0 ETH0.000259053.60560529
Update User Pric...154732012022-09-04 18:27:441291 days ago1662316064IN
0x0308Bfd8...aAC1acBb7
0 ETH0.000298484.15428549
Update User Pric...154709102022-09-04 9:43:071292 days ago1662284587IN
0x0308Bfd8...aAC1acBb7
0 ETH0.000220223.06504395
Update User Pric...154707422022-09-04 9:03:441292 days ago1662282224IN
0x0308Bfd8...aAC1acBb7
0 ETH0.000279823.89466846
Update User Pric...154705202022-09-04 8:09:201292 days ago1662278960IN
0x0308Bfd8...aAC1acBb7
0 ETH0.000284813.96414396
Update User Pric...154705172022-09-04 8:08:471292 days ago1662278927IN
0x0308Bfd8...aAC1acBb7
0 ETH0.000329084.5801994
Update User Pric...154695642022-09-04 4:26:451292 days ago1662265605IN
0x0308Bfd8...aAC1acBb7
0 ETH0.000247163.44
Update User Pric...154694702022-09-04 4:02:241292 days ago1662264144IN
0x0308Bfd8...aAC1acBb7
0 ETH0.000248793.46277117
Update User Pric...154694652022-09-04 4:01:461292 days ago1662264106IN
0x0308Bfd8...aAC1acBb7
0 ETH0.000303074.21828835
Update User Pric...154693682022-09-04 3:40:471292 days ago1662262847IN
0x0308Bfd8...aAC1acBb7
0 ETH0.000167573.22084663
Update User Pric...154693682022-09-04 3:40:471292 days ago1662262847IN
0x0308Bfd8...aAC1acBb7
0 ETH0.000242373.37346
Update User Pric...154693682022-09-04 3:40:471292 days ago1662262847IN
0x0308Bfd8...aAC1acBb7
0 ETH0.0002473.43784775
Update User Pric...154693442022-09-04 3:35:281292 days ago1662262528IN
0x0308Bfd8...aAC1acBb7
0 ETH0.000252583.51548674
Update User Pric...154693442022-09-04 3:35:281292 days ago1662262528IN
0x0308Bfd8...aAC1acBb7
0 ETH0.000267973.72973845
Update User Pric...154689142022-09-04 1:59:431292 days ago1662256783IN
0x0308Bfd8...aAC1acBb7
0 ETH0.000230443.20740062
Update User Pric...154689112022-09-04 1:59:121292 days ago1662256752IN
0x0308Bfd8...aAC1acBb7
0 ETH0.000237743.30888474
Update User Pric...154689112022-09-04 1:59:121292 days ago1662256752IN
0x0308Bfd8...aAC1acBb7
0 ETH0.000237913.31138347
Update User Pric...154689082022-09-04 1:58:361292 days ago1662256716IN
0x0308Bfd8...aAC1acBb7
0 ETH0.000285273.97053652
Update User Pric...154689042022-09-04 1:57:441292 days ago1662256664IN
0x0308Bfd8...aAC1acBb7
0 ETH0.000258833.60255018
Update User Pric...154688902022-09-04 1:54:211292 days ago1662256461IN
0x0308Bfd8...aAC1acBb7
0 ETH0.000252343.51209525
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
0x60a06040154649432022-09-03 10:50:121293 days ago1662202212  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 0xB9b100DC...753e9F734
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

Contract Source Code (Solidity Standard Json-Input format)

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

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

0x60a060405234801561001057600080fd5b5060405161035738038061035783398101604081905261002f916100d7565b6001600160601b0319606083901b1660805260405160009081906001600160a01b0385169061005f9085906101a5565b600060405180830381855af49150503d806000811461009a576040519150601f19603f3d011682016040523d82523d6000602084013e61009f565b606091505b50915091508181906100cd5760405162461bcd60e51b81526004016100c491906101c1565b60405180910390fd5b505050505061023a565b600080604083850312156100ea57600080fd5b82516001600160a01b038116811461010157600080fd5b60208401519092506001600160401b038082111561011e57600080fd5b818501915085601f83011261013257600080fd5b81518181111561014457610144610224565b604051601f8201601f19908116603f0116810190838211818310171561016c5761016c610224565b8160405282815288602084870101111561018557600080fd5b6101968360208301602088016101f4565b80955050505050509250929050565b600082516101b78184602087016101f4565b9190910192915050565b60208152600082518060208401526101e08160408501602087016101f4565b601f01601f19169190910160400192915050565b60005b8381101561020f5781810151838201526020016101f7565b8381111561021e576000848401525b50505050565b634e487b7160e01b600052604160045260246000fd5b60805160601c60fc61025b60003960008181602a0152607b015260fc6000f3fe608060405260043610601f5760003560e01c8063d7dfa0dd14606b576025565b36602557005b6040517f00000000000000000000000000000000000000000000000000000000000000009036600082376000803683855af43d806000843e8180156067578184f35b8184fd5b348015607657600080fd5b50609d7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea264697066735822122013174273c18ed4bea127cbc0952900378004a1870c433d85adc8dafba30dae5764736f6c634300080500330000000000000000000000004a6d2a7a4f9375ebd4ecdbb1972a767dd83b02de00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000184626fb2f00000000000000000000000004c36ee3dac19f45eb15908bc5961415e30135a64000000000000000000000000892848074ddea461a15f337250da3ce55580ca8500000000000000000000000000000000000000000000000000000000000026aa00000000000000000000000000000000000000000000004189e3be1106416e300000000000000000000000000000000000000000000000001feb3dd0676600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000010437962657242726f6b6572732044616f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003434244000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405260043610601f5760003560e01c8063d7dfa0dd14606b576025565b36602557005b6040517f0000000000000000000000004a6d2a7a4f9375ebd4ecdbb1972a767dd83b02de9036600082376000803683855af43d806000843e8180156067578184f35b8184fd5b348015607657600080fd5b50609d7f0000000000000000000000004a6d2a7a4f9375ebd4ecdbb1972a767dd83b02de81565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea264697066735822122013174273c18ed4bea127cbc0952900378004a1870c433d85adc8dafba30dae5764736f6c63430008050033

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.