Transaction Hash:
Block:
22555725 at May-24-2025 10:37:59 PM +UTC
Transaction Fee:
0.00001612309204085 ETH
$0.04
Gas Used:
32,650 Gas / 0.493815989 Gwei
Emitted Events:
441 |
RelayReceiver.FundsForwardedWithData( data=0xDBEC4DD8040454621EE6B888A3BAC66B27E73478D5FBF74E9BC24F7278D6EDEB )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x5A799829...721D618b9 |
0.001160774637656926 Eth
Nonce: 56
|
0.000434765468867676 Eth
Nonce: 57
| 0.00072600916878925 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 10.172049341266464582 Eth | 10.172050973766464582 Eth | 0.0000016325 | |
0xf70da978...8dfA3dbEF | 477.50752995286014384 Eth | 477.50823983893689224 Eth | 0.0007098860767484 |
Execution Trace
ETH 0.0007098860767484
RelayReceiver.dbec4dd8( )
- ETH 0.0007098860767484
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);}