Transaction Hash:
Block:
22470309 at May-12-2025 10:59:11 PM +UTC
Transaction Fee:
0.00003286824830465 ETH
$0.08
Gas Used:
32,650 Gas / 1.006684481 Gwei
Emitted Events:
533 |
RelayReceiver.FundsForwardedWithData( data=0x6E55FF8F0464558413A52C37F548D271BD62C2C403815F7030DB83B461A0A63E )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1870Fd46...8bb3E0Fb5 |
0.013196314123167663 Eth
Nonce: 56
|
0.000163445874863013 Eth
Nonce: 57
| 0.01303286824830465 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 10.412059447605987257 Eth | 10.412059469677387257 Eth | 0.0000000220714 | |
0xf70da978...8dfA3dbEF | 178.683832579626080021 Eth | 178.696832579626080021 Eth | 0.013 |
Execution Trace
ETH 0.013
RelayReceiver.6e55ff8f( )
- ETH 0.013
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);}