ETH Price: $2,575.38 (+1.74%)

Transaction Decoder

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 Code
0x0772f0ad...Ee8B86F0F
0.000076441648475969 Eth
Nonce: 11
0.000007188134883669 Eth
Nonce: 12
0.0000692535135923
(beaverbuild)
10.615404496079965238 Eth10.615404687538879588 Eth0.00000019145891435
0xf70da978...8dfA3dbEF 493.102184256233089075 Eth493.102231621801089075 Eth0.000047365568

Execution Trace

ETH 0.000047365568 RelayReceiver.96b66f7e( )
  • ETH 0.000047365568 0xf70da97812cb96acdf810712aa562db8dfa3dbef.CALL( )
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    // SPDX-License-Identifier: MIT
    pragma 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);
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX