aa42f8763a
* Add instantiate page for minter * Add query page to minter contract * Add execute page for minter contract * Add contracts index page * Refaactor sg721 helper files * Add instantiate page * Add query page for sg721 * Add execute page for sg721 contract * Copy page templates for whitelist contracts * Add instantitate for whitelist contract * Add query page to whitelist contract * Add execute page for whitelist contract
56 lines
1.3 KiB
TypeScript
56 lines
1.3 KiB
TypeScript
import type { LinkTabProps } from './LinkTab'
|
|
|
|
export const sg721LinkTabs: LinkTabProps[] = [
|
|
{
|
|
title: 'Instantiate',
|
|
description: `Create a new SG721 contract`,
|
|
href: '/contracts/sg721/instantiate',
|
|
},
|
|
{
|
|
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',
|
|
},
|
|
]
|