Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 1,512 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Execute Batch | 21067298 | 7 days ago | IN | 0 ETH | 0.00104566 | ||||
Execute Batch | 21067297 | 7 days ago | IN | 0 ETH | 0.00164297 | ||||
Execute Batch | 21067289 | 7 days ago | IN | 0 ETH | 0.00090642 | ||||
Execute Batch | 21067288 | 7 days ago | IN | 0 ETH | 0.01033763 | ||||
Execute Batch | 21067287 | 7 days ago | IN | 0 ETH | 0.00262335 | ||||
Execute Batch | 21067277 | 7 days ago | IN | 0 ETH | 0.00095621 | ||||
Execute Batch | 21067272 | 7 days ago | IN | 0 ETH | 0.00553994 | ||||
Execute Batch | 21067271 | 7 days ago | IN | 0 ETH | 0.00173444 | ||||
Execute Batch | 21067270 | 7 days ago | IN | 0 ETH | 0.00108121 | ||||
Execute Batch | 21067268 | 7 days ago | IN | 0 ETH | 0.01408552 | ||||
Execute Batch | 21067267 | 7 days ago | IN | 0 ETH | 0.0009595 | ||||
Execute Batch | 21067258 | 7 days ago | IN | 0 ETH | 0.00465839 | ||||
Execute Batch | 21067257 | 7 days ago | IN | 0 ETH | 0.00448859 | ||||
Execute Batch | 21067247 | 7 days ago | IN | 0 ETH | 0.00063284 | ||||
Execute Batch | 21054251 | 9 days ago | IN | 0 ETH | 0.00056477 | ||||
Execute Batch | 21054250 | 9 days ago | IN | 0 ETH | 0.00058589 | ||||
Execute Batch | 21054242 | 9 days ago | IN | 0 ETH | 0.00059364 | ||||
Execute Batch | 21054241 | 9 days ago | IN | 0 ETH | 0.00063585 | ||||
Execute Batch | 21054240 | 9 days ago | IN | 0 ETH | 0.00064317 | ||||
Execute Batch | 21054232 | 9 days ago | IN | 0 ETH | 0.00071183 | ||||
Execute Batch | 21054231 | 9 days ago | IN | 0 ETH | 0.00075065 | ||||
Execute Batch | 21054220 | 9 days ago | IN | 0 ETH | 0.00069831 | ||||
Execute Batch | 21054210 | 9 days ago | IN | 0 ETH | 0.00075006 | ||||
Execute Batch | 21054202 | 9 days ago | IN | 0 ETH | 0.00080988 | ||||
Execute Batch | 21054201 | 9 days ago | IN | 0 ETH | 0.0008333 |
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers. Name tag integration is not available in advanced view.
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | ||||
---|---|---|---|---|---|---|---|
21067298 | 7 days ago | 0 ETH | |||||
21067297 | 7 days ago | 0 ETH | |||||
21067289 | 7 days ago | 0 ETH | |||||
21067288 | 7 days ago | 0 ETH | |||||
21067287 | 7 days ago | 0 ETH | |||||
21067277 | 7 days ago | 0 ETH | |||||
21067272 | 7 days ago | 0 ETH | |||||
21067271 | 7 days ago | 0 ETH | |||||
21067270 | 7 days ago | 0 ETH | |||||
21067268 | 7 days ago | 0 ETH | |||||
21067267 | 7 days ago | 0 ETH | |||||
21067258 | 7 days ago | 0 ETH | |||||
21067257 | 7 days ago | 0 ETH | |||||
21067247 | 7 days ago | 0 ETH | |||||
21054251 | 9 days ago | 0 ETH | |||||
21054250 | 9 days ago | 0 ETH | |||||
21054242 | 9 days ago | 0 ETH | |||||
21054241 | 9 days ago | 0 ETH | |||||
21054240 | 9 days ago | 0 ETH | |||||
21054232 | 9 days ago | 0 ETH | |||||
21054231 | 9 days ago | 0 ETH | |||||
21054220 | 9 days ago | 0 ETH | |||||
21054210 | 9 days ago | 0 ETH | |||||
21054202 | 9 days ago | 0 ETH | |||||
21054201 | 9 days ago | 0 ETH |
Loading...
Loading
Contract Name:
CallProxy
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
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 { address immutable i_target; constructor(address target) { i_target = 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()) } } }
{ "remappings": [ "ds-test/=lib/forge-std/lib/ds-test/src/", "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", "forge-std/=lib/forge-std/src/", "openzeppelin-contracts/=lib/openzeppelin-contracts/contracts/", "openzeppelin/=lib/openzeppelin-contracts/contracts/", "safe-contracts/=lib/safe-contracts/contracts/" ], "optimizer": { "enabled": false, "runs": 200 }, "metadata": { "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"target","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]
Contract Creation Code
60a060405234801561001057600080fd5b50604051610196380380610196833981810160405281019061003291906100cf565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1681525050506100fc565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061009c82610071565b9050919050565b6100ac81610091565b81146100b757600080fd5b50565b6000815190506100c9816100a3565b92915050565b6000602082840312156100e5576100e461006c565b5b60006100f3848285016100ba565b91505092915050565b608051608261011460003960006008015260826000f3fe608060405260007f00000000000000000000000000000000000000000000000000000000000000009050366000803760008036600034855af13d6000803e80156047573d6000f35b3d6000fdfea2646970667358221220211736ea60fb0151f734147b4a73fafa7eb128a07f899c10ac7354f45c049ee964736f6c6343000813003300000000000000000000000044835bbba9d40deda9b64858095ecfb2693c9449
Deployed Bytecode
0x608060405260007f00000000000000000000000044835bbba9d40deda9b64858095ecfb2693c94499050366000803760008036600034855af13d6000803e80156047573d6000f35b3d6000fdfea2646970667358221220211736ea60fb0151f734147b4a73fafa7eb128a07f899c10ac7354f45c049ee964736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000044835bbba9d40deda9b64858095ecfb2693c9449
-----Decoded View---------------
Arg [0] : target (address): 0x44835bBBA9D40DEDa9b64858095EcFB2693c9449
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000044835bbba9d40deda9b64858095ecfb2693c9449
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.