Transaction Hash:
Block:
17380884 at May-31-2023 07:20:11 PM +UTC
Transaction Fee:
0.004994329291980336 ETH
$12.58
Gas Used:
51,373 Gas / 97.217006832 Gwei
Emitted Events:
116 |
StripToken.Transfer( from=[Sender] 0x39e196123e5e6966c2c6cc1a327f1012941868bf, to=0x000000000000000000000000000000000000dEaD, value=224102513749467500000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x388C818C...7ccB19297
Miner
| (Lido: Execution Layer Rewards Vault) | 123.119343075368841539 Eth | 123.119352322508841539 Eth | 0.00000924714 | |
0x39E19612...2941868BF |
0.007786485826118126 Eth
Nonce: 9
|
0.00279215653413779 Eth
Nonce: 10
| 0.004994329291980336 | ||
0xE9cB6838...8e9853C02 |
Execution Trace
StripToken.transfer( recipient=0x000000000000000000000000000000000000dEaD, amount=224102513749467500000000000 ) => ( True )
transfer[ERC20 (ln:251)]
_transfer[ERC20 (ln:252)]
_beforeTokenTransfer[ERC20 (ln:367)]
Transfer[ERC20 (ln:376)]
_afterTokenTransfer[ERC20 (ln:378)]
_msgSender[ERC20 (ln:252)]
1234567891011121314151617181920212223242526// Sources flattened with hardhat v2.5.0 https://hardhat.org// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v4.2.0// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/*** @dev Interface of the ERC20 standard as defined in the EIP.*/interface IERC20 {/*** @dev Returns the amount of tokens in existence.*/function totalSupply() external view returns (uint256);/*** @dev Returns the amount of tokens owned by `account`.*/function balanceOf(address account) external view returns (uint256);/*** @dev Moves `amount` tokens from the caller's account to `recipient`.** Returns a boolean value indicating whether the operation succeeded.