Overview
ETH Balance
ETH Value
$0.00Latest 25 from a total of 96 transactions
| Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Execute Batch | 17525002 | 2 days ago | IN | 0 ETH | 0.00000163 | ||||
| Execute Batch | 17465602 | 3 days ago | IN | 0 ETH | 0.00000146 | ||||
| Execute Batch | 17453854 | 3 days ago | IN | 0 ETH | 0.00000148 | ||||
| Execute Batch | 17453853 | 3 days ago | IN | 0 ETH | 0.00000143 | ||||
| Execute Batch | 17453851 | 3 days ago | IN | 0 ETH | 0.00000153 | ||||
| Execute Batch | 17453850 | 3 days ago | IN | 0 ETH | 0.00000143 | ||||
| Execute Batch | 17453848 | 3 days ago | IN | 0 ETH | 0.00000147 | ||||
| Execute Batch | 17353882 | 4 days ago | IN | 0 ETH | 0.00000142 | ||||
| Execute Batch | 17196322 | 6 days ago | IN | 0 ETH | 0.00000143 | ||||
| Execute Batch | 17054601 | 8 days ago | IN | 0 ETH | 0.00000164 | ||||
| Execute Batch | 17045721 | 8 days ago | IN | 0 ETH | 0.00000146 | ||||
| Execute Batch | 16335923 | 16 days ago | IN | 0 ETH | 0.00000143 | ||||
| Execute Batch | 14967681 | 32 days ago | IN | 0 ETH | 0.00000151 | ||||
| Execute Batch | 14857405 | 33 days ago | IN | 0 ETH | 0.00000263 | ||||
| Execute Batch | 14857401 | 33 days ago | IN | 0 ETH | 0.00000308 | ||||
| Execute Batch | 14562321 | 37 days ago | IN | 0 ETH | 0.0000015 | ||||
| Execute Batch | 14387130 | 39 days ago | IN | 0 ETH | 0.00000148 | ||||
| Execute Batch | 14387127 | 39 days ago | IN | 0 ETH | 0.00000143 | ||||
| Execute Batch | 14387125 | 39 days ago | IN | 0 ETH | 0.00000153 | ||||
| Execute Batch | 14387123 | 39 days ago | IN | 0 ETH | 0.00000143 | ||||
| Execute Batch | 14387119 | 39 days ago | IN | 0 ETH | 0.00000147 | ||||
| Execute Batch | 13997008 | 43 days ago | IN | 0 ETH | 0.00000194 | ||||
| Execute Batch | 13997006 | 43 days ago | IN | 0 ETH | 0.00000176 | ||||
| Execute Batch | 13997004 | 43 days ago | IN | 0 ETH | 0.00000143 | ||||
| Execute Batch | 13997001 | 43 days ago | IN | 0 ETH | 0.00000142 |
View more zero value Internal Transactions in Advanced View mode
Cross-Chain Transactions
Contract Source Code (Solidity Standard Json-Input format)
// 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())
}
}
}{
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "none"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
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"}]Contract Creation Code
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
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.