Transaction Hash:
Block:
19615556 at Apr-09-2024 03:57:59 AM +UTC
Transaction Fee:
0.000584154834368 ETH
$1.47
Gas Used:
28,000 Gas / 20.862672656 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x430F6F1B...8Bf5dE851 |
0.019690629989625994 Eth
Nonce: 24
|
0.019106475155257994 Eth
Nonce: 25
| 0.000584154834368 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 13.142142092483274036 Eth | 13.142149838908114036 Eth | 0.00000774642484 |
Execution Trace
GagaPepe.transfer( to=0x000000000000000000000000000000000000dEaD, amount=0 )
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// File: @openzeppelin/contracts@4.9.2/utils/Counters.sol// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)pragma solidity ^0.8.0;/*** @title Counters* @author Matt Condon (@shrugs)* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number* of elements in a mapping, issuing ERC721 ids, or counting request ids.** Include with `using Counters for Counters.Counter;`*/library Counters {struct Counter {// This variable should never be directly accessed by users of the library: interactions must be restricted to// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add// this feature: see https://github.com/ethereum/solidity/issues/4637uint256 _value; // default: 0}function current(Counter storage counter) internal view returns (uint256) {return counter._value;