Transaction Hash:
Block:
21907484 at Feb-23-2025 07:18:23 AM +UTC
Transaction Fee:
0.000056055804131025 ETH
$0.14
Gas Used:
46,925 Gas / 1.194582933 Gwei
Emitted Events:
319 |
BurnableERC20.Transfer( from=[Sender] 0x3e108bcf5ea48811d58946f1fe83e6b8b582e6e6, to=0x971A82C4821b64fdE0cbB37cD525ED3a755B3734, value=5579333574689580219469 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x018fb5Af...4143De7a0 | |||||
0x3e108bcF...8B582e6E6 |
0.003440900397988814 Eth
Nonce: 1177
|
0.003384844593857789 Eth
Nonce: 1178
| 0.000056055804131025 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 6.993205927016062977 Eth | 6.993229389516062977 Eth | 0.0000234625 |
Execution Trace
BurnableERC20.transfer( recipient=0x971A82C4821b64fdE0cbB37cD525ED3a755B3734, amount=5579333574689580219469 ) => ( True )
transfer[ERC20 (ln:531)]
_transfer[ERC20 (ln:532)]
_beforeTokenTransfer[ERC20 (ln:627)]
sub[ERC20 (ln:629)]
add[ERC20 (ln:630)]
Transfer[ERC20 (ln:631)]
_msgSender[ERC20 (ln:532)]
1234567891011121314151617181920212223242526// File: @openzeppelin/contracts/GSN/Context.sol// SPDX-License-Identifier: MITpragma solidity ^0.7.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 GSN 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 {function _msgSender() internal view virtual returns (address payable) {return msg.sender;}function _msgData() internal view virtual returns (bytes memory) {this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691return msg.data;}}