Transaction Hash:
Block:
22470292 at May-12-2025 10:55:47 PM +UTC
Transaction Fee:
0.00007273399775655 ETH
$0.27
Gas Used:
32,650 Gas / 2.227687527 Gwei
Emitted Events:
231 |
RelayReceiver.FundsForwardedWithData( data=0x456BAA38E8BD3095C70FD8215EF2DE82E12E63781915523022341D136BD85E0D )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 4.793541323851627767 Eth | 4.793581002133627817 Eth | 0.00003967828200005 | ||
0x2454940D...a97Ca6E75 |
0.215591907907526389 Eth
Nonce: 128
|
0.115519173909769839 Eth
Nonce: 129
| 0.10007273399775655 | ||
0xf70da978...8dfA3dbEF | (Relay: Solver) | 178.511124694876399147 Eth | 178.611124694876399147 Eth | 0.1 |
Execution Trace
ETH 0.1
RelayReceiver.456baa38( )
- ETH 0.1
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);}