Transaction Hash:
Block:
17511942 at Jun-19-2023 06:14:47 AM +UTC
Transaction Fee:
0.000504974029033416 ETH
$2.18
Gas Used:
29,966 Gas / 16.851566076 Gwei
Emitted Events:
67 |
MaskToken.Transfer( from=[Sender] 0x548f27e2c1eb0c90c9c0ef3a4a61a6ae60038f02, to=0x29EC06eab17ad9fd77DCa5FaeAB4Af836F14FBf0, value=2538210000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x388C818C...7ccB19297
Miner
| (Lido: Execution Layer Rewards Vault) | 117.52688891847615541 Eth | 117.52694885047615541 Eth | 0.000059932 | |
0x548f27e2...E60038f02 | (Upbit Dep: 0x548f27e2c1eb0c90C9C0EF3a4A61a6aE60038f02) |
137.534460671997821683 Eth
Nonce: 268
|
137.533955697968788267 Eth
Nonce: 269
| 0.000504974029033416 | |
0x69af81e7...ECE623074 |
Execution Trace
MaskToken.transfer( recipient=0x29EC06eab17ad9fd77DCa5FaeAB4Af836F14FBf0, amount=2538210000000000000000 ) => ( 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.