Transaction Hash:
Block:
22564642 at May-26-2025 04:38:47 AM +UTC
Transaction Fee:
0.0000280282602675 ETH
$0.07
Gas Used:
32,650 Gas / 0.85844595 Gwei
Emitted Events:
396 |
RelayReceiver.FundsForwardedWithData( data=0x3BB97D22CDC922ED050508E7E16CBC4B26BE0B9E6BD506B67C1905A036874170 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3D9eA3D5...bD79Cc658 |
0.048675199506124417 Eth
Nonce: 51
|
0.006647171245856917 Eth
Nonce: 52
| 0.0420280282602675 | ||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 22.511376735646828131 Eth | 22.511393060646828131 Eth | 0.000016325 | |
0xf70da978...8dfA3dbEF | 300.515267883418708687 Eth | 300.557267883418708687 Eth | 0.042 |
Execution Trace
ETH 0.042
RelayReceiver.3bb97d22( )
- ETH 0.042
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);}