ETH Price: $2,046.18 (+3.11%)

Contract

0x3cA85D9eB5CD8637D9C34718f9D7F514d2e4fa43
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

> 10 Internal Transactions and > 10 Token Transfers found.

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Method Block
From
To
Deposit204454922024-08-03 4:01:35584 days ago1722657695
0x3cA85D9e...4d2e4fa43
3.244 ETH
Transfer204454922024-08-03 4:01:35584 days ago1722657695
0x3cA85D9e...4d2e4fa43
3.244 ETH
Deposit204448662024-08-03 1:54:47584 days ago1722650087
0x3cA85D9e...4d2e4fa43
7 ETH
Transfer204448662024-08-03 1:54:47584 days ago1722650087
0x3cA85D9e...4d2e4fa43
7 ETH
Deposit204416072024-08-02 14:58:35584 days ago1722610715
0x3cA85D9e...4d2e4fa43
8 ETH
Transfer204416072024-08-02 14:58:35584 days ago1722610715
0x3cA85D9e...4d2e4fa43
8 ETH
Operate204373162024-08-02 0:35:59585 days ago1722558959
0x3cA85D9e...4d2e4fa43
3.11795669 ETH
Transfer204373162024-08-02 0:35:59585 days ago1722558959
0x3cA85D9e...4d2e4fa43
3.11795669 ETH
Deposit204351492024-08-01 17:20:35585 days ago1722532835
0x3cA85D9e...4d2e4fa43
7 ETH
Transfer204351492024-08-01 17:20:35585 days ago1722532835
0x3cA85D9e...4d2e4fa43
7 ETH
Operate204341282024-08-01 13:54:59585 days ago1722520499
0x3cA85D9e...4d2e4fa43
1.00423269 ETH
Transfer204341282024-08-01 13:54:59585 days ago1722520499
0x3cA85D9e...4d2e4fa43
1.00423269 ETH
Operate204317052024-08-01 5:47:59586 days ago1722491279
0x3cA85D9e...4d2e4fa43
1.81018402 ETH
Transfer204317052024-08-01 5:47:59586 days ago1722491279
0x3cA85D9e...4d2e4fa43
1.81018402 ETH
Deposit204314192024-08-01 4:50:35586 days ago1722487835
0x3cA85D9e...4d2e4fa43
5 ETH
Transfer204314192024-08-01 4:50:35586 days ago1722487835
0x3cA85D9e...4d2e4fa43
5 ETH
Deposit204207392024-07-30 17:04:11587 days ago1722359051
0x3cA85D9e...4d2e4fa43
3 ETH
Transfer204207392024-07-30 17:04:11587 days ago1722359051
0x3cA85D9e...4d2e4fa43
3 ETH
Operate204103312024-07-29 6:09:47589 days ago1722233387
0x3cA85D9e...4d2e4fa43
1.18512572 ETH
Transfer204103312024-07-29 6:09:47589 days ago1722233387
0x3cA85D9e...4d2e4fa43
1.18512572 ETH
Operate203971662024-07-27 10:04:35590 days ago1722074675
0x3cA85D9e...4d2e4fa43
1.83052836 ETH
Transfer203971662024-07-27 10:04:35590 days ago1722074675
0x3cA85D9e...4d2e4fa43
1.83052836 ETH
Operate203929152024-07-26 19:49:11591 days ago1722023351
0x3cA85D9e...4d2e4fa43
2.13153909 ETH
Transfer203929152024-07-26 19:49:11591 days ago1722023351
0x3cA85D9e...4d2e4fa43
2.13153909 ETH
Operate203882522024-07-26 4:12:23592 days ago1721967143
0x3cA85D9e...4d2e4fa43
6.0081001 ETH
View All Internal Transactions
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

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
{
  "remappings": [
    "forge-std/=lib/forge-std/src/",
    "erc4626-tests/=lib/erc4626-tests/",
    "solmate/=lib/solmate/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/src/",
    "openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/src/",
    "@openzeppelin/=node_modules/@openzeppelin/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "eth-gas-reporter/=node_modules/eth-gas-reporter/",
    "hardhat-deploy/=node_modules/hardhat-deploy/",
    "hardhat/=node_modules/hardhat/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 10000000
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "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 Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.