ETH Price: $2,597.40 (+0.79%)

Transaction Decoder

Block:
22466659 at May-12-2025 10:38:35 AM +UTC
Transaction Fee:
0.000264550250692728 ETH $0.69
Gas Used:
47,229 Gas / 5.601436632 Gwei

Emitted Events:

579 GagaPepe.Approval( owner=[Sender] 0xa6b9756f95193e2aafe2c8f3323ebb4bf5ea3026, spender=0x7a250d56...659F2488D, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
12.259754659493451482 Eth12.259798418821484084 Eth0.000043759328032602
0xA6B9756F...bf5Ea3026
0.003109731457654384 Eth
Nonce: 215
0.002845181206961656 Eth
Nonce: 216
0.000264550250692728
0xB29Dc170...644C6dCA9

Execution Trace

GagaPepe.approve( spender=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( 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