ETH Price: $3,490.36 (+0.06%)
Gas: 2 Gwei

Contract

0x979e9d90709A7dF9fe8bc74d9d755b6E843C00a9
 

Overview

ETH Balance

0.0047 ETH

Eth Value

$16.40 (@ $3,490.36/ETH)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer174996832023-06-17 12:59:35399 days ago1687006775IN
0x979e9d90...E843C00a9
0 ETH0.0024967544.43406846
Transfer166360642023-02-15 18:55:47521 days ago1676487347IN
0x979e9d90...E843C00a9
0 ETH0.003114743.69429482
Update User Pric...164623112023-01-22 12:22:11545 days ago1674390131IN
0x979e9d90...E843C00a9
0 ETH0.0011276915.69267511
Transfer164320992023-01-18 7:08:47550 days ago1674025727IN
0x979e9d90...E843C00a9
0 ETH0.0011374915.95725719
Transfer163932312023-01-12 20:53:59555 days ago1673556839IN
0x979e9d90...E843C00a9
0 ETH0.0017405724.42151318
Transfer163920002023-01-12 16:45:59555 days ago1673541959IN
0x979e9d90...E843C00a9
0 ETH0.0013940219.55598664
Transfer163918612023-01-12 16:17:23555 days ago1673540243IN
0x979e9d90...E843C00a9
0 ETH0.0015017321.06688836
Transfer163879722023-01-12 3:15:35556 days ago1673493335IN
0x979e9d90...E843C00a9
0 ETH0.0011729816.45505253
Transfer163870522023-01-12 0:10:47556 days ago1673482247IN
0x979e9d90...E843C00a9
0 ETH0.0025267335.44604726
Transfer163854072023-01-11 18:39:23556 days ago1673462363IN
0x979e9d90...E843C00a9
0 ETH0.0018446525.87761078
Transfer163849022023-01-11 16:55:47556 days ago1673456147IN
0x979e9d90...E843C00a9
0 ETH0.0021095229.59326208
Transfer160769982022-11-29 17:00:23599 days ago1669741223IN
0x979e9d90...E843C00a9
0 ETH0.0009115612.78774397
Transfer149627702022-06-14 16:52:47767 days ago1655225567IN
0x979e9d90...E843C00a9
0 ETH0.0040820457.26449405
Transfer148862682022-06-01 18:12:45780 days ago1654107165IN
0x979e9d90...E843C00a9
0 ETH0.0040947457.44268487
Transfer148430822022-05-25 17:13:13787 days ago1653498793IN
0x979e9d90...E843C00a9
0 ETH0.002345232.89948801
Transfer148370642022-05-24 17:44:00788 days ago1653414240IN
0x979e9d90...E843C00a9
0 ETH0.0024776134.7569977
Transfer147637932022-05-12 22:49:02800 days ago1652395742IN
0x979e9d90...E843C00a9
0 ETH0.00686473112.55514997
Transfer147445822022-05-09 20:56:03803 days ago1652129763IN
0x979e9d90...E843C00a9
0 ETH0.0029538586.17358523
Transfer147246602022-05-06 16:42:08806 days ago1651855328IN
0x979e9d90...E843C00a9
0 ETH0.0039216855.01496476
Transfer146573572022-04-26 1:52:41817 days ago1650937961IN
0x979e9d90...E843C00a9
0 ETH0.0025242735.41151158
Transfer146358022022-04-22 16:39:46820 days ago1650645586IN
0x979e9d90...E843C00a9
0 ETH0.0028567450.85169449
Transfer146190382022-04-20 1:35:04823 days ago1650418504IN
0x979e9d90...E843C00a9
0 ETH0.0027290944.75546526
Transfer142204192022-02-17 0:34:19885 days ago1645058059IN
0x979e9d90...E843C00a9
0 ETH0.0041254373.40375674
Transfer142200852022-02-16 23:22:10885 days ago1645053730IN
0x979e9d90...E843C00a9
0 ETH0.00765363107.36821674
Transfer142151352022-02-16 4:46:34886 days ago1644986794IN
0x979e9d90...E843C00a9
0 ETH0.0043152160.53551891
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
137223602021-12-01 17:29:42962 days ago1638379782  Contract Creation0 ETH
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
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

0x608060405260043610601f5760003560e01c8063d7dfa0dd14606b576025565b36602557005b6040517f0000000000000000000000004a6d2a7a4f9375ebd4ecdbb1972a767dd83b02de9036600082376000803683855af43d806000843e8180156067578184f35b8184fd5b348015607657600080fd5b50609d7f0000000000000000000000004a6d2a7a4f9375ebd4ecdbb1972a767dd83b02de81565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea264697066735822122013174273c18ed4bea127cbc0952900378004a1870c433d85adc8dafba30dae5764736f6c63430008050033

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.