Transaction Hash:
Block:
19456312 at Mar-17-2024 06:21:11 PM +UTC
Transaction Fee:
0.00167475554537655 ETH
$4.16
Gas Used:
47,229 Gas / 35.46032195 Gwei
Emitted Events:
129 |
GagaPepe.Approval( owner=[Sender] 0x6e214133eac694f4530d7bb2820659894ad6e925, spender=0x80a64c6D...c1FCd5d9e, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x6e214133...94AD6e925 |
0.22116429593195003 Eth
Nonce: 1336
|
0.21948954038657348 Eth
Nonce: 1337
| 0.00167475554537655 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 9.324571533264321616 Eth | 9.324713220264321616 Eth | 0.000141687 | |
0xB29Dc170...644C6dCA9 |
Execution Trace
GagaPepe.approve( spender=0x80a64c6D7f12C47B7c66c5B4E20E72bc1FCd5d9e, 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;