Transaction Hash:
Block:
22555750 at May-24-2025 10:42:59 PM +UTC
Transaction Fee:
0.00001294788987936 ETH
$0.03
Gas Used:
32,976 Gas / 0.39264586 Gwei
Emitted Events:
539 |
RelayReceiver.FundsForwardedWithData( data=0x8D892CD3D5F0B297744E17F365CBEB095372736590A2F16D44CB0731D9830E11865D8597 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 24.057159015867104061 Eth | 24.057159019164704061 Eth | 0.0000000032976 | |
0xe8536B77...366E6Ab27 |
0.000201559715539475 Eth
Nonce: 1
|
0.000008552110120645 Eth
Nonce: 2
| 0.00019300760541883 | ||
0xf70da978...8dfA3dbEF | 478.722466416489236759 Eth | 478.722646476204776229 Eth | 0.00018005971553947 |
Execution Trace
ETH 0.00018005971553947
RelayReceiver.8d892cd3( )
- ETH 0.00018005971553947
0xf70da97812cb96acdf810712aa562db8dfa3dbef.CALL( )
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.23;contract RelayReceiver {// --- Structs ---struct Call {address to;bytes data;uint256 value;}// --- Errors ---error CallFailed();error NativeTransferFailed();error Unauthorized();// --- Events ---event FundsForwardedWithData(bytes data);// --- Fields ---address private immutable SOLVER;// --- Constructor ---constructor(address solver) {SOLVER = solver;}// --- Public methods ---fallback() external payable {send(SOLVER, msg.value);emit FundsForwardedWithData(msg.data);}