All Projects → onflow → nft-storefront

onflow / nft-storefront

Licence: Unlicense license
A general-purpose Cadence contract for trading NFTs on Flow

Programming Languages

Cadence
7 projects
javascript
184084 projects - #8 most used programming language
go
31211 projects - #10 most used programming language
Makefile
30231 projects

NFT Storefront

The NFT storefront is a general-purpose Cadence contract for trading NFTs on Flow.

NFTStorefront uses modern Cadence run-time type facilities to implement a marketplace that can take any currency in order to vend any token in a safe and secure way. This means that only one instance of the contract is needed (see below for its address on Testnet and Mainnet), and its resources, transactions, and scripts can be used by any account to create any marketplace.

NOTE: New version of NFTStorefront,i.e. NFTStorefrontV2 contract has been developed and deployed on testnet. Whoever wants to build upon NFTStorefront, it is recommended to use latest version of it,i.e NFTStorefrontV2 and enjoy its latest offerings.

Contract Addresses

Name Testnet Mainnet
NFTStorefront 0x94b06cfca1d8a476 0x4eb8a10cb9f87357
NFTStorefrontV2 0x2d55b98eb200daef 0x4eb8a10cb9f87357

Usage

Each account that wants to offer NFTs for sale installs a Storefront, and then lists individual sales within that Storefront as Listing resources.

There is one Storefront per account that handles sales of all NFT types for that account.

Each Listing can list one or more cut percentages. Each cut is delivered to a predefined address. Cuts can be used to pay listing fees or other considerations.

Each NFT may be listed in one or more Listing resources. The validity of each Listing can easily be checked.

Purchasers can watch for Listing events and check the NFT type and ID to see if they wish to buy the offered item.

Marketplaces and other aggregators can watch for Listing events and list items of interest.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].