ETH Price: $3,401.10 (+1.99%)

Contract

0x4f13a536CCe3b0de2E0a8a525CAa80c5dB8Ee232
 
Transaction Hash
Method
Block
From
To
Cast198745782024-05-15 9:47:11228 days ago1715766431IN
0x4f13a536...5dB8Ee232
0 ETH0.000595347.95795201
Cast198745712024-05-15 9:45:47228 days ago1715766347IN
0x4f13a536...5dB8Ee232
0 ETH0.001626845.70878743
Cast198743112024-05-15 8:53:47228 days ago1715763227IN
0x4f13a536...5dB8Ee232
0 ETH0.001818395.43489862
Cast198742772024-05-15 8:46:59228 days ago1715762819IN
0x4f13a536...5dB8Ee232
0 ETH0.002120136.12528691
Cast198742412024-05-15 8:39:47228 days ago1715762387IN
0x4f13a536...5dB8Ee232
0 ETH0.000621718.31048978
Cast198742372024-05-15 8:38:59228 days ago1715762339IN
0x4f13a536...5dB8Ee232
0 ETH0.004520148.30984678
Cast198741892024-05-15 8:29:23228 days ago1715761763IN
0x4f13a536...5dB8Ee232
0 ETH0.000886227.94587803
Cast198741802024-05-15 8:27:35228 days ago1715761655IN
0x4f13a536...5dB8Ee232
0 ETH0.00141988.51502821
Cast198741122024-05-15 8:13:47228 days ago1715760827IN
0x4f13a536...5dB8Ee232
0 ETH0.0063084110.66583073
Cast198740832024-05-15 8:07:59228 days ago1715760479IN
0x4f13a536...5dB8Ee232
0 ETH0.0026146312.70241373
Cast149663802022-06-15 7:45:38928 days ago1655279138IN
0x4f13a536...5dB8Ee232
0 ETH0.0031076127.54271382
Cast149663702022-06-15 7:44:21928 days ago1655279061IN
0x4f13a536...5dB8Ee232
0 ETH0.0212348735.49889747

Latest 9 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
198745782024-05-15 9:47:11228 days ago1715766431
0x4f13a536...5dB8Ee232
2.51520925 ETH
198745712024-05-15 9:45:47228 days ago1715766347
0x4f13a536...5dB8Ee232
2.51520925 ETH
198742412024-05-15 8:39:47228 days ago1715762387
0x4f13a536...5dB8Ee232
1 ETH
198742372024-05-15 8:38:59228 days ago1715762339
0x4f13a536...5dB8Ee232
1 ETH
127382442021-06-30 23:04:151277 days ago1625094255
0x4f13a536...5dB8Ee232
22.76065111 ETH
127382442021-06-30 23:04:151277 days ago1625094255
0x4f13a536...5dB8Ee232
22.76065111 ETH
127382442021-06-30 23:04:151277 days ago1625094255
0x4f13a536...5dB8Ee232
22.76065111 ETH
127382442021-06-30 23:04:151277 days ago1625094255
0x4f13a536...5dB8Ee232
22.76065111 ETH
127382442021-06-30 23:04:151277 days ago1625094255  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.