Transaction Hash:
Block:
22036508 at Mar-13-2025 07:38:59 AM +UTC
Transaction Fee:
0.000030152770192692 ETH
$0.06
Gas Used:
46,251 Gas / 0.651937692 Gwei
Emitted Events:
411 |
SimpleToken.Approval( owner=[Sender] 0x2457e292ee035a47ffdc58fcd9435686d0f4cfda, spender=0x18740282...9b7C69090, value=395000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2457E292...6D0F4cFda |
0.010520110314163243 Eth
Nonce: 8
|
0.010489957543970551 Eth
Nonce: 9
| 0.000030152770192692 | ||
0x4d224452...b5D594381 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 19.353112349225466058 Eth | 19.353112424050935121 Eth | 0.000000074825469063 |
Execution Trace
SimpleToken.approve( spender=0x1874028262F1F4B2DD1F2700A72Ee8b9b7C69090, amount=395000000000000000000 ) => ( True )
approve[ERC20 (ln:246)]
_approve[ERC20 (ln:247)]
Approval[ERC20 (ln:406)]
_msgSender[ERC20 (ln:247)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.10;import "@openzeppelin/contracts/token/ERC20/ERC20.sol";contract SimpleToken is ERC20 {constructor(string memory name,string memory symbol,uint256 totalSupply_) ERC20(name, symbol) {_mint(msg.sender, totalSupply_);}}// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragma solidity ^0.8.0;/*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {