ETH Price: $2,537.98 (-1.67%)

Transaction Decoder

Block:
16663599 at Feb-19-2023 03:42:47 PM +UTC
Transaction Fee:
0.002417697545018717 ETH $6.14
Gas Used:
75,619 Gas / 31.972090943 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(builder0x69)
2.388872206620126459 Eth2.389096549188786236 Eth0.000224342568659777
0x932261f9...0623848bF
0xf4811a62...bc33224F0
0.027986080006578168 Eth
Nonce: 3
0.025568382461559451 Eth
Nonce: 4
0.002417697545018717

Execution Trace

ZerionDNA.CALL( )
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