Transaction Hash:
Block:
18124150 at Sep-13-2023 01:35:35 AM +UTC
Transaction Fee:
0.0004277215040784 ETH
$0.69
Gas Used:
33,600 Gas / 12.729806669 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x199D5ED7...6e95B253F
Miner
| (bloXroute: Regulated Builder) | 0.062765009825385291 Eth | 0.062955096044538891 Eth | 0.0001900862191536 | |
0x1C727a55...47cE6de5d | (Uphold) | 519.502958963600386411 Eth | 521.069934636074636015 Eth | 1.566975672474249604 | |
0x8bfFE17a...9af831C96 |
2.876412768945007016 Eth
Nonce: 44
|
1.309009374966679012 Eth
Nonce: 45
| 1.567403393978328004 |
Execution Trace
ETH 1.566975672474249604
ForkSweeper.redirect( ethAddress=0x1C727a55eA3c11B0ab7D3a361Fe0F3C47cE6de5d, etcAddress=0xf83CdF70B46512D3b49c24377c5fDb75413108bF )
- ETH 1.566975672474249604
Uphold.CALL( )
redirect[ForkSweeper (ln:15)]
transfer[ForkSweeper (ln:17)]
transfer[ForkSweeper (ln:22)]
pragma solidity ^0.4.25; // Updated for compiler compatibility. contract AmIOnTheFork { function forked() public constant returns(bool); } contract ForkSweeper { bool public isForked; constructor() public { isForked = AmIOnTheFork(0x2BD2326c993DFaeF84f696526064FF22eba5b362).forked(); } function redirect(address ethAddress, address etcAddress) public payable { if (isForked) { ethAddress.transfer(msg.value); return; } etcAddress.transfer(msg.value); return; } }