Both centralized and serverless architectures are supported and application creator can decide which one to use depending on how much logic and data they intend to manage off-chain and off-line.
In server-based architecture the application creator manually creates NFT collections and authorizes server to perform operations on each collection. See NFT palette methods that have admin permission level to understand better what server (or administrators) can do.
In serverless architecture the application creator does all initialization and token distribution manually. Alternatively, smart contracts may be used in order to implement some distribution mechanics such as token sales or claiming. The dApp has access to all properties of an NFT token, but it does not have any elevated permissions, since it resides on user site. All operations happen on user's behalf signed by user's private key.
See in root README
This method creates a Collection of NFTs. Each Token may have multiple properties encoded as an array of bytes of certain length. The initial owner and admin of the collection are set to the address that signed the transaction. Both addresses can be changed later.
- Anyone
- customDataSz: Size of NFT properties data.
- CollectionCreated
- CollectionID: Globally unique identifier of newly created collection.
- Mode: Collection mode
- Owner: Collection owner
Change the owner of the collection
- Collection Owner
- CollectionId
DANGEROUS: Destroys collection and all NFTs within this collection. Users irrecoverably lose their assets and may lose real money.
- Collection Owner
- CollectionId
This method creates a concrete instance of NFT Collection created with CreateCollection method.
- Collection Owner
- Collection Admin
- CollectionID: ID of the collection
- Properties: Array of bytes that contains NFT properties. Since NFT Module is agnostic of properties’ meaning, it is treated purely as an array of bytes
- Owner: Address, initial owner of the NFT
ItemCreated ItemId: Identifier of newly created NFT, which is unique within the Collection, so the NFT is uniquely identified with a pair of values: CollectionId and ItemId. Recipient: Address, owner of newly created item
This method destroys a concrete instance of NFT.
- Collection Owner
- Collection Admin
- Current NFT Owner
- CollectionID: ID of the collection
- ItemID: ID of NFT to burn
- ItemDestroyed
- CollectionID
- ItemId: Identifier of burned NFT
NFT Collection can be controlled by multiple admin addresses (some which can also be servers, for example). Admins can issue and burn NFTs, as well as add and remove other admins, but cannot change NFT or Collection ownership.
This method adds an admin of the Collection.
- Collection Owner
- Collection Admin
- CollectionID: ID of the Collection to add admin for
- Admin: Address of new admin to add
Remove admin address of the Collection. An admin address can remove itself. List of admins may become empty, in which case only Collection Owner will be able to add an Admin.
- Collection Owner
- Collection Admin
- CollectionID: ID of the Collection to remove admin for
- Admin: Address of admin to remove
This group of methods allows managing NFT ownership.
Return the address of the NFT owner.
- Anyone
- CollectionId
- ItemId: ID of the NFT
Owner address
This method is included for compatibility with ERC-721. Return the total count of NFTs of a given Collection that belong to a given address.
- Anyone
- CollectionId
- Address to count NFTs for
Total count of NFTs for Address
Change ownership of the NFT.
- Collection Owner
- Collection Admin
- Current NFT owner
- Recipient: Address of token recipient
- ClassId: ID of item class
- ItemId: ID of the item
Change ownership of a NFT on behalf of the owner. See Approve method for additional information. After this method executes, the approval is removed so that the approved address will not be able to transfer this NFT again from this owner.
- Collection Owner
- Collection Admin
- Current NFT owner
- Address approved by current NFT owner
- Recipient: Address of token recipient
- ClassId: ID of item class
- ItemId: ID of the item
Set, change, or remove approved address to transfer the ownership of the NFT.
- Collection Owner
- Collection Admin
- Current NFT owner
- Approved: Address that is approved to transfer this NFT or zero (if needed to remove approval)
- ClassId: ID of item class
- ItemId: ID of the item
Get the approved address for a single NFT.
- Anyone
- ClassId: ID of item class
- ItemId: ID of the item
Approved address