Transaction Hash:
Block:
21068865 at Oct-29-2024 04:19:59 AM +UTC
Transaction Fee:
0.00022964676086196 ETH
$0.57
Gas Used:
22,410 Gas / 10.247512756 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 7.654802693190734019 Eth | 7.654802739733794099 Eth | 0.00000004654306008 | |
0xC9b5AE6E...d4BC686A0 |
0.00024224356045477 Eth
Nonce: 17
|
0.00001259679959281 Eth
Nonce: 18
| 0.00022964676086196 |
Execution Trace
GagaPepe.transfer( to=0x115e182bd50E309dE5Ec937085f4cC2bbe75b1Bc, amount=1897670247154553736269841637 )
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;