ETH Price: $2,122.64 (-2.45%)

Contract

0xb7744Ce158A09183F01296bCB262bB9F65E2FFd7
 

Overview

ETH Balance

0.027070089514821199 ETH

Eth Value

$57.46 (@ $2,122.64/ETH)

More Info

Private Name Tags

Multichain Info

Transaction Hash
Method
Block
From
To
Transfer211880742024-11-14 19:39:11496 days ago1731613151IN
0xb7744Ce1...F65E2FFd7
0.05 ETH0.0008691131.69278573
Transfer211808002024-11-13 19:16:23497 days ago1731525383IN
0xb7744Ce1...F65E2FFd7
0.05 ETH0.0026334796.03162619
Transfer211740722024-11-12 20:44:35498 days ago1731444275IN
0xb7744Ce1...F65E2FFd7
0.015 ETH0.0008475330.90608994
Transfer211710202024-11-12 10:31:23498 days ago1731407483IN
0xb7744Ce1...F65E2FFd7
0.015 ETH0.0010163237.06103623
Transfer211703562024-11-12 8:17:59498 days ago1731399479IN
0xb7744Ce1...F65E2FFd7
0.015 ETH0.0006340323.12057784
Transfer211437362024-11-08 15:11:59502 days ago1731078719IN
0xb7744Ce1...F65E2FFd7
0.03 ETH0.0005059724.09414603

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer214665032024-12-23 16:53:47457 days ago1734972827
0xb7744Ce1...F65E2FFd7
1 wei
Transfer214665032024-12-23 16:53:47457 days ago1734972827
0xb7744Ce1...F65E2FFd7
0.00083472 ETH
Transfer211897592024-11-15 1:17:59496 days ago1731633479
0xb7744Ce1...F65E2FFd7
0.000001 ETH
Transfer211897592024-11-15 1:17:59496 days ago1731633479
0xb7744Ce1...F65E2FFd7
0.00236969 ETH
Transfer211897392024-11-15 1:13:59496 days ago1731633239
0xb7744Ce1...F65E2FFd7
0.000001 ETH
Transfer211897392024-11-15 1:13:59496 days ago1731633239
0xb7744Ce1...F65E2FFd7
0.00185344 ETH
Transfer211897222024-11-15 1:10:35496 days ago1731633035
0xb7744Ce1...F65E2FFd7
0.000001 ETH
Transfer211897222024-11-15 1:10:35496 days ago1731633035
0xb7744Ce1...F65E2FFd7
0.00379795 ETH
Transfer211888812024-11-14 22:21:23496 days ago1731622883
0xb7744Ce1...F65E2FFd7
0.000001 ETH
Transfer211888812024-11-14 22:21:23496 days ago1731622883
0xb7744Ce1...F65E2FFd7
0.00256088 ETH
Transfer211888322024-11-14 22:11:23496 days ago1731622283
0xb7744Ce1...F65E2FFd7
0.000001 ETH
Transfer211888322024-11-14 22:11:23496 days ago1731622283
0xb7744Ce1...F65E2FFd7
0.00314609 ETH
Transfer211887882024-11-14 22:02:11496 days ago1731621731
0xb7744Ce1...F65E2FFd7
0.000001 ETH
Transfer211887882024-11-14 22:02:11496 days ago1731621731
0xb7744Ce1...F65E2FFd7
0.00270919 ETH
Transfer211886072024-11-14 21:25:59496 days ago1731619559
0xb7744Ce1...F65E2FFd7
0.000001 ETH
Transfer211886072024-11-14 21:25:59496 days ago1731619559
0xb7744Ce1...F65E2FFd7
0.00284442 ETH
Transfer211881162024-11-14 19:47:35496 days ago1731613655
0xb7744Ce1...F65E2FFd7
0.000001 ETH
Transfer211881162024-11-14 19:47:35496 days ago1731613655
0xb7744Ce1...F65E2FFd7
0.00305445 ETH
Transfer211880582024-11-14 19:35:59496 days ago1731612959
0xb7744Ce1...F65E2FFd7
0.000001 ETH
Transfer211880582024-11-14 19:35:59496 days ago1731612959
0xb7744Ce1...F65E2FFd7
0.0032154 ETH
Transfer211880422024-11-14 19:32:47496 days ago1731612767
0xb7744Ce1...F65E2FFd7
0.000001 ETH
Transfer211880422024-11-14 19:32:47496 days ago1731612767
0xb7744Ce1...F65E2FFd7
0.00368021 ETH
Transfer211879732024-11-14 19:18:59496 days ago1731611939
0xb7744Ce1...F65E2FFd7
0.000001 ETH
Transfer211879732024-11-14 19:18:59496 days ago1731611939
0xb7744Ce1...F65E2FFd7
0.00309491 ETH
Transfer211879542024-11-14 19:14:59496 days ago1731611699
0xb7744Ce1...F65E2FFd7
0.000001 ETH
View All Internal Transactions
Loading...
Loading
Loading...
Loading

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 0x47Fb709D...8E996C4B3
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Proxy

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 800 runs

