NFT Selling and Listing in Mobile App

NOVASOLUTIONS.TECHNOLOGY is engaged in the development, support and maintenance of iOS, Android, PWA mobile applications. We have extensive experience and expertise in publishing mobile applications in popular markets like Google Play, App Store, Amazon, AppGallery and others.
Development and support of all types of mobile applications:
Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Showing 1 of 1 servicesAll 1735 services
NFT Selling and Listing in Mobile App
Medium
~3-5 business days
FAQ
Our competencies:
Development stages
Latest works
  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    756
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    624
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1054
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    947
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    862
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    445

Implementing NFT Sales Listing in Mobile Applications

To list an NFT for sale, two operations must be executed: granting the marketplace permission to manage the token (approve or setApprovalForAll) and creating the listing. These are two separate transactions—meaning two gas expenditures and two user confirmations. The UX should guide users through this seamlessly.

setApprovalForAll vs approve

setApprovalForAll(marketplaceAddress, true) — a single permission for all tokens in the collection. The user approves once, then can list any NFT from that collection without requiring repeat approval.

approve(marketplaceAddress, tokenId) — permission for a specific token. More secure, but each listing requires a separate transaction.

Recommended UX: on the first listing from a collection, propose setApprovalForAll with an explanation: "Approve once for the entire collection to avoid paying gas on each sale." Users must understand the implications.

// iOS — checking approval before listing
func checkApproval(nftContract: EthereumAddress, owner: EthereumAddress) async -> Bool {
    let erc721 = ERC721(web3: web3, provider: web3.provider, address: nftContract)
    return (try? await erc721.getApproved(tokenId: tokenId) == marketplaceAddress)
        ?? (try? await erc721.isApprovedForAll(owner: owner, operator: marketplaceAddress))
        ?? false
}

Listing Form

Minimum required fields: price (in ETH or ERC-20 token), optional listing deadline. Display the calculated net amount the seller receives accounting for fees directly in the form: netAmount = price * (1 - platformFee - royalty).

// Android — calculating seller's net amount
data class ListingFeeBreakdown(
    val grossPrice: BigDecimal,
    val platformFeePercent: BigDecimal,
    val royaltyPercent: BigDecimal
) {
    val platformFeeAmount get() = grossPrice * platformFeePercent / BigDecimal(100)
    val royaltyAmount get() = grossPrice * royaltyPercent / BigDecimal(100)
    val sellerReceives get() = grossPrice - platformFeeAmount - royaltyAmount
}

Royalty is sourced from ERC2981.royaltyInfo(tokenId, price). Display a line "Creator Royalty: X%" — this is important for transparency.

Listing Creation Flow

  1. Check approval → if not granted, send approve/setApprovalForAll
  2. Wait for approval confirmation
  3. Send listItem(nftAddress, tokenId, price, deadline)
  4. After confirmation — NFT appears in the catalog

Each step includes a progress indicator. If the user closes the app after step 1, on next launch check the already-granted approval and offer to continue from step 3.

Changing Price and Delisting

updateListing(nftAddress, tokenId, newPrice) — a single transaction without requiring repeat approval.

cancelListing(nftAddress, tokenId) — removes the listing. After confirmation — NFT disappears from the catalog. Important: display the "Delist" button only when the listing is actually active (verified on-chain or via indexer).

Timeline: 3–5 days: listing form with fee breakdown, approve + list flow with checkpoints, updating and canceling listings.