From f164cf341cc3e721d6392b24a99bcb4f91e5e56b Mon Sep 17 00:00:00 2001 From: Lea Lobanov Date: Sun, 8 Dec 2024 16:21:01 +0400 Subject: [PATCH] Improve explanation text --- explanations/contract.txt | 5 ++--- explanations/transaction.txt | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/explanations/contract.txt b/explanations/contract.txt index 3b2f81a..ddcfc5d 100644 --- a/explanations/contract.txt +++ b/explanations/contract.txt @@ -1,5 +1,4 @@ -The NFT Storefront contract is used to be able to list NFTS that a user owns for sale on your marketplace. Users can also purchase other NFTS, borrow listings, and do tons of other things related to the Storefront contract. -Before doing any of this, you need to create a Storefront resource from the NFTStorefront contract and save it to your account. Once that resource is saved you then have access to the Storefront resource which will give you the ability to create listings, remove listings, getListings, borrowListings, cleanupListings, and destroy your own Storefront. +The NFT Storefront contract enables users to list their NFTs for sale on a marketplace, purchase NFTs from others, borrow listings, and perform various other operations related to managing and interacting with the Storefront. To use these features, a user must first create a Storefront resource from the NFT Storefront contract and save it to their account. This Storefront resource acts as a gateway to functionalities such as creating and removing listings, retrieving and borrowing listings, cleaning up outdated listings, and even destroying the Storefront itself when no longer needed. -The createStorefront function allows anyone to create a storefront and save it to their account. +The createStorefront function facilitates this process, allowing anyone to easily create and save a Storefront resource to their account, unlocking full access to the Storefront’s capabilities. \ No newline at end of file diff --git a/explanations/transaction.txt b/explanations/transaction.txt index 6bd0a59..bec8f16 100644 --- a/explanations/transaction.txt +++ b/explanations/transaction.txt @@ -1 +1 @@ -Here you are simply calling the createStorefront function to save a storefront to your account. \ No newline at end of file +This transaction demonstrates how to set up a user account to participate in the marketplace by creating and saving a Storefront resource using the NFTStorefront contract. The createStorefront function is called to generate a new Storefront resource, which is then stored in the account's storage at the predefined NFTStorefront.StorefrontStoragePath. \ No newline at end of file