Skip to content

Commit 71b4dae

Browse files
committed
update import placeholders
1 parent 9590c09 commit 71b4dae

11 files changed

+36
-36
lines changed

transactions-v1/utility/mint_example_nft.cdc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
/// It must be run with the account that has the minter resource
33
/// stored in /storage/NFTMinter
44

5-
import NonFungibleToken from "NonFungibleToken"
6-
import ExampleNFT from "ExampleNFT"
7-
import MetadataViews from "MetadataViews"
8-
import FungibleToken from "FungibleToken"
5+
import "NonFungibleToken"
6+
import "ExampleNFT"
7+
import "MetadataViews"
8+
import "FungibleToken"
99

1010
transaction(
1111
recipient: Address,

transactions-v1/utility/setup_account_for_example_nft.cdc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/// This transaction is what an account would run
22
/// to set itself up to receive NFTs
33

4-
import NonFungibleToken from "NonFungibleToken"
5-
import ExampleNFT from "ExampleNFT"
6-
import MetadataViews from "MetadataViews"
4+
import "NonFungibleToken"
5+
import "ExampleNFT"
6+
import "MetadataViews"
77

88
transaction {
99

transactions/buy_item.cdc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import ExampleToken from "ExampleToken"
2-
import FungibleToken from "FungibleToken"
3-
import NonFungibleToken from "NonFungibleToken"
4-
import ExampleNFT from "ExampleNFT"
5-
import NFTStorefrontV2 from "NFTStorefrontV2"
6-
import MetadataViews from "MetadataViews"
1+
import "ExampleToken"
2+
import "FungibleToken"
3+
import "NonFungibleToken"
4+
import "ExampleNFT"
5+
import "NFTStorefrontV2"
6+
import "MetadataViews"
77

88
/// Transaction facilitates the purcahse of listed NFT. It takes the storefront address, listing resource that need to be
99
/// purchased & a address that will takeaway the commission.

transactions/cleanup_expired_listings.cdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import NFTStorefrontV2 from "../contracts/NFTStorefrontV2.cdc"
1+
import "NFTStorefrontV2"
22

33
/// Transaction to facilitate the cleanup of the expired listings of a given storefront resource account holder. This
44
/// transaction facilitates the cleanup in pagination model where signer of the transaction will provide the

transactions/cleanup_ghost_listing.cdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import NFTStorefrontV2 from "../contracts/NFTStorefrontV2.cdc"
1+
import "NFTStorefrontV2"
22

33
/// Below transaction help to remove the ghost listing for the given storefront.
44
///

transactions/cleanup_purchased_listings.cdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import NFTStorefrontV2 from "../contracts/NFTStorefrontV2.cdc"
1+
import "NFTStorefrontV2"
22

33
/// Transaction to facilitate the cleanup of the purchased listings of a given storefront resource account holder.
44
/// Cleanup is publicly accessible so can be executed by anyone.

transactions/remove_item.cdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import NFTStorefrontV2 from "../contracts/NFTStorefrontV2.cdc"
1+
import "NFTStorefrontV2"
22

33
/// Transaction to facilitate the removal of listing by the listing owner. Listing owner should provide the
44
/// `listingResourceID` that needs to be removed.

transactions/sell_item.cdc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import ExampleToken from "ExampleToken"
2-
import FungibleToken from "FungibleToken"
3-
import NonFungibleToken from "NonFungibleToken"
4-
import ExampleNFT from "ExampleNFT"
5-
import MetadataViews from "MetadataViews"
6-
import NFTStorefrontV2 from "NFTStorefrontV2"
1+
import "ExampleToken"
2+
import "FungibleToken"
3+
import "NonFungibleToken"
4+
import "ExampleNFT"
5+
import "MetadataViews"
6+
import "NFTStorefrontV2"
77

88
/// Transaction used to facilitate the creation of the listing under the signer's owned storefront resource.
99
/// It accepts the certain details from the signer,i.e. -

transactions/sell_item_and_replace_current_listing.cdc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import ExampleToken from "../contracts/utility/ExampleToken.cdc"
2-
import FungibleToken from "../contracts/utility/FungibleToken.cdc"
3-
import NonFungibleToken from "../contracts/utility/NonFungibleToken.cdc"
4-
import ExampleNFT from "../contracts/utility/ExampleNFT.cdc"
5-
import MetadataViews from "../contracts/utility/MetadataViews.cdc"
6-
import NFTStorefrontV2 from "../contracts/NFTStorefrontV2.cdc"
1+
import "ExampleToken"
2+
import "FungibleToken"
3+
import "NonFungibleToken"
4+
import "ExampleNFT"
5+
import "MetadataViews"
6+
import "NFTStorefrontV2"
77

88
/// Transaction used to facilitate the creation of the listing under the signer's owned storefront resource.
99
/// It accepts the certain details from the signer,i.e. -

transactions/sell_item_with_marketplace_cut.cdc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import FlowToken from "FlowToken"
2-
import FungibleToken from "../contracts/utility/FungibleToken.cdc"
3-
import NonFungibleToken from "../contracts/utility/NonFungibleToken.cdc"
4-
import ExampleNFT from "../contracts/utility/ExampleNFT.cdc"
5-
import MetadataViews from "../contracts/utility/MetadataViews.cdc"
6-
import NFTStorefrontV2 from "../contracts/NFTStorefrontV2.cdc"
1+
import "FlowToken"
2+
import "FungibleToken"
3+
import "NonFungibleToken"
4+
import "ExampleNFT"
5+
import "MetadataViews"
6+
import "NFTStorefrontV2"
77

88
/// Transaction used to facilitate the creation of the listing under the signer's owned storefront resource.
99
/// It accepts the certain details from the signer,i.e. -

0 commit comments

Comments
 (0)