Other Settings:
london EvmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 1 : Proxy.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

/**
 * @title Proxy // This is the user's Smart Account
 * @notice Basic proxy that delegates all calls to a fixed implementation contract.
 * @dev    Implementation address is stored in the slot defined by the Proxy's address
 */
contract Proxy {
    constructor(address _implementation) {
        require(
            _implementation != address(0),
            "Invalid implementation address"
        );
        assembly {
            sstore(address(), _implementation)
        }
    }

    fallback() external payable {
        address target;
        assembly {
            target := sload(address())
            calldatacopy(0, 0, calldatasize())
            let result := delegatecall(gas(), target, 0, calldatasize(), 0, 0)
            returndatacopy(0, 0, returndatasize())
            switch result
            case 0 {
                revert(0, returndatasize())
            }
            default {
                return(0, returndatasize())
            }
        }
    }
}

Settings
{
  "viaIR": true,
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "runs": 800,
    "enabled": true
  },
  "evmVersion": "london",
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_implementation","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]

0x6080346100aa57601f61012038819003918201601f19168301916001600160401b038311848410176100af578084926020946040528339810103126100aa57516001600160a01b0381168082036100aa5715610065573055604051605a90816100c68239f35b60405162461bcd60e51b815260206004820152601e60248201527f496e76616c696420696d706c656d656e746174696f6e206164647265737300006044820152606490fd5b600080fd5b634e487b7160e01b600052604160045260246000fdfe608060405230546000808092368280378136915af43d82803e156020573d90f35b3d90fdfea2646970667358221220a03b18dce0be0b4c9afe58a9eb85c35205e2cf087da098bbf1d23945bf89496064736f6c634300081100330000000000000000000000000000002512019dafb59528b82cb92d3c5d2423ac

Deployed Bytecode

0x608060405230546000808092368280378136915af43d82803e156020573d90f35b3d90fdfea2646970667358221220a03b18dce0be0b4c9afe58a9eb85c35205e2cf087da098bbf1d23945bf89496064736f6c63430008110033

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
0xb7744Ce158A09183F01296bCB262bB9F65E2FFd7
Net Worth in USD
$72.02

Net Worth in ETH
0.033931

Token Allocations
ETH 97.04%
XDAI 1.39%
BNB 1.32%
Others 0.26%
Chain Token Portfolio % Price Amount Value
ETH
Ether (ETH)
79.78%$2,122.750.0271$57.46
BASE9.76%$2,122.70.00331005$7.03
OP2.78%$2,122.490.0009438$2
ARB2.78%$2,122.050.00094253$2
LINEA1.94%$2,122.640.00065913$1.4
GNO1.39%$0.9998070.9989$0.998661
OPBNB0.88%$634.450.00099891$0.633759
BSC0.44%$634.430.00049681$0.315191
POL0.13%$0.09620.9479$0.091187
AVAX0.13%$9.430.00963212$0.090826
SEI<0.01%$0.0598350.0341$0.002038
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.