Transaction Hash:
Block:
17478554 at Jun-14-2023 01:44:11 PM +UTC
Transaction Fee:
0.000614583481789966 ETH
$1.83
Gas Used:
29,966 Gas / 20.509360001 Gwei
Emitted Events:
101 |
MaskToken.Transfer( from=[Sender] 0x548f27e2c1eb0c90c9c0ef3a4a61a6ae60038f02, to=0xAfD2fEc076c9065fB996f18329F34c80793E8A64, value=2236130000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x548f27e2...E60038f02 | (Upbit Dep: 0x548f27e2c1eb0c90C9C0EF3a4A61a6aE60038f02) |
28.814749210305674998 Eth
Nonce: 160
|
28.814134626823885032 Eth
Nonce: 161
| 0.000614583481789966 | |
0x690B9A9E...Db4FaC990
Miner
| (builder0x69) | 1.89528929040500625 Eth | 1.89534922240500625 Eth | 0.000059932 | |
0x69af81e7...ECE623074 |
Execution Trace
MaskToken.transfer( recipient=0xAfD2fEc076c9065fB996f18329F34c80793E8A64, amount=2236130000000000000000 ) => ( True )
transfer[ERC20 (ln:440)]
_transfer[ERC20 (ln:441)]
_beforeTokenTransfer[ERC20 (ln:537)]
sub[ERC20 (ln:539)]
add[ERC20 (ln:540)]
Transfer[ERC20 (ln:541)]
_msgSender[ERC20 (ln:441)]
1234567891011121314151617181920212223242526// File: @openzeppelin/contracts/token/ERC20/IERC20.sol// SPDX-License-Identifier: MITpragma solidity >=0.6.0 <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.** Emits a {Transfer} event.