Transaction Hash:
Block:
19527375 at Mar-27-2024 06:25:47 PM +UTC
Transaction Fee:
0.002697557322583917 ETH
$10.29
Gas Used:
47,169 Gas / 57.189198893 Gwei
Emitted Events:
307 |
GagaPepe.Approval( owner=[Sender] 0xadae9dbf15f941e21dd0ee3e30be4852868af787, spender=0x00000000...43aC78BA3, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 8.350996747501435509 Eth | 8.350996794670435509 Eth | 0.000000047169 | |
0xadae9Dbf...2868aF787 |
0.006252680441683963 Eth
Nonce: 488
|
0.003555123119100046 Eth
Nonce: 489
| 0.002697557322583917 | ||
0xB29Dc170...644C6dCA9 |
Execution Trace
GagaPepe.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, 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;