ETH Price: $4,277.02 (+6.46%)

Transaction Decoder

Block:
15186610 at Jul-21-2022 03:06:47 PM +UTC
Transaction Fee:
0.007750022769480747 ETH $33.15
Gas Used:
102,711 Gas / 75.454652077 Gwei

Account State Difference:

  Address   Before After State Difference Code
0x3BF0C2B3...36876809A
0x815428DD...93e6ffC74
0.048024559833745925 Eth
Nonce: 27
0.040274537064265178 Eth
Nonce: 28
0.007750022769480747
(Ethermine)
761.951510341371694811 Eth761.951664407871694811 Eth0.0001540665

Execution Trace

BoredOddities.mint( numberOfTokens=10 )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "./ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract BoredOddities is ERC721A, Ownable {
uint256 public maxSupply = 1000;
uint256 public maxPerWallet = 10;
uint256 public maxPerTx = 10;
uint256 public _price = 0 ether;
bool public activated;
string public unrevealedTokenURI = "ipfs://QmQYupndaUsxbKpucWHBHmF56hoPaHnBVGS6VCvwcGHU9Z";
string public baseURI = "";
mapping(uint256 => string) private _tokenURIs;
address private _ownerWallet = 0x49D3536aCD2B2E26B2354A232cDf682D32e19F85;
constructor(
string memory name,
string memory symbol,
address ownerWallet
) ERC721A(name, symbol) {
_ownerWallet = ownerWallet;
}
//// OVERIDES
function tokenURI(uint256 tokenId)
public
view
override
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX