From 5a00d329c1ed2d1f2e14c88d39e8d8624165c52f Mon Sep 17 00:00:00 2001 From: Serkan Reis Date: Wed, 1 Feb 2023 15:54:18 +0300 Subject: [PATCH] Update LinkTabs to include badgeHubLinkTabs --- components/LinkTabs.data.ts | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/components/LinkTabs.data.ts b/components/LinkTabs.data.ts index 81ba9bb..f3c382d 100644 --- a/components/LinkTabs.data.ts +++ b/components/LinkTabs.data.ts @@ -81,3 +81,26 @@ export const whitelistLinkTabs: LinkTabProps[] = [ href: '/contracts/whitelist/execute', }, ] + +export const badgeHubLinkTabs: LinkTabProps[] = [ + { + title: 'Instantiate', + description: `Initialize a new Badge Hub contract`, + href: '/contracts/badgeHub/instantiate', + }, + { + title: 'Query', + description: `Dispatch queries with your Badge Hub contract`, + href: '/contracts/badgeHub/query', + }, + { + title: 'Execute', + description: `Execute Badge Hub contract actions`, + href: '/contracts/badgeHub/execute', + }, + { + title: 'Migrate', + description: `Migrate Badge Hub contract`, + href: '/contracts/badgeHub/migrate', + }, +]