Transaction Hash:
Block:
22034524 at Mar-13-2025 12:59:59 AM +UTC
Transaction Fee:
0.000030993662865792 ETH
$0.06
Gas Used:
51,648 Gas / 0.600094154 Gwei
Emitted Events:
459 |
BurnableERC20.Transfer( from=[Sender] 0xdef6ecf5d2af55002bb63db8e0cedcc04888b830, to=0x55fb3d5DfE75C8A75301D6E65C6eAb6AFA822bB5, value=4000000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x059738E3...00F4a7847 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 6.040047172094810603 Eth | 6.040052457286711787 Eth | 0.000005285191901184 | |
0xDef6Ecf5...04888b830 |
0.034437637986891052 Eth
Nonce: 398
|
0.03440664432402526 Eth
Nonce: 399
| 0.000030993662865792 |
Execution Trace
BurnableERC20.transfer( to=0x55fb3d5DfE75C8A75301D6E65C6eAb6AFA822bB5, value=4000000000000000000000 ) => ( True )
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// File @openzeppelin/contracts/interfaces/draft-IERC6093.sol@v5.0.2// Original license: SPDX_License_Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)pragma solidity ^0.8.20;/*** @dev Standard ERC20 Errors* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.*/interface IERC20Errors {/*** @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.* @param sender Address whose tokens are being transferred.* @param balance Current balance for the interacting account.* @param needed Minimum amount required to perform a transfer.*/error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);/*** @dev Indicates a failure with the token `sender`. Used in transfers.* @param sender Address whose tokens are being transferred.