ETH Price: $3,872.43 (-11.19%)

Contract

0xcA85e89E09468aBbce625Ac5B937dC6519274851

Overview

ETH Balance

0 ETH

ETH Value

$0.00

More Info

Private Name Tags

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Execute Batch131381612025-10-07 23:49:322 days ago1759880972IN
0xcA85e89E...519274851
0 ETH0.000003820.00100026
Execute Batch125108002025-09-30 17:33:3110 days ago1759253611IN
0xcA85e89E...519274851
0 ETH0.000001410.00100026
Execute Batch89001282025-08-19 22:35:3951 days ago1755642939IN
0xcA85e89E...519274851
0 ETH0.000001480.00100026
Execute Batch89001262025-08-19 22:35:3751 days ago1755642937IN
0xcA85e89E...519274851
0 ETH0.000001430.00100026
Execute Batch89001232025-08-19 22:35:3451 days ago1755642934IN
0xcA85e89E...519274851
0 ETH0.000001550.00100026
Execute Batch89001202025-08-19 22:35:3151 days ago1755642931IN
0xcA85e89E...519274851
0 ETH0.000001470.00100026
Execute Batch88906392025-08-19 19:57:3052 days ago1755633450IN
0xcA85e89E...519274851
0 ETH0.000003850.00100026
Execute Batch84744812025-08-15 0:21:3256 days ago1755217292IN
0xcA85e89E...519274851
0 ETH0.000001440.00100026
Execute Batch54565992025-07-11 2:03:3091 days ago1752199410IN
0xcA85e89E...519274851
0 ETH0.000000140.0010107
Execute Batch54564872025-07-11 2:01:3891 days ago1752199298IN
0xcA85e89E...519274851
0 ETH0.000000140.00101431
Execute Batch54564842025-07-11 2:01:3591 days ago1752199295IN
0xcA85e89E...519274851
0 ETH0.000000140.00101424
Execute Batch54564812025-07-11 2:01:3291 days ago1752199292IN
0xcA85e89E...519274851
0 ETH0.000000140.00101434
Execute Batch54563702025-07-11 1:59:4191 days ago1752199181IN
0xcA85e89E...519274851
0 ETH0.000000130.00101679
Execute Batch54563682025-07-11 1:59:3991 days ago1752199179IN
0xcA85e89E...519274851
0 ETH0.000000130.00101662
Execute Batch47315622025-07-02 16:39:33100 days ago1751474373IN
0xcA85e89E...519274851
0 ETH0.000000850.00115376
Execute Batch47315582025-07-02 16:39:29100 days ago1751474369IN
0xcA85e89E...519274851
0 ETH0.000001590.00114963
Execute Batch42978922025-06-27 16:11:43105 days ago1751040703IN
0xcA85e89E...519274851
0 ETH0.000000090.00100025
Execute Batch42977882025-06-27 16:09:59105 days ago1751040599IN
0xcA85e89E...519274851
0 ETH0.000000090.00100025
Execute Batch42977772025-06-27 16:09:48105 days ago1751040588IN
0xcA85e89E...519274851
0 ETH0.000000090.00100025
Execute Batch42977732025-06-27 16:09:44105 days ago1751040584IN
0xcA85e89E...519274851
0 ETH0.000000080.00100025
Execute Batch42314082025-06-26 21:43:39105 days ago1750974219IN
0xcA85e89E...519274851
0 ETH0.000000680.00100025
Execute Batch42314012025-06-26 21:43:32105 days ago1750974212IN
0xcA85e89E...519274851
0 ETH0.00000050.00100025
Execute Batch42313982025-06-26 21:43:29105 days ago1750974209IN
0xcA85e89E...519274851
0 ETH0.000000680.00100025
Execute Batch42312922025-06-26 21:41:43105 days ago1750974103IN
0xcA85e89E...519274851
0 ETH0.00000050.00100025
Execute Batch42312882025-06-26 21:41:39105 days ago1750974099IN
0xcA85e89E...519274851
0 ETH0.000000680.00100025
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:

Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
CallProxy

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
london EvmVersion
File 1 of 1 : .sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity =0.8.19;

/// @notice a contract which acts as a forwarder that forwards the input from
/// any caller to a a target contract.
contract CallProxy {
    event TargetSet(address target);

    address immutable i_target;

    constructor(address target) {
        i_target = target;
        emit TargetSet(target);
    }

    fallback() external payable {
        address target = i_target;
        assembly {
            // This code destroys Solidity's memory layout.
            // That's fine, because we never return to Solidity anyways,
            // we either return or revert out of the callframe at the end.
            calldatacopy(0, 0, calldatasize())
            let success := call(gas(), target, callvalue(), 0, calldatasize(), 0, 0)
            returndatacopy(0, 0, returndatasize())
            if success { return(0, returndatasize()) }
            revert(0, returndatasize())
        }
    }
}

Settings
{
  "evmVersion": "london",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "none"
  },
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"target","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"target","type":"address"}],"name":"TargetSet","type":"event"},{"stateMutability":"payable","type":"fallback"}]

60a060405234801561001057600080fd5b506040516101ce3803806101ce83398181016040528101906100329190610106565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250507f3bfb4bbf112628248058745a3c57e35b13369386e474b8e56c552f3063a4a196816040516100959190610142565b60405180910390a15061015d565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006100d3826100a8565b9050919050565b6100e3816100c8565b81146100ee57600080fd5b50565b600081519050610100816100da565b92915050565b60006020828403121561011c5761011b6100a3565b5b600061012a848285016100f1565b91505092915050565b61013c816100c8565b82525050565b60006020820190506101576000830184610133565b92915050565b608051605961017560003960006008015260596000f3fe608060405260007f00000000000000000000000000000000000000000000000000000000000000009050366000803760008036600034855af13d6000803e80156047573d6000f35b3d6000fdfea164736f6c6343000813000a000000000000000000000000b537b61351c91154bf361a1589bc0480f89d616e

Deployed Bytecode

0x608060405260007f000000000000000000000000b537b61351c91154bf361a1589bc0480f89d616e9050366000803760008036600034855af13d6000803e80156047573d6000f35b3d6000fdfea164736f6c6343000813000a

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000b537b61351c91154bf361a1589bc0480f89d616e

-----Decoded View---------------
Arg [0] : target (address): 0xb537B61351c91154BF361a1589bC0480F89d616E

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b537b61351c91154bf361a1589bc0480f89d616e


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
0xcA85e89E09468aBbce625Ac5B937dC6519274851
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.