Transaction Hash:
Block:
13625213 at Nov-16-2021 07:12:20 AM +UTC
Transaction Fee:
0.004057708900518283 ETH
$12.21
Gas Used:
34,453 Gas / 117.775198111 Gwei
Emitted Events:
41 |
StripToken.Transfer( from=[Sender] 0x20f76052e8fcade9ac334f10439e9b2b35cfc51a, to=0x66685951A553ca5959f16D00Fa02CC6744cCF742, value=500000000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x20f76052...b35cFC51A |
0.013986869645760891 Eth
Nonce: 1
|
0.009929160745242608 Eth
Nonce: 2
| 0.004057708900518283 | ||
0x829BD824...93333A830
Miner
| (F2Pool Old) | 2,085.430281158531703176 Eth | 2,085.430347997351703176 Eth | 0.00006683882 | |
0xE9cB6838...8e9853C02 |
Execution Trace
StripToken.transfer( recipient=0x66685951A553ca5959f16D00Fa02CC6744cCF742, amount=500000000000000000000000 ) => ( 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.