Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 26 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Forward | 24496487 | 4 days ago | IN | 0.000281 ETH | 0.00000226 | ||||
| Forward | 24441325 | 11 days ago | IN | 0.015 ETH | 0.00013571 | ||||
| Forward | 24326975 | 27 days ago | IN | 0.00010466 ETH | 0.00000409 | ||||
| Forward | 24326724 | 27 days ago | IN | 0.000406 ETH | 0.00000845 | ||||
| Forward | 24326696 | 27 days ago | IN | 0.00041 ETH | 0.000004 | ||||
| Forward | 24298109 | 31 days ago | IN | 0.000132 ETH | 0.00000652 | ||||
| Forward | 24289493 | 33 days ago | IN | 0.00015338 ETH | 0.00000153 | ||||
| Forward | 24277094 | 34 days ago | IN | 0.000165 ETH | 0.00001238 | ||||
| Forward | 24275807 | 35 days ago | IN | 0.0011 ETH | 0.00000161 | ||||
| Forward | 24246624 | 39 days ago | IN | 0.00003615 ETH | 0.00000177 | ||||
| Forward | 24224680 | 42 days ago | IN | 0.001135 ETH | 0.00000128 | ||||
| Forward | 24220339 | 42 days ago | IN | 0.001 ETH | 0.00000239 | ||||
| Forward | 24190638 | 46 days ago | IN | 0.002475 ETH | 0.00000823 | ||||
| Forward | 24168001 | 50 days ago | IN | 0.0012 ETH | 0.00000278 | ||||
| Forward | 24080918 | 62 days ago | IN | 0.0033 ETH | 0.00000175 | ||||
| Forward | 24074475 | 63 days ago | IN | 0.000222 ETH | 0.00000092 | ||||
| Forward | 24073979 | 63 days ago | IN | 0.001779 ETH | 0.00000191 | ||||
| Forward | 24073938 | 63 days ago | IN | 0.0002 ETH | 0.00000385 | ||||
| Forward | 24069226 | 63 days ago | IN | 0.00171619 ETH | 0.00000271 | ||||
| Forward | 24034112 | 68 days ago | IN | 0.001 ETH | 0.00000103 | ||||
| Forward | 24034097 | 68 days ago | IN | 0.001 ETH | 0.00000094 | ||||
| Forward | 24034080 | 68 days ago | IN | 0.001 ETH | 0.00000176 | ||||
| Forward | 24033290 | 68 days ago | IN | 0.008225 ETH | 0.00013349 | ||||
| Forward | 24025415 | 70 days ago | IN | 0.01 ETH | 0.0000641 | ||||
| Forward | 24025178 | 70 days ago | IN | 0.015 ETH | 0.00011479 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 24496487 | 4 days ago | 0.000281 ETH | ||||
| Transfer | 24441326 | 11 days ago | 0.015 ETH | ||||
| Forward | 24441326 | 11 days ago | 0.015 ETH | ||||
| Transfer | 24441325 | 11 days ago | 0.015 ETH | ||||
| Transfer | 24384559 | 19 days ago | 0.00044399 ETH | ||||
| Forward | 24384559 | 19 days ago | 0.00044399 ETH | ||||
| Transfer | 24382930 | 20 days ago | 0.00047554 ETH | ||||
| Forward | 24382930 | 20 days ago | 0.00047554 ETH | ||||
| Transfer | 24370197 | 21 days ago | 0.00022624 ETH | ||||
| Forward | 24370197 | 21 days ago | 0.00022624 ETH | ||||
| Transfer | 24346198 | 25 days ago | 0.00012875 ETH | ||||
| Forward | 24346198 | 25 days ago | 0.00012875 ETH | ||||
| Transfer | 24326975 | 27 days ago | 0.00010466 ETH | ||||
| Transfer | 24326933 | 27 days ago | 0.0004057 ETH | ||||
| Forward | 24326933 | 27 days ago | 0.0004057 ETH | ||||
| Transfer | 24326724 | 27 days ago | 0.000406 ETH | ||||
| Transfer | 24326696 | 27 days ago | 0.00041 ETH | ||||
| Transfer | 24298109 | 31 days ago | 0.000132 ETH | ||||
| Transfer | 24289493 | 33 days ago | 0.00015338 ETH | ||||
| Transfer | 24277094 | 34 days ago | 0.000165 ETH | ||||
| Transfer | 24275807 | 35 days ago | 0.0011 ETH | ||||
| Transfer | 24247075 | 39 days ago | 0.00125746 ETH | ||||
| Forward | 24247075 | 39 days ago | 0.00125746 ETH | ||||
| Transfer | 24246624 | 39 days ago | 0.00003615 ETH | ||||
| Transfer | 24224680 | 42 days ago | 0.001135 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x000000Af...fF04132a1 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
EtherForwarder
Compiler Version
v0.8.27+commit.40a35a09
Optimization Enabled:
Yes with 999 runs
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.27;
/**
* @title EtherForwarder
* @dev A contract that forwards received Ether to a specified address
*/
contract EtherForwarder {
error ZeroAddress();
error ForwardFailed();
error UseForwardFunction();
/**
* @dev Forwards the received Ether to the specified destination address
* @param destination The address to forward the Ether to
*/
function forward(address destination) external payable {
if (destination == address(0)) revert ZeroAddress();
// Forward the Ether using assembly
bool success;
assembly {
// Gas-efficient way to forward ETH
success :=
call(
gas(), // Forward all available gas
destination, // Destination address
callvalue(), // Amount of ETH to send
0, // No data to send
0, // No data size
0, // No data to receive
0 // No data size to receive
)
}
if (!success) revert ForwardFailed();
}
/**
* @dev Prevents accidental Ether transfers without a destination
*/
receive() external payable {
revert("Use forward() function to send Ether");
}
/**
* @dev Prevents accidental Ether transfers without a destination
*/
fallback() external payable {
revert("Use forward() function to send Ether");
}
}{
"remappings": [
"openzeppelin/=node_modules/@openzeppelin/contracts/",
"account-abstraction/=node_modules/account-abstraction/contracts/",
"erc7739Validator/=node_modules/erc7739-validator-base/src/",
"solady/=node_modules/solady/src/",
"forge-std/=lib/forge-std/src/",
"erc7579/=node_modules/erc7579/src/",
"EnumerableSet4337/=node_modules/enumerablemap4337/src/",
"byteslib/=node_modules/solidity-bytes-utils/contracts/",
"rlp-reader/=node_modules/Solidity-RLP/contracts/",
"murky-trees/=node_modules/murky/src/",
"sentinellist/=node_modules/@rhinestone/sentinellist/src/",
"@ERC4337/=node_modules/@ERC4337/",
"@gnosis.pm/=node_modules/@gnosis.pm/",
"@openzeppelin/=node_modules/@openzeppelin/",
"@prb/=node_modules/@prb/",
"@rhinestone/=node_modules/@rhinestone/",
"@safe-global/=node_modules/@safe-global/",
"@zerodev/=node_modules/@zerodev/",
"ExcessivelySafeCall/=node_modules/erc7739-validator-base/node_modules/excessively-safe-call/src/",
"account-abstraction-v0.6/=node_modules/account-abstraction-v0.6/",
"ds-test/=node_modules/ds-test/",
"enumerablemap4337/=node_modules/enumerablemap4337/",
"enumerableset4337/=node_modules/erc7739-validator-base/node_modules/@erc7579/enumerablemap4337/src/",
"erc4337-validation/=node_modules/erc7739-validator-base/node_modules/@rhinestone/erc4337-validation/src/",
"erc7739-validator-base/=node_modules/erc7739-validator-base/",
"excessively-safe-call/=node_modules/excessively-safe-call/",
"hardhat-deploy/=node_modules/hardhat-deploy/",
"hardhat/=node_modules/hardhat/",
"kernel/=node_modules/erc7739-validator-base/node_modules/@zerodev/kernel/src/",
"module-bases/=node_modules/erc7739-validator-base/node_modules/@rhinestone/module-bases/src/",
"modulekit/=node_modules/erc7739-validator-base/node_modules/@rhinestone/modulekit/src/",
"murky/=node_modules/murky/",
"safe7579/=node_modules/erc7739-validator-base/node_modules/@rhinestone/safe7579/src/",
"solarray/=node_modules/solarray/",
"solidity-bytes-utils/=node_modules/solidity-bytes-utils/",
"solidity-rlp/=node_modules/solidity-rlp/"
],
"optimizer": {
"enabled": true,
"runs": 999
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "none",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "cancun",
"viaIR": true,
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"name":"ForwardFailed","type":"error"},{"inputs":[],"name":"UseForwardFunction","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"destination","type":"address"}],"name":"forward","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
0x6080806040523460155761014d908161001a8239f35b5f80fdfe60806040526004361015610018575b366100bd576100bd565b5f3560e01c63101e89520361000e5760203660031901126100b95760043573ffffffffffffffffffffffffffffffffffffffff81168082036100b95715610091575f8080809334905af11561006957005b7f096dc0e1000000000000000000000000000000000000000000000000000000005f5260045ffd5b7fd92e233d000000000000000000000000000000000000000000000000000000005f5260045ffd5b5f80fd5b60846040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f55736520666f727761726428292066756e6374696f6e20746f2073656e64204560448201527f74686572000000000000000000000000000000000000000000000000000000006064820152fdfea164736f6c634300081b000a
Deployed Bytecode
0x60806040526004361015610018575b366100bd576100bd565b5f3560e01c63101e89520361000e5760203660031901126100b95760043573ffffffffffffffffffffffffffffffffffffffff81168082036100b95715610091575f8080809334905af11561006957005b7f096dc0e1000000000000000000000000000000000000000000000000000000005f5260045ffd5b7fd92e233d000000000000000000000000000000000000000000000000000000005f5260045ffd5b5f80fd5b60846040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f55736520666f727761726428292066756e6374696f6e20746f2073656e64204560448201527f74686572000000000000000000000000000000000000000000000000000000006064820152fdfea164736f6c634300081b000a
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
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.