Transaction Hash:
Block:
19531916 at Mar-28-2024 10:07:47 AM +UTC
Transaction Fee:
0.001421198255565558 ETH
$4.43
Gas Used:
46,953 Gas / 30.268529286 Gwei
Emitted Events:
238 |
GagaPepe.Approval( owner=[Sender] 0x32cdc473d3ce4a8d462f40ad486caa34601d694b, spender=0xDef1C0de...027b25EfF, value=50000000000000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x32CdC473...4601d694B |
0.015456185576056428 Eth
Nonce: 123
|
0.01403498732049087 Eth
Nonce: 124
| 0.001421198255565558 | ||
0x43670D6f...A39B01e34
Miner
| (Fee Recipient: 0x4367...e34) | 61.324222035429692969 Eth | 61.324225569675908969 Eth | 0.000003534246216 | |
0xB29Dc170...644C6dCA9 |
Execution Trace
GagaPepe.approve( spender=0xDef1C0ded9bec7F1a1670819833240f027b25EfF, amount=50000000000000000000000000000 ) => ( 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;