Transaction Hash:
Block:
22564637 at May-26-2025 04:37:47 AM +UTC
Transaction Fee:
0.0000123032303334 ETH
$0.03
Gas Used:
32,650 Gas / 0.376821756 Gwei
Emitted Events:
441 |
RelayReceiver.FundsForwardedWithData( data=0xC108273EFD19A8D87AA386E6C711C1D359494DE0EF14E9C593650C2DAEA24FE7 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 11.315866744062253507 Eth | 11.315866772911793507 Eth | 0.00000002884954 | |
0xeBcE387f...a0fABF4Fc |
0.000363347499841037 Eth
Nonce: 30
|
0.000051044269507637 Eth
Nonce: 31
| 0.0003123032303334 | ||
0xf70da978...8dfA3dbEF | 300.42873050836532397 Eth | 300.42903050836532397 Eth | 0.0003 |
Execution Trace
ETH 0.0003
RelayReceiver.c108273e( )
- ETH 0.0003
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);}