ETH Price: $2,519.79 (-4.33%)
Gas: 5.36 Gwei

Transaction Decoder

Block:
22470309 at May-12-2025 10:59:11 PM +UTC
Transaction Fee:
0.00003286824830465 ETH $0.08
Gas Used:
32,650 Gas / 1.006684481 Gwei

Emitted Events:

533 RelayReceiver.FundsForwardedWithData( data=0x6E55FF8F0464558413A52C37F548D271BD62C2C403815F7030DB83B461A0A63E )

Account State Difference:

  Address   Before After State Difference Code
0x1870Fd46...8bb3E0Fb5
0.013196314123167663 Eth
Nonce: 56
0.000163445874863013 Eth
Nonce: 57
0.01303286824830465
(beaverbuild)
10.412059447605987257 Eth10.412059469677387257 Eth0.0000000220714
0xf70da978...8dfA3dbEF 178.683832579626080021 Eth178.696832579626080021 Eth0.013

Execution Trace

ETH 0.013 RelayReceiver.6e55ff8f( )
  • ETH 0.013 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