Transaction Hash:
Block:
22555763 at May-24-2025 10:45:47 PM +UTC
Transaction Fee:
0.000018557483207904 ETH
$0.05
Gas Used:
32,976 Gas / 0.562757254 Gwei
Emitted Events:
473 |
RelayReceiver.FundsForwardedWithData( data=0x1A4982EFFA0B9369458072E9EFCC32FACE921F99BC5310744FE1480E93B5AA08865D8597 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 24.121221400796542195 Eth | 24.121224698396542195 Eth | 0.0000032976 | |
0xEEE191Aa...7BE31247F |
0.011081004831336094 Eth
Nonce: 407
|
0.001342472737798004 Eth
Nonce: 408
| 0.00973853209353809 | ||
0xf70da978...8dfA3dbEF | 478.915558371768866974 Eth | 478.92527834637919716 Eth | 0.009719974610330186 |
Execution Trace
ETH 0.009719974610330186
RelayReceiver.1a4982ef( )
- ETH 0.009719974610330186
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);}