Transaction Hash:
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:
92 |
ZerionDNA.Transfer( from=0x00000000...000000000, to=[Sender] 0xf4811a621203a64d43cd38db71af70bbc33224f0, tokenId=76218 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x690B9A9E...Db4FaC990
Miner
| (builder0x69) | 2.388872206620126459 Eth | 2.389096549188786236 Eth | 0.000224342568659777 | |
0x932261f9...0623848bF | |||||
0xf4811a62...bc33224F0 |
0.027986080006578168 Eth
Nonce: 3
|
0.025568382461559451 Eth
Nonce: 4
| 0.002417697545018717 |
Execution Trace
ZerionDNA.CALL( )
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