ETH Price: $2,695.91 (+6.29%)

Transaction Decoder

Block:
21009140 at Oct-20-2024 08:20:47 PM +UTC
Transaction Fee:
0.000233926997992896 ETH $0.63
Gas Used:
29,697 Gas / 7.877125568 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x06FD4bA7...Caa99E3B0
(Binance Dep: 0x06FD4bA7973a0d39a91734bbc35bC2bCaa99E3B0)
0.026218687775630325 Eth
Nonce: 15806
0.025984760777637429 Eth
Nonce: 15807
0.000233926997992896
(Titan Builder)
5.098113108920885903 Eth5.098113907263169022 Eth0.000000798342283119
0x4d224452...b5D594381

Execution Trace

SimpleToken.transfer( recipient=0x28C6c06298d514Db089934071355E5743bf21d60, amount=5940100000000000000000 ) => ( True )
transfer[ERC20 (ln:229)]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma 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 {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX