Protocol Data Model¶
Rarible Protocol uses the following basic concepts to form the Data Model:
item
— NFT (Non-Fungible Token)collection
— collection of NFT itemsblockchain
— name of the blockchain networkorder
— intent to sell an NFTactivity
— events with items like "MINT", "SELL" etc.
Collections and items have their own id
, that contain the blockchain
and different types of tokens
.
Item¶
The item
has an array of required and optional parameters. It depends on several parameters and contains the name of the blockchain
, address or token
of the item collection
.
Collection¶
The collection
has an array of required and optional parameters too. It depends on several parameters and contains the name of the blockchain
and tokens
of the collection
.
Order¶
Order means intent to sell an NFT for a given price. To complete the Order, accept the Bid from the potential buyer.
The order
has an array of required and optional parameters. It depends on several parameters and contains the name of the blockchain
too.
You can find more information and examples on Search Capabilities page.