Transaction Hash:
Block:
21894622 at Feb-21-2025 12:10:11 PM +UTC
Transaction Fee:
0.0000218879455923 ETH
$0.06
Gas Used:
32,650 Gas / 0.670381182 Gwei
Emitted Events:
745 |
RelayReceiver.FundsForwardedWithData( data=0x96B66F7ED4B062972CF72745E4B1B4683359B5FA4013A659E9BE1E3F70D8C5FC )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0772f0ad...Ee8B86F0F |
0.000076441648475969 Eth
Nonce: 11
|
0.000007188134883669 Eth
Nonce: 12
| 0.0000692535135923 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 10.615404496079965238 Eth | 10.615404687538879588 Eth | 0.00000019145891435 | |
0xf70da978...8dfA3dbEF | 493.102184256233089075 Eth | 493.102231621801089075 Eth | 0.000047365568 |
Execution Trace
ETH 0.000047365568
RelayReceiver.96b66f7e( )
- ETH 0.000047365568
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);}