ETH Price: $2,512.32 (-9.15%)

Transaction Decoder

Block:
19850514 at May-12-2024 12:57:11 AM +UTC
Transaction Fee:
0.000257720314047274 ETH $0.65
Gas Used:
75,671 Gas / 3.405800294 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
2.153106541096725126 Eth2.153106614497595126 Eth0.00000007340087
0x45CBB198...fEAc5c1F9
0.00035 Eth
Nonce: 0
0.000092279685952726 Eth
Nonce: 1
0.000257720314047274
0x932261f9...0623848bF

Execution Trace

ZerionDNA.mint( )
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.13;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "./IContractURI.sol";
import "./IProxyRegistry.sol";
import "./IZerionDNA.sol";
contract ZerionDNA is Ownable, Pausable, ERC721, IContractURI, IZerionDNA {
/// @inheritdoc IContractURI
string public override contractURI;
/// @inheritdoc IZerionDNA
uint256 public override totalSupply;
// OpenSea Proxy Registry address
address internal constant OPENSEA_PROXY_REGISTRY = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
// Prefix of each tokenURI
string internal baseURI;
/// @notice Creates Zerion DNA 1.0
constructor() ERC721("Zerion DNA 1.0", "DNA") {
_pause();
}
/// @inheritdoc IZerionDNA
function setBaseURI(string memory newBaseURI) external override onlyOwner {
baseURI = newBaseURI;
}
/// @inheritdoc IZerionDNA
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX