ETH Price: $2,331.38 (-1.27%)

Contract

0xCCe6617F04dF45f4a9F4e157bd2F7f8a6785Fff7
 

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
Cast220756892025-03-18 18:55:23364 days ago1742324123IN
0xCCe6617F...a6785Fff7
0 ETH0.000077871.04112064
Cast220756542025-03-18 18:48:11364 days ago1742323691IN
0xCCe6617F...a6785Fff7
0 ETH0.000306860.93342657
Cast220756062025-03-18 18:38:35364 days ago1742323115IN
0xCCe6617F...a6785Fff7
0 ETH0.000512851.02454087
Cast151937882022-07-22 17:31:211334 days ago1658511081IN
0xCCe6617F...a6785Fff7
0 ETH0.009434426.41705516
Cast151937852022-07-22 17:30:171334 days ago1658511017IN
0xCCe6617F...a6785Fff7
0 ETH0.0113456922.82041539
Cast151934122022-07-22 16:14:331334 days ago1658506473IN
0xCCe6617F...a6785Fff7
0 ETH0.0098185531.52883716
Cast149878782022-06-19 0:16:531368 days ago1655597813IN
0xCCe6617F...a6785Fff7
0 ETH0.0024589221.79334423
Cast149871342022-06-18 21:11:271368 days ago1655586687IN
0xCCe6617F...a6785Fff7
0 ETH0.0176340466.44050935
Cast149870322022-06-18 20:47:301368 days ago1655585250IN
0xCCe6617F...a6785Fff7
0 ETH0.0428367271.94914315
Cast149868252022-06-18 20:01:031368 days ago1655582463IN
0xCCe6617F...a6785Fff7
0 ETH0.058948469.00716076
Cast144817152022-03-29 14:45:561449 days ago1648565156IN
0xCCe6617F...a6785Fff7
0 ETH0.0141258238.26051505
Cast144764542022-03-28 19:08:551450 days ago1648494535IN
0xCCe6617F...a6785Fff7
0 ETH0.0104357550
Cast143862972022-03-14 18:16:421464 days ago1647281802IN
0xCCe6617F...a6785Fff7
0 ETH0.0277656825.13842298
Cast143862502022-03-14 18:07:431464 days ago1647281263IN
0xCCe6617F...a6785Fff7
0 ETH0.0165601831.46732762
Cast143861292022-03-14 17:35:561464 days ago1647279356IN
0xCCe6617F...a6785Fff7
0 ETH0.0241713433.79327388
Cast141748562022-02-09 23:33:081497 days ago1644449588IN
0xCCe6617F...a6785Fff7
0 ETH0.0078619369.52969843
Cast141748312022-02-09 23:29:241497 days ago1644449364IN
0xCCe6617F...a6785Fff7
0 ETH0.0338505897.49817357
Cast141747832022-02-09 23:20:081497 days ago1644448808IN
0xCCe6617F...a6785Fff7
0 ETH0.01827788.79317188
Cast141746962022-02-09 22:57:311497 days ago1644447451IN
0xCCe6617F...a6785Fff7
0 ETH0.0331004884.78565631

Latest 4 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer220756892025-03-18 18:55:23364 days ago1742324123
0xCCe6617F...a6785Fff7
0.01013582 ETH
Transfer220756542025-03-18 18:48:11364 days ago1742323691
0xCCe6617F...a6785Fff7
0.00002317 ETH
Transfer220756542025-03-18 18:48:11364 days ago1742323691
0xCCe6617F...a6785Fff7
0.01011265 ETH
-141744522022-02-09 22:00:431497 days ago1644444043  Contract Creation0 ETH
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 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)

// 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

API
[{"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 Uncle Number Difficulty Gas Used Reward
View All Uncles
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.