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: '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-11-30 18:35:01 +00:00
|
|
|
{
|
|
|
|
title: 'Migrate',
|
|
|
|
description: `Migrate SG721 contract`,
|
|
|
|
href: '/contracts/sg721/migrate',
|
|
|
|
},
|
2022-07-13 13:56:36 +00:00
|
|
|
]
|
2022-07-19 07:53:03 +00:00
|
|
|
|
2022-12-09 08:27:50 +00:00
|
|
|
export const vendingMinterLinkTabs: LinkTabProps[] = [
|
2022-07-19 07:53:03 +00:00
|
|
|
{
|
|
|
|
title: 'Instantiate',
|
2022-12-09 08:27:50 +00:00
|
|
|
description: `Initialize a new Vending Minter contract`,
|
|
|
|
href: '/contracts/vendingMinter/instantiate',
|
2022-07-19 07:53:03 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Query',
|
2022-12-09 08:27:50 +00:00
|
|
|
description: `Dispatch queries with your Vending Minter contract`,
|
|
|
|
href: '/contracts/vendingMinter/query',
|
2022-07-19 07:53:03 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Execute',
|
2022-12-09 08:27:50 +00:00
|
|
|
description: `Execute Vending Minter contract actions`,
|
|
|
|
href: '/contracts/vendingMinter/execute',
|
2022-07-19 07:53:03 +00:00
|
|
|
},
|
2022-11-30 18:35:01 +00:00
|
|
|
{
|
|
|
|
title: 'Migrate',
|
2022-12-09 08:27:50 +00:00
|
|
|
description: `Migrate Vending Minter contract`,
|
|
|
|
href: '/contracts/vendingMinter/migrate',
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
|
|
|
export const baseMinterLinkTabs: LinkTabProps[] = [
|
|
|
|
{
|
|
|
|
title: 'Instantiate',
|
|
|
|
description: `Initialize a new Base Minter contract`,
|
|
|
|
href: '/contracts/baseMinter/instantiate',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Query',
|
|
|
|
description: `Dispatch queries with your Base Minter contract`,
|
|
|
|
href: '/contracts/baseMinter/query',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Execute',
|
|
|
|
description: `Execute Base Minter contract actions`,
|
|
|
|
href: '/contracts/baseMinter/execute',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'Migrate',
|
|
|
|
description: `Migrate Base Minter contract`,
|
|
|
|
href: '/contracts/baseMinter/migrate',
|
2022-11-30 18:35:01 +00:00
|
|
|
},
|
2022-07-19 07:53:03 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
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',
|
|
|
|
},
|
|
|
|
]
|