Transaction Hash:
Block:
20154255 at Jun-23-2024 12:01:23 PM +UTC
Transaction Fee:
0.000064912589918874 ETH
$0.13
Gas Used:
32,202 Gas / 2.015793737 Gwei
Emitted Events:
| 143 |
RelayReceiver.FundsForwardedWithData( data=0x0198BEE6 )
|
Account State Difference:
| Address | Before | After | State Difference | ||
|---|---|---|---|---|---|
|
0x1f9090aa...8e676c326
Miner
| 4.803797917192268089 Eth | 4.803799527292268089 Eth | 0.0000016101 | ||
| 0x8Bf4D02D...eEd5dcC8D |
0.00032391596208396 Eth
Nonce: 3
|
0.000062594612538126 Eth
Nonce: 4
| 0.000261321349545834 | ||
| 0xf70da978...8dfA3dbEF | (Relay: Solver) | 132.756834275209120594 Eth | 132.757030683968747554 Eth | 0.00019640875962696 |
Execution Trace
ETH 0.00019640875962696
RelayReceiver.CALL( )
- ETH 0.00019640875962696
Relay: Solver.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();
}
}
}