Transaction Hash:
Block:
19532073 at Mar-28-2024 10:39:47 AM +UTC
Transaction Fee:
0.001232922467232729 ETH
$4.72
Gas Used:
47,229 Gas / 26.105199501 Gwei
Emitted Events:
269 |
GagaPepe.Approval( owner=[Sender] 0xe8d6d4505e40500d971d43c2ad2f8cab3dd88737, spender=0x881D4023...dC08D300C, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 20.159762855429448332 Eth | 20.159763372035410841 Eth | 0.000000516605962509 | |
0xB29Dc170...644C6dCA9 | |||||
0xe8d6D450...B3Dd88737 |
0.01 Eth
Nonce: 0
|
0.008767077532767271 Eth
Nonce: 1
| 0.001232922467232729 |
Execution Trace
GagaPepe.approve( spender=0x881D40237659C251811CEC9c364ef91dC08D300C, 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;