Transaction Hash:
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:
326 |
ZerionDNA.Transfer( from=0x00000000...000000000, to=[Sender] 0x45cbb1981a5f576a91a83c0d341eddafeac5c1f9, tokenId=351254 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 2.153106541096725126 Eth | 2.153106614497595126 Eth | 0.00000007340087 | ||
0x45CBB198...fEAc5c1F9 |
0.00035 Eth
Nonce: 0
|
0.000092279685952726 Eth
Nonce: 1
| 0.000257720314047274 | ||
0x932261f9...0623848bF |
Execution Trace
ZerionDNA.mint( )
mint[ZerionDNA (ln:31)]
_safeMint[ZerionDNA (ln:32)]
_msgSender[ZerionDNA (ln:32)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma 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 IContractURIstring public override contractURI;/// @inheritdoc IZerionDNAuint256 public override totalSupply;// OpenSea Proxy Registry addressaddress internal constant OPENSEA_PROXY_REGISTRY = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;// Prefix of each tokenURIstring internal baseURI;/// @notice Creates Zerion DNA 1.0constructor() ERC721("Zerion DNA 1.0", "DNA") {_pause();}/// @inheritdoc IZerionDNAfunction setBaseURI(string memory newBaseURI) external override onlyOwner {baseURI = newBaseURI;}/// @inheritdoc IZerionDNA