ETH Price: $2,736.16 (-4.62%)

Transaction Decoder

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 Code
(beaverbuild)
11.315866744062253507 Eth11.315866772911793507 Eth0.00000002884954
0xeBcE387f...a0fABF4Fc
0.000363347499841037 Eth
Nonce: 30
0.000051044269507637 Eth
Nonce: 31
0.0003123032303334
0xf70da978...8dfA3dbEF 300.42873050836532397 Eth300.42903050836532397 Eth0.0003

Execution Trace

ETH 0.0003 RelayReceiver.c108273e( )
  • ETH 0.0003 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