ETH Price: $3,796.82 (+0.73%)
Gas: 2.53 Gwei

Transaction Decoder

Block:
15245289 at Jul-30-2022 06:02:35 PM +UTC
Transaction Fee:
0.00065415387535569 ETH $2.48
Gas Used:
59,805 Gas / 10.938113458 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Luxor Technology: Mining)
37.120991067624068727 Eth37.121080775124068727 Eth0.0000897075
0xdDAb60f9...60415221A
0.001268469617039673 Eth
Nonce: 9
0.000614315741683983 Eth
Nonce: 10
0.00065415387535569

Execution Trace

ZoraNFTCreatorProxy.3857fb13( )
  • ZoraNFTCreatorV1.createEdition( name=Cuando Ya No Me Duelas , symbol=NOISE, editionSize=18446744073709551615, royaltyBPS=1000, fundsRecipient=0xdDAb60f9e975541Fd4cCB9DD1Ea8a1360415221A, defaultAdmin=0xdDAb60f9e975541Fd4cCB9DD1Ea8a1360415221A, saleConfig=[{name:publicSalePrice, type:uint104, order:1, indexed:false, value:15000000000000000, valueString:15000000000000000}, {name:maxSalePurchasePerAddress, type:uint32, order:2, indexed:false, value:4294967295, valueString:4294967295}, {name:publicSaleStart, type:uint64, order:3, indexed:false, value:1659203861, valueString:1659203861}, {name:publicSaleEnd, type:uint64, order:4, indexed:false, value:1659848400, valueString:1659848400}, {name:presaleStart, type:uint64, order:5, indexed:false, value:0, valueString:0}, {name:presaleEnd, type:uint64, order:6, indexed:false, value:0, valueString:0}, {name:presaleMerkleRoot, type:bytes32, order:7, indexed:false, value:0000000000000000000000000000000000000000000000000000000000000000, valueString:0000000000000000000000000000000000000000000000000000000000000000}], description=THE LOST DROP — FILE # 01: Cuando Ya No Me Duelas.Wav\n\n''Cuando ya no me duelas'' it’s a sad lo-if & boom-bap combination that I record almost 2 years ago. The sounds and lyrics of this song always makes me feel nostalgia and even if time goes by, it still transmits that feeling to me. I created this song on a cold winter night in the studio with one of my best friends, i remember what he said a when he hear the completly song and that phrase really stuck in my head : ''Cuando ya no me duelas it lasts 3 minutes but it hurts a lifetime''. I hope you like it.\n\nCollector rewards:\n· Wav Audio File.\n· Early access to the next lost drops.\n\nSong Metadata:\nWritten, performed and produced by Alex Paul.\nCover art designed by Alex Paul.\n, animationURI=ipfs://bafybeicn2hmd4ealxo2xsctljuf54fa7yxnjuubgts46tfh7rtbxome37y, imageURI=ipfs://bafkreih2sflwvhqyi2rnrqh6urpxuv7iuefr3oaliij2odmrgawr3ikhcy )
    File 1 of 2: ZoraNFTCreatorProxy
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // SPDX-License-Identifier: GPL-3.0
    pragma solidity ^0.8.10;
    import {ERC1967Proxy} from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol";
    /// @dev Zora NFT Creator Proxy Access Contract
    contract ZoraNFTCreatorProxy is ERC1967Proxy {
    constructor(address _logic, bytes memory _data)
    payable
    ERC1967Proxy(_logic, _data)
    {}
    }// SPDX-License-Identifier: MIT
    // OpenZeppelin Contracts v4.4.1 (proxy/ERC1967/ERC1967Proxy.sol)
    pragma solidity ^0.8.0;
    import "../Proxy.sol";
    import "./ERC1967Upgrade.sol";
    /**
    * @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 2: ZoraNFTCreatorV1
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.10;
    import {OwnableUpgradeable} from "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
    import {UUPSUpgradeable} from "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol";
    import {ERC721DropProxy} from "./ERC721DropProxy.sol";
    import {Version} from "./utils/Version.sol";
    import {EditionMetadataRenderer} from "./metadata/EditionMetadataRenderer.sol";
    import {IERC721Drop} from "./interfaces/IERC721Drop.sol";
    import {DropMetadataRenderer} from "./metadata/DropMetadataRenderer.sol";
    import {IMetadataRenderer} from "./interfaces/IMetadataRenderer.sol";
    import {ERC721Drop} from "./ERC721Drop.sol";
    /// @notice Zora NFT Creator V1
    contract ZoraNFTCreatorV1 is OwnableUpgradeable, UUPSUpgradeable, Version(2) {
    string private constant CANNOT_BE_ZERO = "Cannot be 0 address";
    /// @notice Emitted when a edition is created reserving the corresponding token IDs.
    event CreatedDrop(
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX