Transaction Hash:
Block:
22379882 at Apr-30-2025 05:49:47 AM +UTC
Transaction Fee:
0.00001965230033355 ETH
$0.05
Gas Used:
52,209 Gas / 0.37641595 Gwei
Emitted Events:
197 |
GagaPepe.Transfer( from=[Sender] 0xa1b2a2dfe6300d3f2174e0a4f073fc0f78f5169f, to=0x38D7bE8724127602f86BD0E1bB75f518777A9e7b, value=44648903493900000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 39.708560064791050484 Eth | 39.708562231971291038 Eth | 0.000002167180240554 | |
0xa1B2A2dF...F78F5169F | (Biconomy.com 1) |
27.958196297708032086 Eth
Nonce: 9477
|
27.958176645407698536 Eth
Nonce: 9478
| 0.00001965230033355 | |
0xB29Dc170...644C6dCA9 |
Execution Trace
GagaPepe.transfer( to=0x38D7bE8724127602f86BD0E1bB75f518777A9e7b, amount=44648903493900000000000000000 ) => ( 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;