Transaction Hash:
Block:
22555718 at May-24-2025 10:36:35 PM +UTC
Transaction Fee:
0.000028175663168928 ETH
$0.08
Gas Used:
32,976 Gas / 0.854429378 Gwei
Emitted Events:
455 |
RelayReceiver.FundsForwardedWithData( data=0xD296965AD9692E0D2FF3D4B401FE2B4009ED728E78FDFDA45D36BFDE9A3DE979865D8597 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 23.997486842042412896 Eth | 23.997503330042412896 Eth | 0.000016488 | |
0x4Ef68Daa...801905c57 |
0.010688095463036882 Eth
Nonce: 33
|
0.008659919799867954 Eth
Nonce: 34
| 0.002028175663168928 | ||
0xf70da978...8dfA3dbEF | 477.507580914337610303 Eth | 477.509580914337610303 Eth | 0.002 |
Execution Trace
ETH 0.002
RelayReceiver.d296965a( )
- ETH 0.002
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);}