ETH Price: $2,527.41 (-2.11%)

Transaction Decoder

Block:
19630540 at Apr-11-2024 06:17:23 AM +UTC
Transaction Fee:
0.000280085614221 ETH $0.71
Gas Used:
21,000 Gas / 13.337410201 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x76493153...6d818385E
0.001415751244797305 Eth
Nonce: 8
0.001135665630576305 Eth
Nonce: 9
0.000280085614221
(beaverbuild)
5.787564838393335009 Eth5.787575338393335009 Eth0.0000105

Execution Trace

ETH 0.0007 GagaPepe.CALL( )
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
// 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/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX