Transaction Hash:
Block:
22318452 at Apr-21-2025 04:04:11 PM +UTC
Transaction Fee:
0.00004686658923765 ETH
$0.13
Gas Used:
30,345 Gas / 1.54445837 Gwei
Emitted Events:
663 |
GagaPepe.Transfer( from=[Sender] 0x7741ddc341fe0c909e2fb46ed117cbd4c0c1e075, to=0x85B21291AD5D1515cEB855d64325A90aaec272ea, value=379191390551149961289843905529 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 7.144986700186221851 Eth | 7.145006606783180666 Eth | 0.000019906596958815 | |
0x7741ddc3...4C0c1e075 |
0.049386933178416727 Eth
Nonce: 327
|
0.049340066589179077 Eth
Nonce: 328
| 0.00004686658923765 | ||
0xB29Dc170...644C6dCA9 |
Execution Trace
GagaPepe.transfer( to=0x85B21291AD5D1515cEB855d64325A90aaec272ea, amount=379191390551149961289843905529 ) => ( 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;