Transaction Hash:
Block:
22561393 at May-25-2025 05:41:59 PM +UTC
Transaction Fee:
0.0000387525293526 ETH
$0.11
Gas Used:
32,650 Gas / 1.186907484 Gwei
Emitted Events:
429 |
RelayReceiver.FundsForwardedWithData( data=0xF10A9746E12634AA6BE4B335700DEEA66DA219F50AF43559112D92E99439CCFD )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 10.220789929142495372 Eth | 10.220806254142495372 Eth | 0.000016325 | |
0xb3ABbF31...d98E0BF96 |
0.019955808008433658 Eth
Nonce: 4
|
0.000167055479081058 Eth
Nonce: 5
| 0.0197887525293526 | ||
0xf70da978...8dfA3dbEF | 389.5364427269558563 Eth | 389.5561927269558563 Eth | 0.01975 |
Execution Trace
ETH 0.01975
RelayReceiver.f10a9746( )
- ETH 0.01975
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);}