diff --git a/.gitignore b/.gitignore index c238902..d4acc0c 100644 --- a/.gitignore +++ b/.gitignore @@ -32,3 +32,4 @@ lerna-debug.log* flowdb *-credentials-* .env.testnet.local +flix-manifest.json diff --git a/api/.env.local b/api/.env.local index 2c9b006..ed25973 100644 --- a/api/.env.local +++ b/api/.env.local @@ -1,8 +1,9 @@ DATABASE_PATH=./flow-templates-db.sqlite DATABASE_URL= -MIGRATION_PATH=../dist/migrations +MIGRATION_PATH=./dist/migrations PORT=3333 FLOW_ACCESS_API_URL=https://rest-testnet.onflow.org -TEMPLATE_DIR=../templates +TEMPLATE_DIR=../templates/**/*.json AUDITORS_JSON_FILE=../auditors/auditors.json -MIXPANEL_TOKEN= \ No newline at end of file +MIXPANEL_TOKEN= +TEMPLATE_MANIFEST_FILE=flix-manifest.json diff --git a/api/flow-templates-db.sqlite b/api/flow-templates-db.sqlite index 61fb9ca..dd0d728 100644 Binary files a/api/flow-templates-db.sqlite and b/api/flow-templates-db.sqlite differ diff --git a/api/src/app.ts b/api/src/app.ts index fda8a96..163d397 100644 --- a/api/src/app.ts +++ b/api/src/app.ts @@ -2,7 +2,6 @@ import { json, urlencoded } from "body-parser"; import cors from "cors"; import express, { Request, Response } from "express"; import "express-async-errors"; -import path from "path"; import templateRouter from "./routes/template"; import auditorsRouter from "./routes/auditors"; import { TemplateService } from "./services/template"; diff --git a/package.json b/package.json index cdac3a6..c54533d 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,7 @@ "version": "1.0.0", "description": "", "scripts": { + "dev": "npm run build && cd api && node dist/index.js --dev", "start": "cd api && node dist/index.js", "postinstall": "npx lerna exec npm install", "heroku-postbuild": "npx lerna exec npm run build", diff --git a/templates/NFTCatalog/Aera/Aera-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/Aera/Aera-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 5efa67a..0000000 --- a/templates/NFTCatalog/Aera/Aera-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "62e9abac00308c552544a082b4dc6e83beae420942f8e98542a2af72d612ac0b", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Aera NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Aera\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47497743 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/AeraRewards/AeraRewards-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/AeraRewards/AeraRewards-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 8f49d07..0000000 --- a/templates/NFTCatalog/AeraRewards/AeraRewards-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "4e34dfa3f4cec6db12271d365e44138f4ec6de67353bd4904fcccb554e7763f6", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a AeraRewards NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: AeraRewards\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47488150 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Analogs/Analogs-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/Analogs/Analogs-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index f3b15bf..0000000 --- a/templates/NFTCatalog/Analogs/Analogs-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "cb86442ab817d4446a7ffd54f34c8bdb6c0d2c15782dff52ec1218e60d75e5c5", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Analogs NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Analogs\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47508333 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/AsobaNFTCollection/AsobaNFTCollection-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/AsobaNFTCollection/AsobaNFTCollection-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 10edc56..0000000 --- a/templates/NFTCatalog/AsobaNFTCollection/AsobaNFTCollection-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "530da9ab706a0754b966fdec3f488a10d218823e4087f493aae57353b84d0ec1", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a AsobaNFTCollection NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: AsobaNFTCollection\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47512723 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Backpack/Backpack-StorefrontRemoveItem.template.json b/templates/NFTCatalog/Backpack/Backpack-StorefrontRemoveItem.template.json deleted file mode 100644 index 3de9dda..0000000 --- a/templates/NFTCatalog/Backpack/Backpack-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "fa5fcf93b7c2bbdb79abac173078110250bc5f9e0d668ffe57577a113a9e4564", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Backpack NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Backpack\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47501733 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95799574 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/BarterYardClubWerewolves/BarterYardClubWerewolves-StorefrontRemoveItem-testnet.template.json b/templates/NFTCatalog/BarterYardClubWerewolves/BarterYardClubWerewolves-StorefrontRemoveItem-testnet.template.json deleted file mode 100644 index 1603452..0000000 --- a/templates/NFTCatalog/BarterYardClubWerewolves/BarterYardClubWerewolves-StorefrontRemoveItem-testnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "28c95b0b3e021daf2e72d429ce75c5247757ba7bbe1d3c1cf7d5b5dd961ac047", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a BarterYardClubWerewolves NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: BarterYardClubWerewolves\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95813470 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/BarterYardClub_Werewolves/BarterYardClub_Werewolves-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/BarterYardClub_Werewolves/BarterYardClub_Werewolves-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 264fa89..0000000 --- a/templates/NFTCatalog/BarterYardClub_Werewolves/BarterYardClub_Werewolves-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "320a24b777965f87a773c6547729b1b35945c4d4115bc726dae691a00967abdd", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a BarterYardClub_Werewolves NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: BarterYardClub_Werewolves\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47512793 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Bitku/Bitku-StorefrontRemoveItem.template.json b/templates/NFTCatalog/Bitku/Bitku-StorefrontRemoveItem.template.json deleted file mode 100644 index ed5f760..0000000 --- a/templates/NFTCatalog/Bitku/Bitku-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "5350882f7837151e8eccac685a6a20b10ede049aa985d666818685edd6880205", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Bitku NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Bitku\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47499489 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95796911 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/BlovizeNFTTrophies/BlovizeNFTTrophies-StorefrontRemoveItem.template.json b/templates/NFTCatalog/BlovizeNFTTrophies/BlovizeNFTTrophies-StorefrontRemoveItem.template.json deleted file mode 100644 index d157b1a..0000000 --- a/templates/NFTCatalog/BlovizeNFTTrophies/BlovizeNFTTrophies-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "b370e92170b96727fe12dba5624897072c25aebbc28f8038f65f1396372e71c0", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a BlovizeNFTTrophies NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: BlovizeNFTTrophies\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47506187 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95804877 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Bobblz/Bobblz-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/Bobblz/Bobblz-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 2bcb0a9..0000000 --- a/templates/NFTCatalog/Bobblz/Bobblz-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "1eafac06cff7619b8eb4c680475a7607fe91acad24fd8ea35cb9db2573a570ad", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Bobblz NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Bobblz\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47492659 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/CanesVault/CanesVault-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/CanesVault/CanesVault-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 2d58870..0000000 --- a/templates/NFTCatalog/CanesVault/CanesVault-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "f66f501c51f0911b83b49a434955a7319c95b547bc17f8d7d13a264f5f457b3e", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a CanesVault NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: CanesVault\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47496436 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/ChainmonstersRewards/ChainmonstersRewards-StorefrontRemoveItem.template.json b/templates/NFTCatalog/ChainmonstersRewards/ChainmonstersRewards-StorefrontRemoveItem.template.json deleted file mode 100644 index e06ec1c..0000000 --- a/templates/NFTCatalog/ChainmonstersRewards/ChainmonstersRewards-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "af3723205ca9a7faa8b2c805f619c9c4d6f7af3dbfce29bc2f35e19fe5cd30b7", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a ChainmonstersRewards NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: ChainmonstersRewards\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47497600 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95794653 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Cimelio/Cimelio-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/Cimelio/Cimelio-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 47f01cc..0000000 --- a/templates/NFTCatalog/Cimelio/Cimelio-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "8d3479b66201434e7bf498be899ad95633278ea0da58f8a325c1317f15fd748e", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Cimelio NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Cimelio\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47497482 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/CryptoPiggoNFTCollection/CryptoPiggoNFTCollection-StorefrontRemoveItem.template.json b/templates/NFTCatalog/CryptoPiggoNFTCollection/CryptoPiggoNFTCollection-StorefrontRemoveItem.template.json deleted file mode 100644 index 287c3b4..0000000 --- a/templates/NFTCatalog/CryptoPiggoNFTCollection/CryptoPiggoNFTCollection-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "5e9898a99e47f267ac05f39585605bf0615477b440cd79e7baa3b7fd6cbcdd7b", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a CryptoPiggoNFTCollection NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: CryptoPiggoNFTCollection\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47506067 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95804739 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/CryptoPiggoV2NFTCollection/CryptoPiggoV2NFTCollection-StorefrontRemoveItem.template.json b/templates/NFTCatalog/CryptoPiggoV2NFTCollection/CryptoPiggoV2NFTCollection-StorefrontRemoveItem.template.json deleted file mode 100644 index f2d97b7..0000000 --- a/templates/NFTCatalog/CryptoPiggoV2NFTCollection/CryptoPiggoV2NFTCollection-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "bb3c2af45037afcdc2c5bf3d352bbb77719687ec1680d9a1102965b8bb4f3d3d", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a CryptoPiggoV2NFTCollection NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: CryptoPiggoV2NFTCollection\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47504992 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95803439 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/CuveeCollectiveCollector/CuveeCollectiveCollector-StorefrontRemoveItem.template.json b/templates/NFTCatalog/CuveeCollectiveCollector/CuveeCollectiveCollector-StorefrontRemoveItem.template.json deleted file mode 100644 index 25d5db7..0000000 --- a/templates/NFTCatalog/CuveeCollectiveCollector/CuveeCollectiveCollector-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "04c2ecfd9e9ee99af9ff53094e7def67b17b714e7884fe030856473a0185b0d8", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a CuveeCollectiveCollector NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: CuveeCollectiveCollector\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47509275 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95808553 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/CuveeCollectiveWine/CuveeCollectiveWine-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/CuveeCollectiveWine/CuveeCollectiveWine-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index ea4982c..0000000 --- a/templates/NFTCatalog/CuveeCollectiveWine/CuveeCollectiveWine-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "60894d892bf257a701b01dfce61f62c6d574461865a8e119b8a3954e91d3bb49", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a CuveeCollectiveWine NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: CuveeCollectiveWine\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47501302 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/DalleOnFlow/DalleOnFlow-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/DalleOnFlow/DalleOnFlow-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index fec994d..0000000 --- a/templates/NFTCatalog/DalleOnFlow/DalleOnFlow-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "94fd10932e032823f5ce4009d866cf8454134e730eb415fab98b232d3dda0dde", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a DalleOnFlow NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: DalleOnFlow\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47501870 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Dandy/Dandy-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/Dandy/Dandy-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 6e55827..0000000 --- a/templates/NFTCatalog/Dandy/Dandy-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "5e024c9945c2b1b9207647062bf917ef36707b400af1fe1c108fa42d08b75055", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Dandy NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Dandy\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47488860 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/DayNFT/DayNFT-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/DayNFT/DayNFT-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index ab7b9e2..0000000 --- a/templates/NFTCatalog/DayNFT/DayNFT-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "577cfda1dbc7d9fe24f2dd73c24851736fba3088ab603218d45349f6cee76462", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a DayNFT NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: DayNFT\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47508903 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/DaysOnFlow/DaysOnFlow-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/DaysOnFlow/DaysOnFlow-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index c69e1ec..0000000 --- a/templates/NFTCatalog/DaysOnFlow/DaysOnFlow-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "ced272c524abea0bb3d067ce7232bd0e8adff1203862f36ee2f92d416c53bfe4", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a DaysOnFlow NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: DaysOnFlow\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47502736 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/DimensionX/DimensionX-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/DimensionX/DimensionX-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 9e78a06..0000000 --- a/templates/NFTCatalog/DimensionX/DimensionX-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "c312fb4f8a28c2e1b32dd4208d20643e1c828079ae68b326477b5800446c0505", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a DimensionX NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: DimensionX\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47505061 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/DisruptArt/DisruptArt-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/DisruptArt/DisruptArt-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index aac6b9d..0000000 --- a/templates/NFTCatalog/DisruptArt/DisruptArt-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "8779e8f45adaa635b86830d6b00ceb562ca04b828fe5fabc5241ceb5cadea2fd", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a DisruptArt NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: DisruptArt\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47508077 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/DooverseItems/DooverseItems-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/DooverseItems/DooverseItems-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 6628988..0000000 --- a/templates/NFTCatalog/DooverseItems/DooverseItems-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "23de556d3f6f01ec5c1f72443d2311b5d1447d71f29ea72e4d3149ed6dd618e1", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a DooverseItems NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: DooverseItems\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47501383 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Driverz/Driverz-StorefrontRemoveItem.template.json b/templates/NFTCatalog/Driverz/Driverz-StorefrontRemoveItem.template.json deleted file mode 100644 index 9cc731c..0000000 --- a/templates/NFTCatalog/Driverz/Driverz-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "af831d44e0d892cec023d1fce74f3d32ae1a6a28cdac8de92d76f44fb150a765", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Driverz NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Driverz\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47499826 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95797300 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Emeralds/Emeralds-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/Emeralds/Emeralds-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index ac59784..0000000 --- a/templates/NFTCatalog/Emeralds/Emeralds-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "d4a28e2eb1267ce1da5ed265356b909b4bdd0a84e62ad8116b1f8f50aec49bbf", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Emeralds NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Emeralds\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47502576 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Eternal/Eternal-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/Eternal/Eternal-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index fded396..0000000 --- a/templates/NFTCatalog/Eternal/Eternal-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "7b9a28094dd09f36a6303b1c70499c1944ff488dd35a32469f4049daca844c3e", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Eternal NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Eternal\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47487848 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/FLOAT/FLOAT-StorefrontRemoveItem.template.json b/templates/NFTCatalog/FLOAT/FLOAT-StorefrontRemoveItem.template.json deleted file mode 100644 index 2446b8f..0000000 --- a/templates/NFTCatalog/FLOAT/FLOAT-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "34de2c0f56fcd82be64f9256507b0cd9556185fe8c10ca4fa4d470e92b13c29a", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a FLOAT NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: FLOAT\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47505945 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95804594 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Flobot/Flobot-StorefrontRemoveItem.template.json b/templates/NFTCatalog/Flobot/Flobot-StorefrontRemoveItem.template.json deleted file mode 100644 index 2467c1d..0000000 --- a/templates/NFTCatalog/Flobot/Flobot-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "110ea76566de11f2f868e8feb26af2ba0574f34b3a0d558148ddb6e87814d59f", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Flobot NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Flobot\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47507057 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95805916 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Flovatar/Flovatar-StorefrontRemoveItem.template.json b/templates/NFTCatalog/Flovatar/Flovatar-StorefrontRemoveItem.template.json deleted file mode 100644 index 1f3f959..0000000 --- a/templates/NFTCatalog/Flovatar/Flovatar-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "4cae5363d75924bd1fa8e8157a79ec170aa4d76e97edb7ae2d6f133e25203d59", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Flovatar NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Flovatar\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47513152 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95813107 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/FlovatarComponent/FlovatarComponent-StorefrontRemoveItem.template.json b/templates/NFTCatalog/FlovatarComponent/FlovatarComponent-StorefrontRemoveItem.template.json deleted file mode 100644 index 1e1f679..0000000 --- a/templates/NFTCatalog/FlovatarComponent/FlovatarComponent-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "2dd46c9c3e2948d383d4c32897757f499ed785a467ec442c92e6c711ac4e0290", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a FlovatarComponent NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: FlovatarComponent\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47501918 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95799792 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/FlownsDomainNameNFT/FlownsDomainNameNFT-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/FlownsDomainNameNFT/FlownsDomainNameNFT-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 496ffba..0000000 --- a/templates/NFTCatalog/FlownsDomainNameNFT/FlownsDomainNameNFT-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "642ea6991e4004091f30c25850ab41039f3f22191f9eb028728d1016ef4492a7", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a FlownsDomainNameNFT NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: FlownsDomainNameNFT\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47513222 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/FlowverseMysteryPass/FlowverseMysteryPass-StorefrontRemoveItem.template.json b/templates/NFTCatalog/FlowverseMysteryPass/FlowverseMysteryPass-StorefrontRemoveItem.template.json deleted file mode 100644 index 14a9b6f..0000000 --- a/templates/NFTCatalog/FlowverseMysteryPass/FlowverseMysteryPass-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "73516ebbe58e2f7a078337658109ca8fde595805e943793efdbef1fbb4c9a070", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a FlowverseMysteryPass NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: FlowverseMysteryPass\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47499951 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95797445 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/FlowverseSocks/FlowverseSocks-StorefrontRemoveItem.template.json b/templates/NFTCatalog/FlowverseSocks/FlowverseSocks-StorefrontRemoveItem.template.json deleted file mode 100644 index 339231d..0000000 --- a/templates/NFTCatalog/FlowverseSocks/FlowverseSocks-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "a6d6929ada908458cafda9a209a6e3390b34c922e55a43f21921606eda10f30e", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a FlowverseSocks NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: FlowverseSocks\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47488632 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95784037 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/FlowverseTreasures/FlowverseTreasures-StorefrontRemoveItem.template.json b/templates/NFTCatalog/FlowverseTreasures/FlowverseTreasures-StorefrontRemoveItem.template.json deleted file mode 100644 index 82c7566..0000000 --- a/templates/NFTCatalog/FlowverseTreasures/FlowverseTreasures-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "d2f83bb0b254e5f91e999c13452b01404164b09af1fe77eedbd094a118c421d9", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a FlowverseTreasures NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: FlowverseTreasures\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47505589 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95804159 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Flunks/Flunks-StorefrontRemoveItem.template.json b/templates/NFTCatalog/Flunks/Flunks-StorefrontRemoveItem.template.json deleted file mode 100644 index c4448ef..0000000 --- a/templates/NFTCatalog/Flunks/Flunks-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "8e2300fd03714ecb70a5f2bf93579beda67c40ccc0b080ee96312e5681c5326c", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Flunks NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Flunks\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47510276 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95809717 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/FridgeMagnet/FridgeMagnet-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/FridgeMagnet/FridgeMagnet-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 959d2b6..0000000 --- a/templates/NFTCatalog/FridgeMagnet/FridgeMagnet-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "4efe289117ec71b2a376a374793b9ad8fcf5941ccbbbd69297f898009b48e7c5", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a FridgeMagnet NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: FridgeMagnet\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47506422 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Frightclub/Frightclub-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/Frightclub/Frightclub-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 28517b8..0000000 --- a/templates/NFTCatalog/Frightclub/Frightclub-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "cb8c393f8e93647e355e5366d858ea0c50dd61e738b39df33e5f37cbc75b4dcb", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Frightclub NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Frightclub\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47510347 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Fuchibola/Fuchibola-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/Fuchibola/Fuchibola-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 3a15072..0000000 --- a/templates/NFTCatalog/Fuchibola/Fuchibola-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "a1e3d8e199e65083f180f97a50b35cb5613b0a212698677145167e73325f3aa0", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Fuchibola NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Fuchibola\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47497416 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/GaiaElementNFT/GaiaElementNFT-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/GaiaElementNFT/GaiaElementNFT-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 9b626e2..0000000 --- a/templates/NFTCatalog/GaiaElementNFT/GaiaElementNFT-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "5a23fc624dde73197bfcd1d721fc486eadca85939b8d5ac908e0b7341682427a", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a GaiaElementNFT NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: GaiaElementNFT\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47508519 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/GaiaPackNFT/GaiaPackNFT-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/GaiaPackNFT/GaiaPackNFT-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 96b7993..0000000 --- a/templates/NFTCatalog/GaiaPackNFT/GaiaPackNFT-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "0538d11be9703b8d7faab5d1d8817b249fbbc622eba5559f5ec5ad7c5305ca28", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a GaiaPackNFT NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: GaiaPackNFT\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47492783 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Genies/Genies-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/Genies/Genies-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 831038a..0000000 --- a/templates/NFTCatalog/Genies/Genies-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "d70ef3d316be2dadf5c498d937b1e0b28756c65d7fbb0cb9c8b09c57f3e84ed5", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Genies NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Genies\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47506486 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/GoatedGoats/GoatedGoats-StorefrontRemoveItem.template.json b/templates/NFTCatalog/GoatedGoats/GoatedGoats-StorefrontRemoveItem.template.json deleted file mode 100644 index c2d4684..0000000 --- a/templates/NFTCatalog/GoatedGoats/GoatedGoats-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "947a52bcecb7c7cc3830c02c12123134683e9114d3ec293f4d5ff1b1b4920918", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a GoatedGoats NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: GoatedGoats\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47507869 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95806868 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/GoatedGoatsTraits/GoatedGoatsTraits-StorefrontRemoveItem.template.json b/templates/NFTCatalog/GoatedGoatsTraits/GoatedGoatsTraits-StorefrontRemoveItem.template.json deleted file mode 100644 index 5401bdc..0000000 --- a/templates/NFTCatalog/GoatedGoatsTraits/GoatedGoatsTraits-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "3d32d575ce0605cc6b8abe9e93d3361a5cb14d5c182be9f336143d4153eae074", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a GoatedGoatsTraits NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: GoatedGoatsTraits\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47493306 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95789554 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/HelixAuto/HelixAuto-StorefrontRemoveItem.template.json b/templates/NFTCatalog/HelixAuto/HelixAuto-StorefrontRemoveItem.template.json deleted file mode 100644 index abc9dd8..0000000 --- a/templates/NFTCatalog/HelixAuto/HelixAuto-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "1c633ef6d855fd516e662db9d31eda6ea873d81d8142371963c50a32d32ffe82", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a HelixAuto NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: HelixAuto\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47497349 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95794353 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Hoodlums/Hoodlums-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/Hoodlums/Hoodlums-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 56570e6..0000000 --- a/templates/NFTCatalog/Hoodlums/Hoodlums-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "316f14c6aa089d1f700bb92effeb76d72c7fdab94ffcc9741b5ab8a855fc1a9d", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Hoodlums NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Hoodlums\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47496940 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/IceTraeDiamondHands/IceTraeDiamondHands-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/IceTraeDiamondHands/IceTraeDiamondHands-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 5f5fc4f..0000000 --- a/templates/NFTCatalog/IceTraeDiamondHands/IceTraeDiamondHands-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "05603d0dfed4d9990df5b29b40aebbb32965ead37f3f5f4865e9a38924d2b089", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a IceTraeDiamondHands NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: IceTraeDiamondHands\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47509429 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/InceptionAvatar/InceptionAvatar-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/InceptionAvatar/InceptionAvatar-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 0310555..0000000 --- a/templates/NFTCatalog/InceptionAvatar/InceptionAvatar-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "2b85a47528173c083bd712e6156bbaf57ef4e999b8cf1e75677852450393c33e", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a InceptionAvatar NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: InceptionAvatar\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47500079 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/InceptionBlackBox/InceptionBlackBox-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/InceptionBlackBox/InceptionBlackBox-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 610e90f..0000000 --- a/templates/NFTCatalog/InceptionBlackBox/InceptionBlackBox-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "6df4d42fd1c83fd760c947469a8aa6b4428f12064a4e5be21f5d44e911c7b578", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a InceptionBlackBox NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: InceptionBlackBox\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47500017 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/JollyJokers/JollyJokers-StorefrontRemoveItem.template.json b/templates/NFTCatalog/JollyJokers/JollyJokers-StorefrontRemoveItem.template.json deleted file mode 100644 index 9d78b13..0000000 --- a/templates/NFTCatalog/JollyJokers/JollyJokers-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "6f50f16780e3b9b5235ac24b55feabaec91b2feca9c8062a2e2c5831bf91c3c8", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a JollyJokers NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: JollyJokers\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47506826 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95805643 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/JukeFrames/JukeFrames-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/JukeFrames/JukeFrames-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 8d3aeb5..0000000 --- a/templates/NFTCatalog/JukeFrames/JukeFrames-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "c098417deab4a1a144f6f3b42f9614fcbde0347241a0a2aba182c3dd3e190fd2", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a JukeFrames NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: JukeFrames\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47493374 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/JukeReels/JukeReels-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/JukeReels/JukeReels-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 3c2e73e..0000000 --- a/templates/NFTCatalog/JukeReels/JukeReels-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "c5461f3ca9af52b642bdbfa1413b8a791a97fd0c146beb43466e0c315d982400", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a JukeReels NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: JukeReels\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47509558 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/KlktnVoucher/KlktnVoucher-StorefrontRemoveItem-testnet.template.json b/templates/NFTCatalog/KlktnVoucher/KlktnVoucher-StorefrontRemoveItem-testnet.template.json deleted file mode 100644 index 05a2d87..0000000 --- a/templates/NFTCatalog/KlktnVoucher/KlktnVoucher-StorefrontRemoveItem-testnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "c6d57f0161781eeb9090dccbfb7aa1e3774cffe84a14779104f471971425fc08", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a KlktnVoucher NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: KlktnVoucher\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95813705 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/LOSTiNTurismo/LOSTiNTurismo-StorefrontRemoveItem.template.json b/templates/NFTCatalog/LOSTiNTurismo/LOSTiNTurismo-StorefrontRemoveItem.template.json deleted file mode 100644 index 110ef11..0000000 --- a/templates/NFTCatalog/LOSTiNTurismo/LOSTiNTurismo-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "1f726c7ade99ad682d8397ec5ec040e4095452ea7d0092602e9ff798ca00f61e", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a LOSTiNTurismo NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: LOSTiNTurismo\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47508708 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95807862 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/LaligaGolazos/LaligaGolazos-StorefrontRemoveItem.template.json b/templates/NFTCatalog/LaligaGolazos/LaligaGolazos-StorefrontRemoveItem.template.json deleted file mode 100644 index 6edeb71..0000000 --- a/templates/NFTCatalog/LaligaGolazos/LaligaGolazos-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "c86d99042a66db91b78c2a8660fbe27f1c42c3344cf93e24194b063775ea9e20", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a LaligaGolazos NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: LaligaGolazos\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47507597 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95806550 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Lufthaus/Lufthaus-StorefrontRemoveItem.template.json b/templates/NFTCatalog/Lufthaus/Lufthaus-StorefrontRemoveItem.template.json deleted file mode 100644 index 6b1928b..0000000 --- a/templates/NFTCatalog/Lufthaus/Lufthaus-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "9b7eff24ee2a96f64ecdab0765f82fd3e58dfb46a0047ba918164f5af537b009", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Lufthaus NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Lufthaus\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47499335 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95796722 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/LufthausStore/LufthausStore-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/LufthausStore/LufthausStore-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 2253316..0000000 --- a/templates/NFTCatalog/LufthausStore/LufthausStore-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "075958f95ac195eef1bc3d95f21b520999790d82e6e3ded75ba7aa9768ac5997", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a LufthausStore NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: LufthausStore\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47508396 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/MFLClubs/MFLClubs-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/MFLClubs/MFLClubs-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index c736e56..0000000 --- a/templates/NFTCatalog/MFLClubs/MFLClubs-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "63b533db74dc5f8a2d514a92cb41e264302af9f3e468c3ac20b6f25c52d6f816", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a MFLClubs NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: MFLClubs\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47509102 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/MFLPackCollection/MFLPackCollection-StorefrontRemoveItem-testnet.template.json b/templates/NFTCatalog/MFLPackCollection/MFLPackCollection-StorefrontRemoveItem-testnet.template.json deleted file mode 100644 index 3119bb9..0000000 --- a/templates/NFTCatalog/MFLPackCollection/MFLPackCollection-StorefrontRemoveItem-testnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "7a680f2508d01b22491d3358cf5e53cd09a26a0ec4a8c2618e8bb56c214c4d6f", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a MFLPackCollection NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: MFLPackCollection\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95813560 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/MFLPacks/MFLPacks-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/MFLPacks/MFLPacks-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index da8ef18..0000000 --- a/templates/NFTCatalog/MFLPacks/MFLPacks-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "6e24caac7010b4b0c0cd96ff352ed29fc03c0ef9c4e53d4015cfae7b48ff9db2", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a MFLPacks NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: MFLPacks\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47512352 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/MFLPlayers/MFLPlayers-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/MFLPlayers/MFLPlayers-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 8542d0c..0000000 --- a/templates/NFTCatalog/MFLPlayers/MFLPlayers-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "9651d41b76c26afb26feeafe72103711b4610b50cca471b958d40b107976c88a", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a MFLPlayers NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: MFLPlayers\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47492718 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/MetaPanda/MetaPanda-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/MetaPanda/MetaPanda-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 7eb3339..0000000 --- a/templates/NFTCatalog/MetaPanda/MetaPanda-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "ab8901c6b240d607e18e046cc111bcff01da1b4b0728f3c18d361fe4faade4f7", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a MetaPanda NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: MetaPanda\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47507291 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Metabilia/Metabilia-StorefrontRemoveItem-testnet.template.json b/templates/NFTCatalog/Metabilia/Metabilia-StorefrontRemoveItem-testnet.template.json deleted file mode 100644 index cc6d6ca..0000000 --- a/templates/NFTCatalog/Metabilia/Metabilia-StorefrontRemoveItem-testnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "ac1f924b1c37dd8c9d6ef95080fb32dc80aefb7ef2d40f225a55df51dc35790c", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Metabilia NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Metabilia\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95813634 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Mindtrix/Mindtrix-StorefrontRemoveItem.template.json b/templates/NFTCatalog/Mindtrix/Mindtrix-StorefrontRemoveItem.template.json deleted file mode 100644 index 819fcda..0000000 --- a/templates/NFTCatalog/Mindtrix/Mindtrix-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "a51ded3148b5365237fe0c419548bcbd98774c473e9d29833f61ff03ecef011b", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Mindtrix NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Mindtrix\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47510007 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95809401 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/MintStoreItem/MintStoreItem-StorefrontRemoveItem.template.json b/templates/NFTCatalog/MintStoreItem/MintStoreItem-StorefrontRemoveItem.template.json deleted file mode 100644 index ee2877f..0000000 --- a/templates/NFTCatalog/MintStoreItem/MintStoreItem-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "3c9548e5f5c2f33fa934d8ed8a3f76db927212f3950151a87bb8948cecc61379", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a MintStoreItem NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: MintStoreItem\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47510027 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95809422 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Momentables/Momentables-StorefrontRemoveItem.template.json b/templates/NFTCatalog/Momentables/Momentables-StorefrontRemoveItem.template.json deleted file mode 100644 index 2efc5bf..0000000 --- a/templates/NFTCatalog/Momentables/Momentables-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "2b44c36f0d3b4891ad3e97d8df2cccd50cb4f7eb2ee2c695570168337fa94d50", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Momentables NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Momentables\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47508833 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95808012 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/MonoCats/MonoCats-StorefrontRemoveItem.template.json b/templates/NFTCatalog/MonoCats/MonoCats-StorefrontRemoveItem.template.json deleted file mode 100644 index 295785c..0000000 --- a/templates/NFTCatalog/MonoCats/MonoCats-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "b0421b4c632a40e38c1fc910534e7b8d83af76de7dafcfb90b57703588c4f725", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a MonoCats NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: MonoCats\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47499699 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95797154 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/MonoCatsGachapon/MonoCatsGachapon-StorefrontRemoveItem.template.json b/templates/NFTCatalog/MonoCatsGachapon/MonoCatsGachapon-StorefrontRemoveItem.template.json deleted file mode 100644 index 2e4c06e..0000000 --- a/templates/NFTCatalog/MonoCatsGachapon/MonoCatsGachapon-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "bff98d8794baa59ce47eb93525bcb2657f5fcdeb7b7b2371170a3fae266b225a", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a MonoCatsGachapon NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: MonoCatsGachapon\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47501562 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95799376 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/MonoCatsGashapon/MonoCatsGashapon-StorefrontRemoveItem-testnet.template.json b/templates/NFTCatalog/MonoCatsGashapon/MonoCatsGashapon-StorefrontRemoveItem-testnet.template.json deleted file mode 100644 index 49bdc8a..0000000 --- a/templates/NFTCatalog/MonoCatsGashapon/MonoCatsGashapon-StorefrontRemoveItem-testnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "b5bb2d493a44c6aee57b79c5bca3e0df4773c0854e59ee43303dd1bfbd51e36d", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a MonoCatsGashapon NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: MonoCatsGashapon\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95814082 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/MusicPeaksAttendanceToken/MusicPeaksAttendanceToken-StorefrontRemoveItem.template.json b/templates/NFTCatalog/MusicPeaksAttendanceToken/MusicPeaksAttendanceToken-StorefrontRemoveItem.template.json deleted file mode 100644 index ffc19cb..0000000 --- a/templates/NFTCatalog/MusicPeaksAttendanceToken/MusicPeaksAttendanceToken-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "da2b866a2c9654541a0aa9a8490b285d92c011caba8c01577ad29f98c078fba6", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a MusicPeaksAttendanceToken NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: MusicPeaksAttendanceToken\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47508691 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95807842 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/MusicPeaksMembershipToken/MusicPeaksMembershipToken-StorefrontRemoveItem.template.json b/templates/NFTCatalog/MusicPeaksMembershipToken/MusicPeaksMembershipToken-StorefrontRemoveItem.template.json deleted file mode 100644 index ff5c7fb..0000000 --- a/templates/NFTCatalog/MusicPeaksMembershipToken/MusicPeaksMembershipToken-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "12290e7470bb644e0d333b46c7c7305867cc5a9d86d48f626356d6fb028fce37", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a MusicPeaksMembershipToken NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: MusicPeaksMembershipToken\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47503209 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95801317 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/MusicPeaksVideoNFT/MusicPeaksVideoNFT-StorefrontRemoveItem.template.json b/templates/NFTCatalog/MusicPeaksVideoNFT/MusicPeaksVideoNFT-StorefrontRemoveItem.template.json deleted file mode 100644 index 3a98c76..0000000 --- a/templates/NFTCatalog/MusicPeaksVideoNFT/MusicPeaksVideoNFT-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "3237dfdba120da0a8a0d3f494743fdb603f8221fbab0931657779c42896e98fb", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a MusicPeaksVideoNFT NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: MusicPeaksVideoNFT\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47505468 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95804010 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/NBATopShot/NBATopShot-StorefrontRemoveItem.template.json b/templates/NFTCatalog/NBATopShot/NBATopShot-StorefrontRemoveItem.template.json deleted file mode 100644 index 7c4c1b1..0000000 --- a/templates/NFTCatalog/NBATopShot/NBATopShot-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "2a3834dfc1cf5d6113e597817a1b467cd7c85f2bca79500d7b3989d318757836", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a NBATopShot NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: NBATopShot\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47489455 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95785013 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/NBATopShotInArena/NBATopShotInArena-StorefrontRemoveItem.template.json b/templates/NFTCatalog/NBATopShotInArena/NBATopShotInArena-StorefrontRemoveItem.template.json deleted file mode 100644 index f9c1113..0000000 --- a/templates/NFTCatalog/NBATopShotInArena/NBATopShotInArena-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "94ce7041b5e741c25c4bc982de34a95c20d5fe7351ebcb0dc5a23238eaee62b1", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a NBATopShotInArena NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: NBATopShotInArena\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47488501 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95783884 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/NFLAllDay/NFLAllDay-StorefrontRemoveItem.template.json b/templates/NFTCatalog/NFLAllDay/NFLAllDay-StorefrontRemoveItem.template.json deleted file mode 100644 index ab97525..0000000 --- a/templates/NFTCatalog/NFLAllDay/NFLAllDay-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "d88d3e62ea30bd150214ce47e2a149225aeef8506517280e3a9c0d44237913fb", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a NFLAllDay NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: NFLAllDay\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47507410 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95806333 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/NFLAllDayPacks/NFLAllDayPacks-StorefrontRemoveItem.template.json b/templates/NFTCatalog/NFLAllDayPacks/NFLAllDayPacks-StorefrontRemoveItem.template.json deleted file mode 100644 index f6fa235..0000000 --- a/templates/NFTCatalog/NFLAllDayPacks/NFLAllDayPacks-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "266dcc81af3f1fe679beb9c97f5125e7700a1bc30153573594c775a546853511", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a NFLAllDayPacks NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: NFLAllDayPacks\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47502901 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95800952 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/NeoCharity2021/NeoCharity2021-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/NeoCharity2021/NeoCharity2021-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index c7b96ba..0000000 --- a/templates/NFTCatalog/NeoCharity2021/NeoCharity2021-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "26d096819219bf9e54968f6a8d122582da97b519e24aa50ff9a364058cffe511", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a NeoCharity2021 NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: NeoCharity2021\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47502640 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/NextName/NextName-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/NextName/NextName-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index eabf289..0000000 --- a/templates/NFTCatalog/NextName/NextName-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "3cc874b1fc52516a530d1317dd135da27b8ff0fa1a3dafb8ec3f8f5068b152e7", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a NextName NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: NextName\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47487917 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/OneShotsComicBookTradingCardsbyTibles/OneShotsComicBookTradingCardsbyTibles-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/OneShotsComicBookTradingCardsbyTibles/OneShotsComicBookTradingCardsbyTibles-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index f0f41a9..0000000 --- a/templates/NFTCatalog/OneShotsComicBookTradingCardsbyTibles/OneShotsComicBookTradingCardsbyTibles-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "f37e14301c249ee5d7f7a69e943b00eb2f17f1d51567efe7378a9b22db5dba7c", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a OneShotsComicBookTradingCardsbyTibles NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: OneShotsComicBookTradingCardsbyTibles\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47488346 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/OpenLockerIncBoneYardHuskyzClub/OpenLockerIncBoneYardHuskyzClub-StorefrontRemoveItem.template.json b/templates/NFTCatalog/OpenLockerIncBoneYardHuskyzClub/OpenLockerIncBoneYardHuskyzClub-StorefrontRemoveItem.template.json deleted file mode 100644 index 899c7e8..0000000 --- a/templates/NFTCatalog/OpenLockerIncBoneYardHuskyzClub/OpenLockerIncBoneYardHuskyzClub-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "95ae68038a5eaab703f3ada2614eb6bfcbd6f87c0bc851765bb08d1a1fd80b3a", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a OpenLockerIncBoneYardHuskyzClub NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: OpenLockerIncBoneYardHuskyzClub\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47506353 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95805077 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/PartyDrinks/PartyDrinks-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/PartyDrinks/PartyDrinks-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index d16f557..0000000 --- a/templates/NFTCatalog/PartyDrinks/PartyDrinks-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "dd707e4ad9e72b2f22c7151eb37c9099f09c4956399ff517b8e72ff8ec539cb6", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a PartyDrinks NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: PartyDrinks\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47499578 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/PartyGooberz/PartyGooberz-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/PartyGooberz/PartyGooberz-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 576053e..0000000 --- a/templates/NFTCatalog/PartyGooberz/PartyGooberz-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "37d46005d350175ee8aacdddf1da6f3a7617f2154948ff8171f7bb5376e2af69", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a PartyGooberz NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: PartyGooberz\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47497840 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/PharaohCats/PharaohCats-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/PharaohCats/PharaohCats-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 9297f7a..0000000 --- a/templates/NFTCatalog/PharaohCats/PharaohCats-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "af807be72591864c00259ce6ced21868bdb00edfe2c57690b2d1a50c0b5aeca3", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a PharaohCats NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: PharaohCats\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47492972 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Pickem/Pickem-StorefrontRemoveItem.template.json b/templates/NFTCatalog/Pickem/Pickem-StorefrontRemoveItem.template.json deleted file mode 100644 index 5d52daf..0000000 --- a/templates/NFTCatalog/Pickem/Pickem-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "fd3a6d0c902dc55ceee2c5dcaa5a68cc0e4ce55db56873e8fba2f5ec624039fe", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Pickem NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Pickem\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47505075 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95803541 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/PiratesOfTheMetaverse/PiratesOfTheMetaverse-StorefrontRemoveItem.template.json b/templates/NFTCatalog/PiratesOfTheMetaverse/PiratesOfTheMetaverse-StorefrontRemoveItem.template.json deleted file mode 100644 index 9ce90bc..0000000 --- a/templates/NFTCatalog/PiratesOfTheMetaverse/PiratesOfTheMetaverse-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "fb0ec30f31c1021f33dd53fe35c98322079117d894daee689a50a561ca70c8a3", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a PiratesOfTheMetaverse NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: PiratesOfTheMetaverse\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47492903 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95789071 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/PuddleV1/PuddleV1-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/PuddleV1/PuddleV1-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index fa7e5b1..0000000 --- a/templates/NFTCatalog/PuddleV1/PuddleV1-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "13e448d16591e0d4f5440e53a3c22bfeed66c1d8500c92bd0508eba89a0249c5", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a PuddleV1 NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: PuddleV1\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47505139 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/RCRDSHP/RCRDSHP-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/RCRDSHP/RCRDSHP-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index e7c9e24..0000000 --- a/templates/NFTCatalog/RCRDSHP/RCRDSHP-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "bc1a301b85bcd775d194d27a9d3c52536b3d3f92909555a874bf224669e1d347", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a RCRDSHP NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: RCRDSHP\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47505655 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/RaceDayNFT/RaceDayNFT-StorefrontRemoveItem.template.json b/templates/NFTCatalog/RaceDayNFT/RaceDayNFT-StorefrontRemoveItem.template.json deleted file mode 100644 index bf3cb1d..0000000 --- a/templates/NFTCatalog/RaceDayNFT/RaceDayNFT-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "a73cdecc969d8a107043956638aa3f4ee3f4621f7c0c6b6c463f762c35667e4c", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a RaceDayNFT NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: RaceDayNFT\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47510150 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95809571 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/RogueBunnies/RogueBunnies-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/RogueBunnies/RogueBunnies-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 3c43db1..0000000 --- a/templates/NFTCatalog/RogueBunnies/RogueBunnies-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "6433cea02d04b9a1cd1b6e6750911a10de26a1d1d36ca09fbce291ed385b12da", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a RogueBunnies NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: RogueBunnies\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47509165 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/SNKRHUDNFT/SNKRHUDNFT-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/SNKRHUDNFT/SNKRHUDNFT-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index f55b67a..0000000 --- a/templates/NFTCatalog/SNKRHUDNFT/SNKRHUDNFT-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "aff0b8b384bd496f5a992538fa80ed2f3a843a83f2bd36c37b9a7bf174842ef1", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a SNKRHUDNFT NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: SNKRHUDNFT\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47508142 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/SeedsOfHappinessGenesis/SeedsOfHappinessGenesis-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/SeedsOfHappinessGenesis/SeedsOfHappinessGenesis-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index ed68999..0000000 --- a/templates/NFTCatalog/SeedsOfHappinessGenesis/SeedsOfHappinessGenesis-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "26ee9d85a9e4277afbd8b46d1766736aeebb4a67b6beb4a97d1f0c97d23443ec", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a SeedsOfHappinessGenesis NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: SeedsOfHappinessGenesis\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47493192 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/SequelDigitalArt/SequelDigitalArt-StorefrontRemoveItem.template.json b/templates/NFTCatalog/SequelDigitalArt/SequelDigitalArt-StorefrontRemoveItem.template.json deleted file mode 100644 index 05f6e6e..0000000 --- a/templates/NFTCatalog/SequelDigitalArt/SequelDigitalArt-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "29643784a72f2bda49d9bd8e424b3234495d99301294140469ac776a72ac26fb", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a SequelDigitalArt NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: SequelDigitalArt\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47493647 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95789960 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/SeussiblesNFTCollectionbyTibles/SeussiblesNFTCollectionbyTibles-StorefrontRemoveItem.template.json b/templates/NFTCatalog/SeussiblesNFTCollectionbyTibles/SeussiblesNFTCollectionbyTibles-StorefrontRemoveItem.template.json deleted file mode 100644 index 7ed9479..0000000 --- a/templates/NFTCatalog/SeussiblesNFTCollectionbyTibles/SeussiblesNFTCollectionbyTibles-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "0213d885d1fe23b51dbc80f46c9700d0ea88896242e5722d99960f451913e3b7", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a SeussiblesNFTCollectionbyTibles NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: SeussiblesNFTCollectionbyTibles\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47503038 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95801113 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/ShebaHopeGrows/ShebaHopeGrows-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/ShebaHopeGrows/ShebaHopeGrows-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 3ee450e..0000000 --- a/templates/NFTCatalog/ShebaHopeGrows/ShebaHopeGrows-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "da8cbe0159036cf1641215a9620ff91b6d124375f9d1ef313f9a7194b21226cf", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a ShebaHopeGrows NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: ShebaHopeGrows\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47507136 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/SlushTicketNFTs/SlushTicketNFTs-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/SlushTicketNFTs/SlushTicketNFTs-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 6336c48..0000000 --- a/templates/NFTCatalog/SlushTicketNFTs/SlushTicketNFTs-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "453ccb6f4262e7769368aef0848b0d3d120f6f08d8f793e5bf051b3ac41b19ff", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a SlushTicketNFTs NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: SlushTicketNFTs\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47507475 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/SoulMadeComponent/SoulMadeComponent-StorefrontRemoveItem.template.json b/templates/NFTCatalog/SoulMadeComponent/SoulMadeComponent-StorefrontRemoveItem.template.json deleted file mode 100644 index 741a696..0000000 --- a/templates/NFTCatalog/SoulMadeComponent/SoulMadeComponent-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "6175c7888e8dbf9c657136674f5e4f9bbe6c4049a33db8650ef5997709117972", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a SoulMadeComponent NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: SoulMadeComponent\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47501438 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95799231 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/SoulMadeMain/SoulMadeMain-StorefrontRemoveItem.template.json b/templates/NFTCatalog/SoulMadeMain/SoulMadeMain-StorefrontRemoveItem.template.json deleted file mode 100644 index 2ab8c77..0000000 --- a/templates/NFTCatalog/SoulMadeMain/SoulMadeMain-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "bbf05bd911fc3804d068f57d872b1174807c2c961eb25f6691a4dca319fc756d", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a SoulMadeMain NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: SoulMadeMain\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47507695 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95806664 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/SoulMadePack/SoulMadePack-StorefrontRemoveItem.template.json b/templates/NFTCatalog/SoulMadePack/SoulMadePack-StorefrontRemoveItem.template.json deleted file mode 100644 index 18f8cd4..0000000 --- a/templates/NFTCatalog/SoulMadePack/SoulMadePack-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "86c3d69c0220f2570ef0c706d4ab55ddae22d9f47a63ebfaedc0e1425b577bc7", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a SoulMadePack NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: SoulMadePack\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47513015 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95812945 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/SportsIconCollection/SportsIconCollection-StorefrontRemoveItem.template.json b/templates/NFTCatalog/SportsIconCollection/SportsIconCollection-StorefrontRemoveItem.template.json deleted file mode 100644 index d066ce1..0000000 --- a/templates/NFTCatalog/SportsIconCollection/SportsIconCollection-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "c162dfbad6d54e95e109586b1f6e888e589263ff988d39a5030af681cfb460bf", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a SportsIconCollection NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: SportsIconCollection\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47499252 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95796623 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/StanzClubCollection/StanzClubCollection-StorefrontRemoveItem.template.json b/templates/NFTCatalog/StanzClubCollection/StanzClubCollection-StorefrontRemoveItem.template.json deleted file mode 100644 index c625696..0000000 --- a/templates/NFTCatalog/StanzClubCollection/StanzClubCollection-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "2f6eb41aa136c6d346d875464802c15b7352a9e7d2c8fcabc27fa9a8a350a8f6", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a StanzClubCollection NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: StanzClubCollection\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47509737 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95809090 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Starly/Starly-StorefrontRemoveItem.template.json b/templates/NFTCatalog/Starly/Starly-StorefrontRemoveItem.template.json deleted file mode 100644 index 353b148..0000000 --- a/templates/NFTCatalog/Starly/Starly-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "168ae725987ea4060e55a700d0a3cc8bf0931c26941e7e820c9923574ccbdc5d", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Starly NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Starly\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47489305 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95784839 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/StartupyWGrze/StartupyWGrze-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/StartupyWGrze/StartupyWGrze-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 32598ff..0000000 --- a/templates/NFTCatalog/StartupyWGrze/StartupyWGrze-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "35766a1683711296cd9fd184f69819b0b5de8ae71cec96333a626f661b8ba6a6", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a StartupyWGrze NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: StartupyWGrze\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47489139 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/StoreFrontTR/StoreFrontTR-StorefrontRemoveItem.template.json b/templates/NFTCatalog/StoreFrontTR/StoreFrontTR-StorefrontRemoveItem.template.json deleted file mode 100644 index bd69e4b..0000000 --- a/templates/NFTCatalog/StoreFrontTR/StoreFrontTR-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "542dcafb0f5ae4c34dd0d22cd3f843354569f920b8f994ff78203de0ac0bb70d", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a StoreFrontTR NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: StoreFrontTR\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47497078 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95794034 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/SturdyExchange/SturdyExchange-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/SturdyExchange/SturdyExchange-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 080a71b..0000000 --- a/templates/NFTCatalog/SturdyExchange/SturdyExchange-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "af9d47f4689caaeb87d36316dd19e70ad82ef1e7a1f786b982826703653ebe57", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a SturdyExchange NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: SturdyExchange\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47507123 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/TMNFTV2/TMNFTV2-StorefrontRemoveItem-testnet.template.json b/templates/NFTCatalog/TMNFTV2/TMNFTV2-StorefrontRemoveItem-testnet.template.json deleted file mode 100644 index 27b32f0..0000000 --- a/templates/NFTCatalog/TMNFTV2/TMNFTV2-StorefrontRemoveItem-testnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "c19a82207fda9c361879b2c17603f1a907ac7f3be2ddd2215d65fe542dad2a5d", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a TMNFTV2 NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: TMNFTV2\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95813936 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/TestEditionsNFTs/TestEditionsNFTs-StorefrontRemoveItem-testnet.template.json b/templates/NFTCatalog/TestEditionsNFTs/TestEditionsNFTs-StorefrontRemoveItem-testnet.template.json deleted file mode 100644 index 89c2ce6..0000000 --- a/templates/NFTCatalog/TestEditionsNFTs/TestEditionsNFTs-StorefrontRemoveItem-testnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "19928ced41722f6c0e56d83b9c31f227f67fd7d2e927410a410e40115954753f", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a TestEditionsNFTs NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: TestEditionsNFTs\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95813864 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/TheBroadwayExchange/TheBroadwayExchange-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/TheBroadwayExchange/TheBroadwayExchange-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 5ad5dfe..0000000 --- a/templates/NFTCatalog/TheBroadwayExchange/TheBroadwayExchange-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "e7b1a2a377c6f53df14b32d3445a62c83e54a1695fc2af1f6667eea497fe2347", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a TheBroadwayExchange NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: TheBroadwayExchange\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47508270 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/TheCharlieCollection/TheCharlieCollection-StorefrontRemoveItem-testnet.template.json b/templates/NFTCatalog/TheCharlieCollection/TheCharlieCollection-StorefrontRemoveItem-testnet.template.json deleted file mode 100644 index a9e0c2c..0000000 --- a/templates/NFTCatalog/TheCharlieCollection/TheCharlieCollection-StorefrontRemoveItem-testnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "6e3d49d5a531c15161d89e903dcb46be0087cf7f52b780aabcad9648d42695e5", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a TheCharlieCollection NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: TheCharlieCollection\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95813778 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/TheCryptoPiggoPotionCollection/TheCryptoPiggoPotionCollection-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/TheCryptoPiggoPotionCollection/TheCryptoPiggoPotionCollection-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index f3c854c..0000000 --- a/templates/NFTCatalog/TheCryptoPiggoPotionCollection/TheCryptoPiggoPotionCollection-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "62dbd18ca394a725a016a46239eb34ed1cb1475098e0059f1080b8308e138ca0", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a TheCryptoPiggoPotionCollection NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: TheCryptoPiggoPotionCollection\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47488988 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/TheDooverseNFTCollection/TheDooverseNFTCollection-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/TheDooverseNFTCollection/TheDooverseNFTCollection-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index a619cf1..0000000 --- a/templates/NFTCatalog/TheDooverseNFTCollection/TheDooverseNFTCollection-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "38d6d123de5c6e15a78a73c4697dbcb8ae46e23441bc66ff004f7e667f28fa0f", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a TheDooverseNFTCollection NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: TheDooverseNFTCollection\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47507199 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/TheFabricant_WHOLELAND_XXories/TheFabricant_WHOLELAND_XXories-StorefrontRemoveItem.template.json b/templates/NFTCatalog/TheFabricant_WHOLELAND_XXories/TheFabricant_WHOLELAND_XXories-StorefrontRemoveItem.template.json deleted file mode 100644 index 9924d0e..0000000 --- a/templates/NFTCatalog/TheFabricant_WHOLELAND_XXories/TheFabricant_WHOLELAND_XXories-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "d25b405a61d3710a95154187b04e020f47e94050dfec36d9f494f8b47a9dd14f", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a TheFabricant_WHOLELAND_XXories NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: TheFabricant_WHOLELAND_XXories\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47502328 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95800278 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/TheFootballClub/TheFootballClub-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/TheFootballClub/TheFootballClub-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 803de4d..0000000 --- a/templates/NFTCatalog/TheFootballClub/TheFootballClub-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "5b1c7af0193b5618fc4049d7485ecba6e1f6e5333d40c6c3dad33ca86424a992", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a TheFootballClub NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: TheFootballClub\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47509493 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/TheKeeprCollection/TheKeeprCollection-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/TheKeeprCollection/TheKeeprCollection-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index a0dca5a..0000000 --- a/templates/NFTCatalog/TheKeeprCollection/TheKeeprCollection-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "d351dffb68d4e162108ecaca266f11380df267e56b70ae46e250899ee5ca4729", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a TheKeeprCollection NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: TheKeeprCollection\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47509619 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/TheKrikeySolarpupsCollection/TheKrikeySolarpupsCollection-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/TheKrikeySolarpupsCollection/TheKrikeySolarpupsCollection-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 5178a4a..0000000 --- a/templates/NFTCatalog/TheKrikeySolarpupsCollection/TheKrikeySolarpupsCollection-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "f6812cedd2372b4f5f5ef612453c9de62fd23dbdc9832783a516fff6c0681787", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a TheKrikeySolarpupsCollection NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: TheKrikeySolarpupsCollection\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47508456 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/TheNFTDayTreasureChestCollection/TheNFTDayTreasureChestCollection-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/TheNFTDayTreasureChestCollection/TheNFTDayTreasureChestCollection-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 736e4e0..0000000 --- a/templates/NFTCatalog/TheNFTDayTreasureChestCollection/TheNFTDayTreasureChestCollection-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "85a03a1117dd889ca9c865121430ac55689b926ecec87adb37abc21a16d10145", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a TheNFTDayTreasureChestCollection NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: TheNFTDayTreasureChestCollection\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47505350 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/ThePlayersLounge/ThePlayersLounge-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/ThePlayersLounge/ThePlayersLounge-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 86b3be0..0000000 --- a/templates/NFTCatalog/ThePlayersLounge/ThePlayersLounge-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "9d4b98c63f7daf23dd58c6fab78bb9dc5b77b25ffa2922672943856375270932", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a ThePlayersLounge NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: ThePlayersLounge\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47493500 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/ThePotion/ThePotion-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/ThePotion/ThePotion-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index fbe85f8..0000000 --- a/templates/NFTCatalog/ThePotion/ThePotion-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "559d98be0033e8cb350de74ee651d34d7959fb84113cf2e09ee580c91f0c3786", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a ThePotion NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: ThePotion\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47501802 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/ThePublishedNFTCollection/ThePublishedNFTCollection-StorefrontRemoveItem.template.json b/templates/NFTCatalog/ThePublishedNFTCollection/ThePublishedNFTCollection-StorefrontRemoveItem.template.json deleted file mode 100644 index d4e578e..0000000 --- a/templates/NFTCatalog/ThePublishedNFTCollection/ThePublishedNFTCollection-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "4e0fc670f86c486202bb8fbaf56970ed807690ff83055758797dc3a0e053c555", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a ThePublishedNFTCollection NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: ThePublishedNFTCollection\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47502049 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95799939 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/TheSkyharborCollection/TheSkyharborCollection-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/TheSkyharborCollection/TheSkyharborCollection-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index de56fb6..0000000 --- a/templates/NFTCatalog/TheSkyharborCollection/TheSkyharborCollection-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "d399157c30790ff0773bc769eb277c84041eb25dc0788b0c955d2e2adbf7c6c2", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a TheSkyharborCollection NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: TheSkyharborCollection\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47512413 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/ThingFundMembershipBadge/ThingFundMembershipBadge-StorefrontRemoveItem.template.json b/templates/NFTCatalog/ThingFundMembershipBadge/ThingFundMembershipBadge-StorefrontRemoveItem.template.json deleted file mode 100644 index d555f9e..0000000 --- a/templates/NFTCatalog/ThingFundMembershipBadge/ThingFundMembershipBadge-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "b81deb48a81d012dca066f22682e62e2b4fce2a7f1ff738dd9643c5282a0b806", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a ThingFundMembershipBadge NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: ThingFundMembershipBadge\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47505768 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95804377 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/ThisIsEpixV2Collection/ThisIsEpixV2Collection-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/ThisIsEpixV2Collection/ThisIsEpixV2Collection-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 3c2538d..0000000 --- a/templates/NFTCatalog/ThisIsEpixV2Collection/ThisIsEpixV2Collection-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "902f8de0e796cb9d53d88851eb4cdf90589ac9c7808bf209f5fd03e80b549a19", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a ThisIsEpixV2Collection NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: ThisIsEpixV2Collection\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47493437 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/TicalUniverse/TicalUniverse-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/TicalUniverse/TicalUniverse-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index a17c041..0000000 --- a/templates/NFTCatalog/TicalUniverse/TicalUniverse-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "f6376a4ce0b5c88668a964ef0ed3a555ce3a0f14df8943d25ae84f879175b39f", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a TicalUniverse NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: TicalUniverse\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47508206 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/TicalUniverseUAT/TicalUniverseUAT-StorefrontRemoveItem-testnet.template.json b/templates/NFTCatalog/TicalUniverseUAT/TicalUniverseUAT-StorefrontRemoveItem-testnet.template.json deleted file mode 100644 index 54504ab..0000000 --- a/templates/NFTCatalog/TicalUniverseUAT/TicalUniverseUAT-StorefrontRemoveItem-testnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "c3fec61c0493fe5a945bad7d01f2c3037a90181ca91f1b30dccaf9283a11f397", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a TicalUniverseUAT NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: TicalUniverseUAT\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95813393 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/TouchstoneFLOWFREAKS/TouchstoneFLOWFREAKS-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/TouchstoneFLOWFREAKS/TouchstoneFLOWFREAKS-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 68f78e4..0000000 --- a/templates/NFTCatalog/TouchstoneFLOWFREAKS/TouchstoneFLOWFREAKS-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "28f1057af2f6daf73ea11c2f225e27c4086a6ee1d063d2414bf886ac3f074002", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a TouchstoneFLOWFREAKS NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: TouchstoneFLOWFREAKS\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47512657 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/TouchstoneManekiPlanets/TouchstoneManekiPlanets-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/TouchstoneManekiPlanets/TouchstoneManekiPlanets-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 03c091b..0000000 --- a/templates/NFTCatalog/TouchstoneManekiPlanets/TouchstoneManekiPlanets-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "bf6a94626a897e8e0f315dfb1a9b181a342785a43cc2caaeae8aa1080c494a06", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a TouchstoneManekiPlanets NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: TouchstoneManekiPlanets\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47505285 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/TouchstoneProfessorMetasAcademyHackathon2023/TouchstoneProfessorMetasAcademyHackathon2023-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/TouchstoneProfessorMetasAcademyHackathon2023/TouchstoneProfessorMetasAcademyHackathon2023-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index df23ebe..0000000 --- a/templates/NFTCatalog/TouchstoneProfessorMetasAcademyHackathon2023/TouchstoneProfessorMetasAcademyHackathon2023-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "5020c5d91487b058544ae5ed2a940fac3660162adc96dce2c3a58be7cdbdc224", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a TouchstoneProfessorMetasAcademyHackathon2023 NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: TouchstoneProfessorMetasAcademyHackathon2023\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47493110 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/TouchstoneTheGritIron/TouchstoneTheGritIron-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/TouchstoneTheGritIron/TouchstoneTheGritIron-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 3834078..0000000 --- a/templates/NFTCatalog/TouchstoneTheGritIron/TouchstoneTheGritIron-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "18fe73f46c0c3aa64074ae8d73a3be984ee8be2a3dbeca3c5ae14a44bed1249b", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a TouchstoneTheGritIron NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: TouchstoneTheGritIron\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47497225 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Trart/Trart-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/Trart/Trart-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 45d4ae7..0000000 --- a/templates/NFTCatalog/Trart/Trart-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "725ff336ccdfa0d66eff08cc3d86d52dc2d6637f08ae6fabfaccddb24baa3fcb", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Trart NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Trart\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47512858 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/TuneGONFT/TuneGONFT-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/TuneGONFT/TuneGONFT-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 58ae099..0000000 --- a/templates/NFTCatalog/TuneGONFT/TuneGONFT-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "b6301af38fd9c9ff878cac206a3649aa97adb9d61040f1692f32b499d1b0af26", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a TuneGONFT NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: TuneGONFT\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47506255 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/TuneKitties/TuneKitties-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/TuneKitties/TuneKitties-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 90a4b78..0000000 --- a/templates/NFTCatalog/TuneKitties/TuneKitties-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "72d205c5ed91cb0cf7d23842a4519bc8b40e731ddc63dd33881e9a879344914d", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a TuneKitties NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: TuneKitties\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47506337 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/UFCStrike/UFCStrike-StorefrontRemoveItem.template.json b/templates/NFTCatalog/UFCStrike/UFCStrike-StorefrontRemoveItem.template.json deleted file mode 100644 index d0504bd..0000000 --- a/templates/NFTCatalog/UFCStrike/UFCStrike-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "f2b953f245e38e784e7962af71b9b2571f489de26b28ec0e518abb2da8f95ac7", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a UFCStrike NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: UFCStrike\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47512505 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95812348 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Versus/Versus-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/Versus/Versus-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 852b508..0000000 --- a/templates/NFTCatalog/Versus/Versus-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "db6d2936b1229d2be9a75de373e71c109217682c62f3741baa45f642381b5721", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Versus NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Versus\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47506554 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Wearables/Wearables-StorefrontRemoveItem.template.json b/templates/NFTCatalog/Wearables/Wearables-StorefrontRemoveItem.template.json deleted file mode 100644 index b69eb06..0000000 --- a/templates/NFTCatalog/Wearables/Wearables-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "63d475b19d2c3c3587cff972cbdad824597fa4eef928b01613b2c6fbec76ecd2", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Wearables NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Wearables\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47506704 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95805497 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/XvsXNFTCollection/XvsXNFTCollection-StorefrontRemoveItem.template.json b/templates/NFTCatalog/XvsXNFTCollection/XvsXNFTCollection-StorefrontRemoveItem.template.json deleted file mode 100644 index b85af2e..0000000 --- a/templates/NFTCatalog/XvsXNFTCollection/XvsXNFTCollection-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "2cf1659511fc7df239162b730cd027066a347a57414621b8bc24d06355b6bbd6", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a XvsXNFTCollection NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: XvsXNFTCollection\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47510469 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95809942 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/YBees/YBees-StorefrontRemoveItem.template.json b/templates/NFTCatalog/YBees/YBees-StorefrontRemoveItem.template.json deleted file mode 100644 index 8f336b5..0000000 --- a/templates/NFTCatalog/YBees/YBees-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "60a0d74887a03816991115c7d90be4415b7fe0864715a488d979ffb6f6ca1bb1", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a YBees NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: YBees\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47501316 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95799086 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Yahoo/Yahoo-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/Yahoo/Yahoo-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 96d4740..0000000 --- a/templates/NFTCatalog/Yahoo/Yahoo-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "07e5987088265b06ede573ef122d82c8f5505df331b8690f8fc5c7f3f23fd5f0", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Yahoo NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Yahoo\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47494659 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/YahooPartners/YahooPartners-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/YahooPartners/YahooPartners-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 7a86ce1..0000000 --- a/templates/NFTCatalog/YahooPartners/YahooPartners-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "6209744f966a5de9df72ad42b089894288d32e04648229f8bff603b8fddb6398", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a YahooPartners NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: YahooPartners\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47513288 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/Zeedz/Zeedz-StorefrontRemoveItem.template.json b/templates/NFTCatalog/Zeedz/Zeedz-StorefrontRemoveItem.template.json deleted file mode 100644 index 8b62f98..0000000 --- a/templates/NFTCatalog/Zeedz/Zeedz-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "9cd560c81d20b787982f8c4ae5777787aceaf5ca82b3c86f8cae32e5240dfe3a", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a Zeedz NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: Zeedz\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47488269 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95783613 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/athlete_studio/athlete_studio-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/athlete_studio/athlete_studio-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index b46d5e4..0000000 --- a/templates/NFTCatalog/athlete_studio/athlete_studio-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "dd1796bbefb78160f629bcfe1e8de158de47e71894660674e74426decfa34e0b", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a athlete_studio NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: athlete_studio\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47500147 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/bl0x/bl0x-StorefrontRemoveItem.template.json b/templates/NFTCatalog/bl0x/bl0x-StorefrontRemoveItem.template.json deleted file mode 100644 index 0fefb80..0000000 --- a/templates/NFTCatalog/bl0x/bl0x-StorefrontRemoveItem.template.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "de28d67a300935e013e7375bc20cbb6a8fe2f67cb0774bd78eaead775bb2aef0", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a bl0x NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: bl0x\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47508010 - }, - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95807041 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/digiYo/digiYo-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/digiYo/digiYo-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 36f6ffd..0000000 --- a/templates/NFTCatalog/digiYo/digiYo-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "62c8ce5092a04b025bda42bdba57d9c1543bd272318bfbf024cb1bcc02df96f5", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a digiYo NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: digiYo\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47488924 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/eFutureRewardsProgram/eFutureRewardsProgram-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/eFutureRewardsProgram/eFutureRewardsProgram-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index f2d2b60..0000000 --- a/templates/NFTCatalog/eFutureRewardsProgram/eFutureRewardsProgram-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "1fcc956aadfa454a5ecef7960b3e8f355c4beec48564233147e67dea4255624f", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a eFutureRewardsProgram NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: eFutureRewardsProgram\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47499322 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/schmoes_pre_launch_token/schmoes_pre_launch_token-StorefrontRemoveItem-testnet.template.json b/templates/NFTCatalog/schmoes_pre_launch_token/schmoes_pre_launch_token-StorefrontRemoveItem-testnet.template.json deleted file mode 100644 index 4ce27bb..0000000 --- a/templates/NFTCatalog/schmoes_pre_launch_token/schmoes_pre_launch_token-StorefrontRemoveItem-testnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "6bb37ad8bf3aaca017a241f2929951960fdfe17dac5fca5a0c8bf701cf9469af", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a schmoes_pre_launch_token NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: schmoes_pre_launch_token\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "testnet": { - "address": "0x2d55b98eb200daef", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95814007 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/schmoes_prelaunch_token/schmoes_prelaunch_token-StorefrontRemoveItem-mainnet.template.json b/templates/NFTCatalog/schmoes_prelaunch_token/schmoes_prelaunch_token-StorefrontRemoveItem-mainnet.template.json deleted file mode 100644 index 5886929..0000000 --- a/templates/NFTCatalog/schmoes_prelaunch_token/schmoes_prelaunch_token-StorefrontRemoveItem-mainnet.template.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "f_type": "InteractionTemplate", - "f_version": "1.0.0", - "id": "0e2dd12abe3dd8af15f551cfb536d42a78ee02d431abd529f525dcb6705c7d70", - "data": { - "type": "transaction", - "interface": "", - "messages": { - "title": { - "i18n": { - "en-US": "This transaction facilitates the removal of a schmoes_prelaunch_token NFT listing with the StorefrontV2 contract" - } - } - }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: schmoes_prelaunch_token\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", - "dependencies": { - "0xNFTStorefrontV2": { - "NFTStorefrontV2": { - "mainnet": { - "address": "0x4eb8a10cb9f87357", - "contract": "NFTStorefrontV2", - "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", - "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47506892 - } - } - } - }, - "arguments": { - "listingResourceID": { - "index": 0, - "type": "UInt64", - "messages": { - "title": { - "i18n": { - "en-US": "ID of the Storefront listing resource" - } - } - } - } - } - } -} \ No newline at end of file diff --git a/templates/NFTCatalog/xG/xG-StorefrontRemoveItem.template.json b/templates/storefront-remove-listing.template.json similarity index 77% rename from templates/NFTCatalog/xG/xG-StorefrontRemoveItem.template.json rename to templates/storefront-remove-listing.template.json index 78a78cf..3ab54c5 100644 --- a/templates/NFTCatalog/xG/xG-StorefrontRemoveItem.template.json +++ b/templates/storefront-remove-listing.template.json @@ -1,18 +1,23 @@ { "f_type": "InteractionTemplate", "f_version": "1.0.0", - "id": "0f032797eb6013411eef9b24d6047f3b2a435f53073bcb11f9fb561a5807b9b5", + "id": "0a803caf5e5e24d2a995eb51b588da44292c4bf65b1e77fecb5834111e6941af", "data": { "type": "transaction", "interface": "", "messages": { "title": { "i18n": { - "en-US": "This transaction facilitates the removal of a xG NFT listing with the StorefrontV2 contract" + "en-US": "Remove NFT listing" + } + }, + "description": { + "i18n": { + "en-US": "This transaction facilitates the removal of an NFT listing with the StorefrontV2 contract" } } }, - "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n// This transaction was auto-generated with the NFT Catalog (https://github.com/dapperlabs/nft-catalog)\n//\n// This transaction facilitates the removal of a listing with the StorefrontV2 contract\n// \n// Collection Identifier: xG\n//\n// Version: 0.1.1\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", + "cadence": "import NFTStorefrontV2 from 0xNFTStorefrontV2\n\ntransaction(listingResourceID: UInt64) {\n /// `listingResourceID` - ID of the Storefront listing resource\n \n let storefront: &NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}\n\n prepare(acct: AuthAccount) {\n self.storefront = acct.borrow<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontManager}>(from: NFTStorefrontV2.StorefrontStoragePath)\n ?? panic(\"Missing or mis-typed NFTStorefrontV2.Storefront\")\n }\n\n execute {\n self.storefront.removeListing(listingResourceID: listingResourceID)\n }\n}\n\n", "dependencies": { "0xNFTStorefrontV2": { "NFTStorefrontV2": { @@ -21,14 +26,14 @@ "contract": "NFTStorefrontV2", "fq_address": "A.0x4eb8a10cb9f87357.NFTStorefrontV2", "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 47509038 + "pin_block_height": 47513152 }, "testnet": { "address": "0x2d55b98eb200daef", "contract": "NFTStorefrontV2", "fq_address": "A.0x2d55b98eb200daef.NFTStorefrontV2", "pin": "ba061d95016d5506e9f5d1afda15d82eb066aa8b0552e8b26dc7950fa5714d51", - "pin_block_height": 95808260 + "pin_block_height": 95813107 } } } @@ -47,4 +52,4 @@ } } } -} \ No newline at end of file +}