Transaction Hash:
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
Emitted Events:
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3BF0C2B3...36876809A | |||||
0x815428DD...93e6ffC74 |
0.048024559833745925 Eth
Nonce: 27
|
0.040274537064265178 Eth
Nonce: 28
| 0.007750022769480747 | ||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 761.951510341371694811 Eth | 761.951664407871694811 Eth | 0.0001540665 |
Execution Trace
BoredOddities.mint( numberOfTokens=10 )
mint[BoredOddities (ln:42)]
totalSupply[BoredOddities (ln:44)]
_numberMinted[BoredOddities (ln:47)]
_safeMint[BoredOddities (ln:50)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma 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;}//// OVERIDESfunction tokenURI(uint256 tokenId)publicviewoverride