Skip to content

Commit

Permalink
restore OpenNFT template
Browse files Browse the repository at this point in the history
  • Loading branch information
zapaz committed May 16, 2024
1 parent f31e4a2 commit 755dfe1
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions svelte/src/components/Collection/CollectionTemplates.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,19 @@
[
"OpenNFTsV4/generic",
{
name: "OpenNFTs Generic",
name: "OpenNFTs",
description: "OpenNFTs generic Collection: anyone can Mint NFTs in this collection!",
icon: "building"
icon: "building",
network: "all"
}
],
[
"OpenNFTsV4Skale/generic",
{
name: "Skale OpenNFTs Generic",
name: "Skale OpenNFTs",
description: "OpenNFTs generic Skale Collection: anyone can Mint NFTs in this collection!",
icon: "building"
icon: "building",
network: "skale"
}
],
[
Expand All @@ -27,7 +29,8 @@
name: "AutoMarket",
description:
"AutoMarket ownable OpenNFTs Collection: own your collection, mint and sell your NFTs with royalties",
icon: "dollar-sign"
icon: "dollar-sign",
network: "all"
}
]
]);
Expand All @@ -41,7 +44,7 @@
<div class="titre">Choose your Collection type</div>
<div class="box-fields">
{#each [...templates] as [templateKey, templateValue]}
{#if templateConfig(templateKey) === "ownable"}
{#if templateValue.network === "all"}
<input
class="box-field collection-type"
id="collection-type-{templateKey}"
Expand Down

0 comments on commit 755dfe1

Please sign in to comment.