Update collection creation summary for 1/1 Collections

This commit is contained in:
Serkan Reis 2023-04-03 12:40:33 +03:00
parent 9972e0617a
commit e1707c1ab5

View File

@ -1063,15 +1063,28 @@ const CollectionCreationPage: NextPage = () => {
{transactionHash}
</Anchor>
</Conditional>
<Button className="mt-2">
<Anchor
className="text-white"
external
href={`${STARGAZE_URL}/launchpad/${vendingMinterContractAddress as string}`}
>
View on Launchpad
</Anchor>
</Button>
<Conditional test={minterType === 'vending'}>
<Button className="mt-2">
<Anchor
className="text-white"
external
href={`${STARGAZE_URL}/launchpad/${vendingMinterContractAddress as string}`}
>
View on Launchpad
</Anchor>
</Button>
</Conditional>
<Conditional test={minterType === 'vending'}>
<Button className="mt-2">
<Anchor
className="text-white"
external
href={`${STARGAZE_URL}/marketplace/${sg721ContractAddress as string}?sort=price_asc`}
>
View on Marketplace
</Anchor>
</Button>
</Conditional>
</div>
</Alert>
</Conditional>