Transaction Hash:
Block:
22635338 at Jun-05-2025 02:07:47 AM +UTC
Transaction Fee:
0.0000740768 ETH
$0.35
Gas Used:
46,298 Gas / 1.6 Gwei
Emitted Events:
429 |
MaskToken.Approval( owner=[Sender] 0x1d5b44ee6f2b2e1c378da880e667df8573285189, spender=0x6131B5fa...8b66337b5, value=96410700000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1d5b44EE...573285189 |
0.009742991266642995 Eth
Nonce: 2
|
0.009668914466642995 Eth
Nonce: 3
| 0.0000740768 | ||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 14.803504899506888076 Eth | 14.803543486920371156 Eth | 0.00003858741348308 | |
0x69af81e7...ECE623074 |
Execution Trace
MaskToken.approve( spender=0x6131B5fae19EA4f9D964eAc0408E4408b66337b5, amount=96410700000000000000 ) => ( True )
approve[ERC20 (ln:459)]
_approve[ERC20 (ln:460)]
Approval[ERC20 (ln:602)]
_msgSender[ERC20 (ln:460)]
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.