20 lines
502 B
TypeScript
20 lines
502 B
TypeScript
import type { LinkTabProps } from './LinkTab'
|
|
|
|
export const cw721BaseLinkTabs: LinkTabProps[] = [
|
|
{
|
|
title: 'Instantiate',
|
|
description: `Create a new CW721 Base contract`,
|
|
href: '/contracts/cw721/base/instantiate',
|
|
},
|
|
{
|
|
title: 'Query',
|
|
description: `Dispatch queries with your CW721 Base contract`,
|
|
href: '/contracts/cw721/base/query',
|
|
},
|
|
{
|
|
title: 'Execute',
|
|
description: `Execute CW721 Base contract actions`,
|
|
href: '/contracts/cw721/base/execute',
|
|
},
|
|
]
|