Transaction Hash:
Block:
19455033 at Mar-17-2024 02:03:47 PM +UTC
Transaction Fee:
0.001409768572588833 ETH
$3.59
Gas Used:
47,001 Gas / 29.994437833 Gwei
Emitted Events:
114 |
GagaPepe.Approval( owner=[Sender] 0xac6810349feaaff46586ca4cc2025f577e2e8b79, spender=0x7a250d56...659F2488D, value=303462994279258005279636307332 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 18.053111749570884458 Eth | 18.053158750570884458 Eth | 0.000047001 | |
0xAc681034...77e2E8B79 |
0.220955962934642085 Eth
Nonce: 240
|
0.219546194362053252 Eth
Nonce: 241
| 0.001409768572588833 | ||
0xB29Dc170...644C6dCA9 |
Execution Trace
GagaPepe.approve( spender=0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, amount=303462994279258005279636307332 ) => ( 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;