Transaction Hash:
Block:
22338515 at Apr-24-2025 11:16:59 AM +UTC
Transaction Fee:
0.00002929395344496 ETH
$0.07
Gas Used:
47,445 Gas / 0.617429728 Gwei
Emitted Events:
1209 |
GagaPepe.Transfer( from=[Sender] 0x87ff5d38f275f58d89e43848ea3cfa978c6eff5b, to=0x43AdB24fA1444De407dA5cCa3d58acEa3d1B812f, value=3449369782481838419613140966662 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x87fF5D38...78C6Eff5B |
0.012481519272476487 Eth
Nonce: 450
|
0.012452225319031527 Eth
Nonce: 451
| 0.00002929395344496 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 10.819314465970621482 Eth | 10.819314512798836482 Eth | 0.000000046828215 | |
0xB29Dc170...644C6dCA9 |
Execution Trace
GagaPepe.transfer( to=0x43AdB24fA1444De407dA5cCa3d58acEa3d1B812f, amount=3449369782481838419613140966662 ) => ( 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;