ETH Price: $2,697.68 (-1.88%)

Contract

0xE4b7Ef0dC86079888b6bFEB2E5CA2eA9892Cf523

Overview

ETH Balance

0 ETH

ETH Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Block
From
To
Cast4233375852026-01-20 12:11:0310 days ago1768911063IN
0xE4b7Ef0d...9892Cf523
0 ETH0.000019760.020006
Cast3602719962025-07-22 5:10:06192 days ago1753161006IN
0xE4b7Ef0d...9892Cf523
0 ETH0.000028550.019746
Cast3495787452025-06-21 5:57:49223 days ago1750485469IN
0xE4b7Ef0d...9892Cf523
0 ETH0.000010680.01

Latest 9 internal transactions

Parent Transaction Hash Block From To
3578546752025-07-15 5:33:21199 days ago1752557601
0xE4b7Ef0d...9892Cf523
0.0240408 ETH
3578546752025-07-15 5:33:21199 days ago1752557601
0xE4b7Ef0d...9892Cf523
0.00052559 ETH
3578546752025-07-15 5:33:21199 days ago1752557601
0xE4b7Ef0d...9892Cf523
2.62876793 ETH
3578546752025-07-15 5:33:21199 days ago1752557601
0xE4b7Ef0d...9892Cf523
2.65228315 ETH
3501351322025-06-22 20:38:36222 days ago1750624716
0xE4b7Ef0d...9892Cf523
0.46858526 ETH
3501351322025-06-22 20:38:36222 days ago1750624716
0xE4b7Ef0d...9892Cf523
0.46858526 ETH
3495787452025-06-21 5:57:49223 days ago1750485469
0xE4b7Ef0d...9892Cf523
3.09400832 ETH
3495787452025-06-21 5:57:49223 days ago1750485469
0xE4b7Ef0d...9892Cf523
3.09400832 ETH
3495786102025-06-21 5:57:15223 days ago1750485435  Contract Creation0 ETH

Cross-Chain Transactions
Loading...
Loading

Minimal Proxy Contract for 0x12d07dec54565839e0c4c33f6b94e5ad5be00e23

Contract Name:
FluidWallet

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 10000000 runs

Other Settings:
paris EvmVersion

Contract Source Code (Solidity Standard Json-Input format)

// SPDX-License-Identifier: MIT
pragma solidity 0.8.21;

interface IFluidWalletFactory {
    function walletImplementation() external returns(address);
}

/// @title      FluidWallet
/// @notice     Proxy for Fluid wallet as deployed by the FluidWalletFactory.
///             Basic Proxy with fallback to delegate and address for implementation contract at storage 0x0
//
contract FluidWallet {
    /// @notice Fluid Wallet Factory address.
    IFluidWalletFactory public immutable FACTORY;

    /// @notice Owner of the wallet.
    address public owner;

    function initialize(address owner_) public {
        if (owner == address(0)) {
            owner = owner_;
        } else {
            revert();
        }
    }

    constructor (address factory_) {
        FACTORY = IFluidWalletFactory(factory_);
    }

    receive() external payable {}

    fallback() external payable {
        address impl_ = FACTORY.walletImplementation();
        assembly {
            // @dev code below is taken from OpenZeppelin Proxy.sol _delegate function

            // Copy msg.data. We take full control of memory in this inline assembly
            // block because it will not return to Solidity code. We overwrite the
            // Solidity scratch pad at memory position 0.
            calldatacopy(0, 0, calldatasize())

            // Call the implementation.
            // out and outsize are 0 because we don't know the size yet.
            let result := delegatecall(gas(), impl_, 0, calldatasize(), 0, 0)

            // Copy the returned data.
            returndatacopy(0, 0, returndatasize())

            switch result
            // delegatecall returns 0 on error.
            case 0 {
                revert(0, returndatasize())
            }
            default {
                return(0, returndatasize())
            }
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 10000000
  },
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"factory_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"FACTORY","outputs":[{"internalType":"contract IFluidWalletFactory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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