ETH Price: $2,758.23 (-2.91%)

Transaction Decoder

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 Code
0x6F208c05...7C8a47252
0.00065381390889716 Eth
Nonce: 1
0.00024100512156697 Eth
Nonce: 2
0.00041280878733019
(beaverbuild)
9.028200638421764157 Eth9.028223798672586909 Eth0.000023160250822752
0xf70da978...8dfA3dbEF 431.218034664114541754 Eth431.218299343701871944 Eth0.00026467958733019

Execution Trace

ETH 0.00026467958733019 RelayReceiver.CALL( )
  • ETH 0.00026467958733019 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