stargaze-studio/components/LinkTabs.data.ts

20 lines
502 B
TypeScript
Raw Normal View History

2022-07-13 13:56:36 +00:00
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',
},
]