ETH Price: $3,765.37 (-1.91%)

Transaction Decoder

Block:
22470292 at May-12-2025 10:55:47 PM +UTC
Transaction Fee:
0.00007273399775655 ETH $0.27
Gas Used:
32,650 Gas / 2.227687527 Gwei

Emitted Events:

231 RelayReceiver.FundsForwardedWithData( data=0x456BAA38E8BD3095C70FD8215EF2DE82E12E63781915523022341D136BD85E0D )

Account State Difference:

  Address   Before After State Difference Code
4.793541323851627767 Eth4.793581002133627817 Eth0.00003967828200005
0x2454940D...a97Ca6E75
0.215591907907526389 Eth
Nonce: 128
0.115519173909769839 Eth
Nonce: 129
0.10007273399775655
0xf70da978...8dfA3dbEF
(Relay: Solver)
178.511124694876399147 Eth178.611124694876399147 Eth0.1

Execution Trace

ETH 0.1 RelayReceiver.456baa38( )
  • ETH 0.1 Relay: Solver.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