Transaction Hash:
Block:
19528329 at Mar-27-2024 09:55:11 PM +UTC
Transaction Fee:
0.002111572898800647 ETH
$7.95
Gas Used:
46,941 Gas / 44.983551667 Gwei
Emitted Events:
363 |
GagaPepe.Approval( owner=[Sender] 0x8dcd0adf4571b13aac0cf0ccd0d1a0de937a92da, spender=0x00000000...43aC78BA3, value=709467552971117167233256820279 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x8DCD0AdF...E937A92da |
0.029930374850409111 Eth
Nonce: 571
|
0.027818801951608464 Eth
Nonce: 572
| 0.002111572898800647 | ||
0xB29Dc170...644C6dCA9 | |||||
0xeBec795c...8F299cAcf
Miner
| (Fee Recipient: 0xeBe...Acf) | 23,118.727848443542628557 Eth | 23,118.727848489075398557 Eth | 0.00000004553277 |
Execution Trace
GagaPepe.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, amount=709467552971117167233256820279 ) => ( 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;