Transaction Hash:
Block:
22337382 at Apr-24-2025 07:28:11 AM +UTC
Transaction Fee:
0.000033097959850032 ETH
$0.12
Gas Used:
47,157 Gas / 0.701867376 Gwei
Emitted Events:
623 |
GagaPepe.Approval( owner=[Sender] 0x656a0579250555053061254f75e43bcc8ab44a47, spender=0x00000000...072C22734, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 11.095089025210472204 Eth | 11.095092750613472204 Eth | 0.000003725403 | |
0x656A0579...C8AB44A47 |
0.042624089424359345 Eth
Nonce: 98
|
0.042590991464509313 Eth
Nonce: 99
| 0.000033097959850032 | ||
0xB29Dc170...644C6dCA9 |
Execution Trace
GagaPepe.approve( spender=0x0000000000001fF3684f28c67538d4D072C22734, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
1234567891011121314151617181920212223242526// 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/4637uint256 _value; // default: 0}function current(Counter storage counter) internal view returns (uint256) {return counter._value;