Transaction Hash:
Block:
21810143 at Feb-09-2025 04:26:11 PM +UTC
Transaction Fee:
0.00006378516142535 ETH
$0.19
Gas Used:
32,650 Gas / 1.953603719 Gwei
Emitted Events:
397 |
RelayReceiver.FundsForwardedWithData( data=0xCE05AD49E6D27498311CB94834F6F0BB5212CF83E14FE14E58CAC859ABDC457F )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 7.659338838698277344 Eth | 7.659373780009128444 Eth | 0.0000349413108511 | |
0x9f7EA7FE...e03Defd05 |
0.0017610192853505 Eth
Nonce: 1
|
0.00159723412392515 Eth
Nonce: 2
| 0.00016378516142535 | ||
0xf70da978...8dfA3dbEF | (Relay: Solver) | 576.469381243500604013 Eth | 576.469481243500604013 Eth | 0.0001 |
Execution Trace
ETH 0.0001
RelayReceiver.ce05ad49( )
- ETH 0.0001
Relay: Solver.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);}