Transaction Hash:
Block:
19532832 at Mar-28-2024 01:13:35 PM +UTC
Transaction Fee:
0.001820720088280548 ETH
$6.81
Gas Used:
47,229 Gas / 38.550892212 Gwei
Emitted Events:
286 |
GagaPepe.Approval( owner=[Sender] 0x27c9957dd09e23709f32e7624a873b023b600257, spender=0x40aA958d...a374bcD7f, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x27c9957d...23b600257 |
0.052014690615024487 Eth
Nonce: 1890
|
0.050193970526743939 Eth
Nonce: 1891
| 0.001820720088280548 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 13.456087839691474071 Eth | 13.456116649381474071 Eth | 0.00002880969 | |
0xB29Dc170...644C6dCA9 |
Execution Trace
GagaPepe.approve( spender=0x40aA958dd87FC8305b97f2BA922CDdCa374bcD7f, 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;