Architecture

Polkadot Protocol + NFT-Kit Integration Diagram

The NFT Kit is responsible for fetching NFTs and their details from Polkadot. We have three main components:

  1. REST APIs/Library: you can access the functionalities provided by the NFT Kit through two interfaces: as a library or through REST APIs.

  2. NFTs operation: within this component, we will have a list of NFTs operations like fetching NFT metadata, a list of NFTs, verify NFT ownership/metadata against policies.

  3. NFTs queries: this component generates a query and routes it to the specific ecosystem based on the demand of the NFTs operation component.

Different approaches to managing NFTs in the Polkadot ecosystem include PSP-34, PSP-37, RMRK, Uniques, etc. The NFT Kit provides an abstract layer for operations with any NFTs approach within the Polkadot ecosystem. With the NFT Kit, the NFTs ecosystem in Polkadot will be more accessible to developers to build more advanced use cases.

RMRK 2.0

  • RMRK is a set of NFT standards which compose several "NFT 2.0 lego" primitives. Putting these legos together allows a user to create NFT systems of arbitrary complexity.

  • Our solution will be integrated with Kusama canary network Implementation (Remarks).

Uniques

  • Unique Network is the next generation NFT chain for advanced use cases and mass adoption.

  • Unique provides REST APIs to query NFTs details in the Unique Network.

  • Unique has three networks:

  1. Unique is a Polkadot parachain.

  2. Quartz is a Kusama parachain.

  3. Opal is a testnet.

Astar

  • Astar Network supports the building of dApps with EVM and WASM smart contracts and offers developers true interoperability.

  • Astar supports EVM smart contracts.

  • It enables Wasm smart-contract using The pallet-contracts. The pallet-contracts is a sandbox environment to deploy and execute WebAssembly smart contracts. Any language that compiles to Wasm can be used. But the code should be compatible with the pallet-contracts API.

  • The Polkadot ecosystem provides two standard interfaces for Non-Fungible Token: PSP-34(Non-Fungible Token (ERC721 equivalent) with extensions) and PSP37( ERC1155 equivalent with extensions). The goal is to have a standard contract interface that allows tokens deployed on Substrate's contracts pallet.

  • Blockscout: BlockScout provides a comprehensive, easy-to-use interface for users to view, confirm, and inspect transactions on EVM blockchains

  • Subscan API: it provides a simple way to access the chain data of more than 10 substrate-based networks.

  • Unique REST APIs

  • Subsquid: A squid is a project that extracts and transforms on-chain data in order to present it as a GraphQL API.

  • Polkaholic API: It gives you powerful access to over 50+ networks in Polkadot and Kusama ecosystems.

  • Substrate API Sidecar: REST service that makes it easy to interact with blockchain nodes built using Substrate's FRAME framework.

Last updated