ETH Price: $3,578.43 (+0.81%)

Transaction Decoder

Block:
19531116 at Mar-28-2024 07:26:59 AM +UTC
Transaction Fee:
0.000956138393902815 ETH $3.42
Gas Used:
46,965 Gas / 20.358530691 Gwei

Emitted Events:

335 GagaPepe.Approval( owner=[Sender] 0x4f5b25adb17e7bd4c48fbedd7bda4444072a14bd, spender=0xe43ca1De...5F11A59F5, value=100000000000000000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
11.840868475641886926 Eth11.840869916683353216 Eth0.00000144104146629
0x4f5B25Ad...4072a14bd
0.007100641821698896 Eth
Nonce: 92
0.006144503427796081 Eth
Nonce: 93
0.000956138393902815
0xB29Dc170...644C6dCA9

Execution Trace

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