LUXY
  • Help Center
  • 🧞‍♂️Getting Started
    • Creating a Wallet
    • Connect to LUXY!
    • Adding coins to your Wallet
    • Buying $LUXY
  • LUXY Marketplace
    • 🔑Key Concepts
      • What is a NFT?
      • Collections
        • Single NFT (ERC-721)
        • Multiple NFT (ERC-1155) review
      • Royalties
      • Gas Price
      • Glossary
    • 🎩Transactions Guides
      • Check out
      • Create Listing
      • Cancel Listings
      • Accept Offers
      • Create Offers
      • Cancel Offers
      • Transfer
      • Burn
    • 🔧Collection Management
      • Create a Collection
      • Customize your Collection
      • Settings and Permissions
    • 🪅Mint!
    • 🔥Launchpad
      • Applying to the Launchpad
      • Checking and Customizing your Drop
    • ⁉️FAQ
  • FINANCE
    • Introducing the $LUXY token
      • Tokenomics
      • Lock and Vesting
      • IDO
      • Liquidity Pools
    • $LUXY guide
      • 1. Buy LUXY
      • 2. Provide Liquidity
      • 3. Farm
      • 4. $LUXY Swap
        • $LUXY Swap Guide
    • Utility
      • Farm
      • Holder Tiers
        • The Vault Guide
      • Marketplace Discount
    • The Burning
  • Developers
    • Smart Contracts
      • Creator LUXY ERC-721 V1
      • Creator LUXY ERC-1155 V1
      • Royalty Registry
      • LUXY Core
      • $LUXY Token
        • Vesting Contract
      • Farm Contract
      • Drop Contract
Powered by GitBook
On this page

Was this helpful?

  1. Developers
  2. Smart Contracts

Creator LUXY ERC-721 V1

We use factory smart contracts to enable each user to create their own ERC-721 collections with the Luxy implementation!

PreviousSmart ContractsNextCreator LUXY ERC-1155 V1

Last updated 3 years ago

Was this helpful?

: 0xd26519B772837Cfca34b5e45d33f4372C7060eB0

: 0x8D86e2A89Df98555a9Ffb5e1E1cD41478D74328D

There are two different factory contracts for creating your own Collection at Luxy. The main difference between them is that is for minting and creating collections that anyone can mint from, and uses an onlyoperatormodifier that will enable only the owner-specified addresses to mint from the collection.

Besides the privacy of the minting function there are some other parameters:

Name: name of the collection

Symbol: symbol of the collection

Creator: creator of the collection (defaults to owner)

baseURI: IPFS (preferable) or API folder location (defaults to empty-string)

maxSupply: You can set a maximum supply for the collection. A collection can be made unlimited by setting maxSupply to 0. This parameter is publicly visible.

isChangeable: If this parameter is set to True then the baseURI of the NFT can be changed. If False then it's impossible to change the baseURI. An example of usefulness is for gaming collections using IPFS instead of their own private APIs. This parameter is publicly visible.

salt: a random number used by to deploy the contract

Luxy implementation also enables royalties to be added onChain:

  • Set NFT royalties using - only one royalty per NFT created.

  • LUXY standard - enables collaborative royalties where you can add as many different addresses you wish

  • The factory contracts will always transfer ownership to the address that is called the contract(msgSender)

  • The address receiving the royalties can be changed by the address that receives the royalties

LuxyFactory721 Polygon
LuxyPrivateFactory721 Polygon
LuxyFactory721
LuxyPrivateFactory721
CREATE2
EIP-2981
Page cover image