Transaction Hash:
Block:
22655161 at Jun-07-2025 08:41:23 PM +UTC
Transaction Fee:
0.000034766 ETH
$0.10
Gas Used:
34,766 Gas / 1 Gwei
Emitted Events:
239 |
MaskToken.Transfer( from=[Sender] 0x06354ce08f96bc961b9f5110d513e1bedf256ce6, to=0x6C0be4A12444BCDE991e64F17ba613E7Cb98c460, value=3149000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x06354ce0...EdF256Ce6 | (Upbit Dep: 0x06354ce08f96BC961b9f5110D513e1bEdF256Ce6) |
11.854966027208545655 Eth
Nonce: 14222
|
11.854931261208545655 Eth
Nonce: 14223
| 0.000034766 | |
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 11.81628472557825412 Eth | 11.81630372163860636 Eth | 0.00001899606035224 | |
0x69af81e7...ECE623074 |
Execution Trace
MaskToken.transfer( recipient=0x6C0be4A12444BCDE991e64F17ba613E7Cb98c460, amount=3149000000000000000000 ) => ( 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.