039b8b424b
* V2 Sync * v2 sync * Launchpad V2 sync * Update trading start time description * Add explicit_content to CollectionDetails update dependencies * Minor UI changes * Update MintPriceMessage interface * Add symbolState.value to CollectionDetails update dependencies * Add external_link to Collection Details * Remove the tab Instantiate from the minter contract dashboard * Add price check for update_minting_price * Implement dynamic per address limit check * Add checks for trading start time * Update Minter Contract Dashboard Instantiate Tab - 1 * Update Minter Contract Dashboard Instantiate Tab - 2 * Remove Instantiate tab from SG721 Contract Dashboard * Update whitelist contract helpers * Update whitelist instantiate fee wrt member limit Co-authored-by: name-user1 <eray@deuslabs.fi> Co-authored-by: Serkan Reis <serkanreis@gmail.com>
51 lines
1.2 KiB
TypeScript
51 lines
1.2 KiB
TypeScript
import type { LinkTabProps } from './LinkTab'
|
|
|
|
export const sg721LinkTabs: LinkTabProps[] = [
|
|
{
|
|
title: 'Query',
|
|
description: `Dispatch queries with your SG721 contract`,
|
|
href: '/contracts/sg721/query',
|
|
},
|
|
{
|
|
title: 'Execute',
|
|
description: `Execute SG721 contract actions`,
|
|
href: '/contracts/sg721/execute',
|
|
},
|
|
]
|
|
|
|
export const minterLinkTabs: LinkTabProps[] = [
|
|
{
|
|
title: 'Instantiate',
|
|
description: `Initialize a new Minter contract`,
|
|
href: '/contracts/minter/instantiate',
|
|
},
|
|
{
|
|
title: 'Query',
|
|
description: `Dispatch queries with your Minter contract`,
|
|
href: '/contracts/minter/query',
|
|
},
|
|
{
|
|
title: 'Execute',
|
|
description: `Execute Minter contract actions`,
|
|
href: '/contracts/minter/execute',
|
|
},
|
|
]
|
|
|
|
export const whitelistLinkTabs: LinkTabProps[] = [
|
|
{
|
|
title: 'Instantiate',
|
|
description: `Initialize a new Whitelist contract`,
|
|
href: '/contracts/whitelist/instantiate',
|
|
},
|
|
{
|
|
title: 'Query',
|
|
description: `Dispatch queries with your Whitelist contract`,
|
|
href: '/contracts/whitelist/query',
|
|
},
|
|
{
|
|
title: 'Execute',
|
|
description: `Execute Whitelist contract actions`,
|
|
href: '/contracts/whitelist/execute',
|
|
},
|
|
]
|