For NFT!

At present, NFT is the hottest topic in the blockchain field, with very strong storage and query requirements, which also motivates and guides the design and development of CATA project.

CATA has designed a set of interaction protocols for Flow's Cadence contract layer, enabling integration and full traceability of token transactions and data storage, providing a one-stop solution for NFT publishing, storage, management and distribution. It is fully compatible with Cadence's resource-oriented capabilities, allowing Cadence developers to easily connect NFT contracts to storage facilities.

NFT is more than just token

The source data is the underlying assets of NFT, so it should be treated as a part of NFT.

For the storage of the source data, the following requirements need to be met_:_

  1. Storage: Data should be stored persistently, and be available all the time.

  2. Retrieval: Data should always be ready for flexible retrieval. (e.g., I can search for all the movie NFTs starring Robert Downey Jr. …)

  3. Security: Ownership and rights management & protection from malicious behaviors. (e.g., manipulation, piracy…).

Challenges in NFT Storage

The dilemma between Usability and Cost

  • On-chain storage is flexible in business logic, but with limitations of available space

  • Decentralized storage scheme(e.g. IPFS) can hold massive data, but with weak interactivity

Exhibition > Storage

  • Most decentralized storage solutions are pure storage with no query capability

Copy minter

  • No copyright protection in web world

The current NFT scenario relies on blockchain networks (e.g., Flow or ETH) to build a marketplace, and the storage of metadata often relies on centralized storage solutions (e.g., AWS), or the content is stored on a decentralized storage protocol (such as IPFS), and then is associated with the on-chain marketplace through additional operations, which brings a bad impact on the user experience of NFT. The CATA storage protocol spans from the circulation layer on blockchain, the Minerva metadata layer, to the underlying file system layer, and covers the business logic of NFT data storage, the associations between the on-chain and off-chain world, and the entire process of token circulation. It provides a one-stop NFT experience.


Last updated