ETH Price: $3,018.32 (+1.96%)

Transaction Decoder

Block:
19532227 at Mar-28-2024 11:11:11 AM +UTC
Transaction Fee:
0.001641041620532595 ETH $4.95
Gas Used:
47,169 Gas / 34.790680755 Gwei

Emitted Events:

195 GagaPepe.Approval( owner=[Sender] 0x033f3421e1e88063d07f1f5473c31f3b96b04a0c, spender=0x00000000...43aC78BA3, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x033f3421...b96B04A0C
0.094659052078271938 Eth
Nonce: 147
0.093018010457739343 Eth
Nonce: 148
0.001641041620532595
(beaverbuild)
7.013983619873661436 Eth7.013986960543795261 Eth0.000003340670133825
0xB29Dc170...644C6dCA9

Execution Trace

GagaPepe.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, 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