ETH Price: $3,015.29 (+0.56%)

Contract

0xcA85e89E09468aBbce625Ac5B937dC6519274851

Overview

ETH Balance

0 ETH

ETH Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Execute Batch175250022025-11-27 18:23:332 days ago1764267813IN
0xcA85e89E...519274851
0 ETH0.000001630.00100026
Execute Batch174656022025-11-27 1:53:333 days ago1764208413IN
0xcA85e89E...519274851
0 ETH0.000001460.00100026
Execute Batch174538542025-11-26 22:37:453 days ago1764196665IN
0xcA85e89E...519274851
0 ETH0.000001480.00100026
Execute Batch174538532025-11-26 22:37:443 days ago1764196664IN
0xcA85e89E...519274851
0 ETH0.000001430.00100026
Execute Batch174538512025-11-26 22:37:423 days ago1764196662IN
0xcA85e89E...519274851
0 ETH0.000001530.00100026
Execute Batch174538502025-11-26 22:37:413 days ago1764196661IN
0xcA85e89E...519274851
0 ETH0.000001430.00100026
Execute Batch174538482025-11-26 22:37:393 days ago1764196659IN
0xcA85e89E...519274851
0 ETH0.000001470.00100026
Execute Batch173538822025-11-25 18:51:334 days ago1764096693IN
0xcA85e89E...519274851
0 ETH0.000001420.00100026
Execute Batch171963222025-11-23 23:05:336 days ago1763939133IN
0xcA85e89E...519274851
0 ETH0.000001430.00100026
Execute Batch170546012025-11-22 7:43:328 days ago1763797412IN
0xcA85e89E...519274851
0 ETH0.000001640.00100026
Execute Batch170457212025-11-22 5:15:328 days ago1763788532IN
0xcA85e89E...519274851
0 ETH0.000001460.00100026
Execute Batch163359232025-11-14 0:05:3416 days ago1763078734IN
0xcA85e89E...519274851
0 ETH0.000001430.00100026
Execute Batch149676812025-10-29 4:01:3232 days ago1761710492IN
0xcA85e89E...519274851
0 ETH0.000001510.00100026
Execute Batch148574052025-10-27 21:23:3633 days ago1761600216IN
0xcA85e89E...519274851
0 ETH0.000002630.00100026
Execute Batch148574012025-10-27 21:23:3233 days ago1761600212IN
0xcA85e89E...519274851
0 ETH0.000003080.00100026
Execute Batch145623212025-10-24 11:25:3237 days ago1761305132IN
0xcA85e89E...519274851
0 ETH0.00000150.00100026
Execute Batch143871302025-10-22 10:45:4139 days ago1761129941IN
0xcA85e89E...519274851
0 ETH0.000001480.00100026
Execute Batch143871272025-10-22 10:45:3839 days ago1761129938IN
0xcA85e89E...519274851
0 ETH0.000001430.00100026
Execute Batch143871252025-10-22 10:45:3639 days ago1761129936IN
0xcA85e89E...519274851
0 ETH0.000001530.00100026
Execute Batch143871232025-10-22 10:45:3439 days ago1761129934IN
0xcA85e89E...519274851
0 ETH0.000001430.00100026
Execute Batch143871192025-10-22 10:45:3039 days ago1761129930IN
0xcA85e89E...519274851
0 ETH0.000001470.00100026
Execute Batch139970082025-10-17 22:23:3943 days ago1760739819IN
0xcA85e89E...519274851
0 ETH0.000001940.00100026
Execute Batch139970062025-10-17 22:23:3743 days ago1760739817IN
0xcA85e89E...519274851
0 ETH0.000001760.00100026
Execute Batch139970042025-10-17 22:23:3543 days ago1760739815IN
0xcA85e89E...519274851
0 ETH0.000001430.00100026
Execute Batch139970012025-10-17 22:23:3243 days ago1760739812IN
0xcA85e89E...519274851
0 ETH0.000001420.00100026
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:

Cross-Chain Transactions
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
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.