Transaction Hash:
Block:
19631317 at Apr-11-2024 08:53:59 AM +UTC
Transaction Fee:
0.000830821933788957 ETH
$2.18
Gas Used:
47,421 Gas / 17.520126817 Gwei
Emitted Events:
285 |
GagaPepe.Transfer( from=[Sender] 0x1dcfff86aaffcfeaafb0da0e6135587d4d713c27, to=0x180d8C00EA5d8AD2103deFaf104f7C4Ff79e3BfA, value=26921414981077385989550301078 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1DcFfF86...d4d713c27 |
0.002370849282878065 Eth
Nonce: 2
|
0.001540027349089108 Eth
Nonce: 3
| 0.000830821933788957 | ||
0x77777A6C...0F660eC94
Miner
| (MEV Builder: 0x777...C94) | 2.749732385447473133 Eth | 2.749734421548818675 Eth | 0.000002036101345542 | |
0xB29Dc170...644C6dCA9 |
Execution Trace
GagaPepe.transfer( to=0x180d8C00EA5d8AD2103deFaf104f7C4Ff79e3BfA, amount=26921414981077385989550301078 ) => ( 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;