20 lines
468 B
TypeScript
20 lines
468 B
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',
|
|
},
|
|
]
|