ETH Price: $2,527.41 (-2.11%)

Transaction Decoder

Block:
22555725 at May-24-2025 10:37:59 PM +UTC
Transaction Fee:
0.00001612309204085 ETH $0.04
Gas Used:
32,650 Gas / 0.493815989 Gwei

Emitted Events:

441 RelayReceiver.FundsForwardedWithData( data=0xDBEC4DD8040454621EE6B888A3BAC66B27E73478D5FBF74E9BC24F7278D6EDEB )

Account State Difference:

  Address   Before After State Difference Code
0x5A799829...721D618b9
0.001160774637656926 Eth
Nonce: 56
0.000434765468867676 Eth
Nonce: 57
0.00072600916878925
(beaverbuild)
10.172049341266464582 Eth10.172050973766464582 Eth0.0000016325
0xf70da978...8dfA3dbEF 477.50752995286014384 Eth477.50823983893689224 Eth0.0007098860767484

Execution Trace

ETH 0.0007098860767484 RelayReceiver.dbec4dd8( )
  • ETH 0.0007098860767484 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