Transaction Hash:
Block:
22561345 at May-25-2025 05:32:23 PM +UTC
Transaction Fee:
0.00002101942917845 ETH
$0.06
Gas Used:
32,650 Gas / 0.643780373 Gwei
Emitted Events:
603 |
RelayReceiver.FundsForwardedWithData( data=0xF639DFCA0115145558EA689BF3327C578784F023F55068872E71BC614F59F203 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 9.956520239590962179 Eth | 9.956521872090962179 Eth | 0.0000016325 | |
0xE3A3a876...2c56511f3 |
0.001564409196776867 Eth
Nonce: 1
|
0.00054166282522155 Eth
Nonce: 2
| 0.001022746371555317 | ||
0xf70da978...8dfA3dbEF | 387.195171421048763173 Eth | 387.19617314799114004 Eth | 0.001001726942376867 |
Execution Trace
ETH 0.001001726942376867
RelayReceiver.f639dfca( )
- ETH 0.001001726942376867
0xf70da97812cb96acdf810712aa562db8dfa3dbef.CALL( )
// 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); } function forward(bytes calldata data) external payable { send(SOLVER, msg.value); emit FundsForwardedWithData(data); } // --- Restricted methods --- function makeCalls(Call[] calldata calls) external payable { if (msg.sender != SOLVER) { revert Unauthorized(); } unchecked { uint256 length = calls.length; for (uint256 i; i < length; i++) { Call memory c = calls[i]; (bool success, ) = c.to.call{value: c.value}(c.data); if (!success) { revert CallFailed(); } } } } // --- Internal methods --- function send(address to, uint256 value) internal { bool success; assembly { // Save gas by avoiding copying the return data to memory. // Provide at most 100k gas to the internal call, which is // more than enough to cover common use-cases of logic for // receiving native tokens (eg. SCW payable fallbacks). success := call(100000, to, value, 0, 0, 0, 0) } if (!success) { revert NativeTransferFailed(); } } }