ETH Price: $2,834.13 (+2.87%)

Transaction Decoder

Block:
22318452 at Apr-21-2025 04:04:11 PM +UTC
Transaction Fee:
0.00004686658923765 ETH $0.13
Gas Used:
30,345 Gas / 1.54445837 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
7.144986700186221851 Eth7.145006606783180666 Eth0.000019906596958815
0x7741ddc3...4C0c1e075
0.049386933178416727 Eth
Nonce: 327
0.049340066589179077 Eth
Nonce: 328
0.00004686658923765
0xB29Dc170...644C6dCA9

Execution Trace

GagaPepe.transfer( to=0x85B21291AD5D1515cEB855d64325A90aaec272ea, amount=379191390551149961289843905529 ) => ( True )
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