Transaction Hash:
Block:
19427879 at Mar-13-2024 06:19:47 PM +UTC
Transaction Fee:
0.002935018889328994 ETH
$13.14
Gas Used:
51,577 Gas / 56.905575922 Gwei
Emitted Events:
542 |
StripToken.Transfer( from=[Sender] 0xce77f6424ec37a58639021cfbb326087d82893ef, to=0xfa38d03a8Fe6F30298E0BC1757E70349Ccfc01A3, value=10000000000000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 7.229098599005695293 Eth | 7.229099732091782318 Eth | 0.000001133086087025 | |
0xcE77F642...7D82893eF |
0.006894568554835256 Eth
Nonce: 5
|
0.003959549665506262 Eth
Nonce: 6
| 0.002935018889328994 | ||
0xE9cB6838...8e9853C02 |
Execution Trace
StripToken.transfer( recipient=0xfa38d03a8Fe6F30298E0BC1757E70349Ccfc01A3, amount=10000000000000000000000000000 ) => ( 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.