ETH Price: $2,737.16 (+0.30%)

Contract

0x3540528709Cf17ae41e4ab0793dF8c42269Dd58D
 

Overview

ETH Balance

0.000221595265288475 ETH

Eth Value

$0.61 (@ $2,737.16/ETH)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Cast217254102025-01-28 20:28:1123 days ago1738096091IN
0x35405287...2269Dd58D
0 ETH0.0007247.66682932
Cast217253812025-01-28 20:22:2323 days ago1738095743IN
0x35405287...2269Dd58D
0 ETH0.002982337.49297662
Cast205217132024-08-13 19:12:11191 days ago1723576331IN
0x35405287...2269Dd58D
0 ETH0.000435893.90824328
Cast205217032024-08-13 19:10:11191 days ago1723576211IN
0x35405287...2269Dd58D
0 ETH0.000610074.04355484
Cast194841372024-03-21 16:10:59336 days ago1711037459IN
0x35405287...2269Dd58D
0 ETH0.0025884134.59944554
Cast126896662021-06-23 9:46:321338 days ago1624441592IN
0x35405287...2269Dd58D
0 ETH0.004887310
Cast126713992021-06-20 13:10:361341 days ago1624194636IN
0x35405287...2269Dd58D
0 ETH0.0049968823
Cast126652382021-06-19 14:05:341342 days ago1624111534IN
0x35405287...2269Dd58D
0 ETH0.0026228311.50000067
Cast126651592021-06-19 13:47:361342 days ago1624110456IN
0x35405287...2269Dd58D
0 ETH0.0047843910.5

Latest 6 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
217253812025-01-28 20:22:2323 days ago1738095743
0x35405287...2269Dd58D
0.00022159 ETH
194841372024-03-21 16:10:59336 days ago1711037459
0x35405287...2269Dd58D
0.04995981 ETH
126896662021-06-23 9:46:321338 days ago1624441592
0x35405287...2269Dd58D
0.00009825 ETH
126713992021-06-20 13:10:361341 days ago1624194636
0x35405287...2269Dd58D
0.05 ETH
126652382021-06-19 14:05:341342 days ago1624111534
0x35405287...2269Dd58D
0.10005806 ETH
126650522021-06-19 13:23:001342 days ago1624108980  Contract Creation0 ETH
Loading...
Loading

Minimal Proxy Contract for 0xfe02a32cbe0cb9ad9a945576a5bb53a3c123a3a3

Contract Name:
InstaAccountV2

Compiler Version
v0.7.0+commit.9e61f92b

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 1 : accountProxy.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;

interface AccountImplementations {
    function getImplementation(bytes4 _sig) external view returns (address);
}

/**
 * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
 * instruction `delegatecall`.
 */
contract InstaAccountV2 {

    AccountImplementations public immutable implementations;

    constructor(address _implementations) {
        implementations = AccountImplementations(_implementations);
    }

    /**
     * @dev Delegates the current call to `implementation`.
     * 
     * This function does not return to its internall call site, it will return directly to the external caller.
     */
    function _delegate(address implementation) internal {
        // solhint-disable-next-line no-inline-assembly
        assembly {
            // 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(), implementation, 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()) }
        }
    }

    /**
     * @dev Delegates the current call to the address returned by Implementations registry.
     * 
     * This function does not return to its internall call site, it will return directly to the external caller.
     */
    function _fallback(bytes4 _sig) internal {
        address _implementation = implementations.getImplementation(_sig);
        require(_implementation != address(0), "InstaAccountV2: Not able to find _implementation");
        _delegate(_implementation);
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by Implementations registry.
     */
    fallback () external payable {
        _fallback(msg.sig);
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by Implementations registry.
     */
    receive () external payable {
        if (msg.sig != 0x00000000) {
            _fallback(msg.sig);
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract ABI

[{"inputs":[{"internalType":"address","name":"_implementations","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementations","outputs":[{"internalType":"contract AccountImplementations","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

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.