2022-07-13 13:56:36 +00:00
|
|
|
import type { LinkTabProps } from './LinkTab'
|
|
|
|
|
2022-07-14 10:16:50 +00:00
|
|
|
export const sg721LinkTabs: LinkTabProps[] = [
|
2022-07-13 13:56:36 +00:00
|
|
|
{
|
|
|
|
title: 'Instantiate',
|
2022-07-14 10:16:50 +00:00
|
|
|
description: `Create a new SG721 contract`,
|
|
|
|
href: '/contracts/sg721/instantiate',
|
2022-07-13 13:56:36 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Query',
|
2022-07-14 10:16:50 +00:00
|
|
|
description: `Dispatch queries with your SG721 contract`,
|
|
|
|
href: '/contracts/sg721/query',
|
2022-07-13 13:56:36 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Execute',
|
2022-07-14 10:16:50 +00:00
|
|
|
description: `Execute SG721 contract actions`,
|
|
|
|
href: '/contracts/sg721/execute',
|
2022-07-13 13:56:36 +00:00
|
|
|
},
|
|
|
|
]
|
2022-07-19 07:53:03 +00:00
|
|
|
|
|
|
|
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',
|
|
|
|
},
|
|
|
|
]
|