Transaction Hash:
Block:
21780108 at Feb-05-2025 11:51:11 AM +UTC
Transaction Fee:
0.00008184836638805 ETH
$0.21
Gas Used:
32,650 Gas / 2.506841237 Gwei
Emitted Events:
77 |
RelayReceiver.FundsForwardedWithData( data=0x35E93D4AEA4522E7EB227C372B1BF9EFB7672562E415E512B3BA955F979B766B )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 8.471328823088011354 Eth | 8.471370497405918554 Eth | 0.0000416743179072 | |
0xb9515FAA...D45C411C1 |
0.00825430203177068 Eth
Nonce: 3
|
0.00007245366538263 Eth
Nonce: 4
| 0.00818184836638805 | ||
0xf70da978...8dfA3dbEF | 651.930210035305933206 Eth | 651.938310035305933206 Eth | 0.0081 |
Execution Trace
ETH 0.0081
RelayReceiver.35e93d4a( )
- ETH 0.0081
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);}