Transaction Hash:
Block:
21109499 at Nov-03-2024 08:27:35 PM +UTC
Transaction Fee:
0.0001481292 ETH
$0.41
Gas Used:
32,202 Gas / 4.6 Gwei
Emitted Events:
307 |
RelayReceiver.FundsForwardedWithData( data=0x03F4FCE9 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x6F208c05...7C8a47252 |
0.00065381390889716 Eth
Nonce: 1
|
0.00024100512156697 Eth
Nonce: 2
| 0.00041280878733019 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 9.028200638421764157 Eth | 9.028223798672586909 Eth | 0.000023160250822752 | |
0xf70da978...8dfA3dbEF | 431.218034664114541754 Eth | 431.218299343701871944 Eth | 0.00026467958733019 |
Execution Trace
ETH 0.00026467958733019
RelayReceiver.CALL( )
- ETH 0.00026467958733019
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);}