Transaction Hash:
Block:
22561346 at May-25-2025 05:32:35 PM +UTC
Transaction Fee:
0.0000535589393909 ETH
$0.14
Gas Used:
32,650 Gas / 1.640396306 Gwei
Emitted Events:
273 |
RelayReceiver.FundsForwardedWithData( data=0xB80F8E165171BBFF9521C72AEF6F1BB8DEA06B6BDED52E59AA6BD5A7EEB4D86E )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1a9ea69d...4C670EB08 |
0.001779280001493233 Eth
Nonce: 9
|
0.0005513081982091 Eth
Nonce: 10
| 0.001227971803284133 | ||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 9.974509845496097944 Eth | 9.974543347692768444 Eth | 0.0000335021966705 | |
0xf70da978...8dfA3dbEF | 387.892094051375845184 Eth | 387.893268464239738417 Eth | 0.001174412863893233 |
Execution Trace
ETH 0.001174412863893233
RelayReceiver.b80f8e16( )
- ETH 0.001174412863893233
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);}