Transaction Hash:
Block:
13578103 at Nov-08-2021 09:20:37 PM +UTC
Transaction Fee:
0.005191632066963335 ETH
$24.68
Gas Used:
34,465 Gas / 150.634906919 Gwei
Emitted Events:
254 |
StripToken.Transfer( from=[Sender] 0xa2afb0a75740748f52053ea3462b790638374ee0, to=0x1dEc247257E2f4546038954fe9828efebaAc6cAA, value=100000000000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4069e799...03e8B837d
Miner
| (666 Mining Pool) | 131.337098100702133746 Eth | 131.337149798202133746 Eth | 0.0000516975 | |
0xA2afB0a7...638374eE0 |
0.66146924744595015 Eth
Nonce: 204
|
0.656277615378986815 Eth
Nonce: 205
| 0.005191632066963335 | ||
0xE9cB6838...8e9853C02 |
Execution Trace
StripToken.transfer( recipient=0x1dEc247257E2f4546038954fe9828efebaAc6cAA, amount=100000000000000000000000000 ) => ( 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.