Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions app/[locale]/(home)/_pages/page.en.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ export default function HomePage() {
<SmallCard
icon={<Chainhook />}
badge="beta"
href="/tools/chainhook"
title="Chainhook"
href="/tools/chainhooks"
title="Chainhooks"
description="Create custom event streams and triggers for real-time blockchain data processing."
/>
<SmallCard
Expand Down Expand Up @@ -90,6 +90,19 @@ export default function HomePage() {
title="Stacks Blockchain API"
description="Comprehensive REST API for interacting with the Stacks blockchain and network data."
/>
<SmallCard
icon={<StacksIcon />}
href="/apis/stacks-node-rpc-api"
title="Stacks Node RPC API"
description="Raw blockchain node methods: submit txs, call read-only contracts, query mempool/state."
/>
<SmallCard
icon={<Chainhook />}
href="/apis/chainhooks-api"
title="Chainhooks API"
badge="new"
description="RESTful API for accessing Chainhook."
/>
<SmallCard
icon={<API />}
href="/apis/token-metadata-api"
Expand Down
30 changes: 15 additions & 15 deletions app/[locale]/(home)/_pages/page.es.tsx

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion app/[locale]/(home)/apis/_pages/page.en.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Cards, IndexCard } from '@/components/card';
import { API, Hiro, Ordinals, Runes, StacksIcon } from '@/components/ui/icon';
import { API, Chainhook, Hiro, Ordinals, Runes, StacksIcon } from '@/components/ui/icon';

export default function APIsPage() {
return (
Expand All @@ -23,6 +23,13 @@ export default function APIsPage() {
title="Stacks Node RPC API"
description="Raw blockchain node methods: submit txs, call read-only contracts, query mempool/state."
/>
<IndexCard
icon={<Chainhook />}
href="/apis/chainhooks-api"
title="Chainhooks API"
badge="new"
description="RESTful API for accessing Chainhook."
/>
<IndexCard
icon={<API />}
href="/apis/token-metadata-api"
Expand Down
15 changes: 8 additions & 7 deletions app/[locale]/(home)/apis/_pages/page.es.tsx

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions app/[locale]/(home)/tools/_pages/page.en.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export default function ToolsPage() {
</div>
<Cards>
<IndexCard
href="/tools/chainhook"
title="Chainhook"
href="/tools/chainhooks"
title="Chainhooks"
icon={<Chainhook />}
badge="beta"
tag="Stacks"
Expand Down
2 changes: 1 addition & 1 deletion app/[locale]/(home)/tools/_pages/page.es.tsx

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions app/layout.config.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ export const baseOptions: BaseLayoutProps = {
text: 'Tools',
items: [
{
text: 'Chainhook',
text: 'Chainhooks',
description: 'Monitor and analyze Clarity smart contract activity.',
url: '/tools/chainhook',
url: '/tools/chainhooks',
isBeta: true,
},
{
Expand Down Expand Up @@ -70,9 +70,9 @@ export const baseOptions: BaseLayoutProps = {
url: '/apis/token-metadata-api',
},
{
text: 'Chainhook API',
text: 'Chainhooks API',
description: 'RESTful API for accessing Chainhook',
url: '/apis/chainhook-api',
url: '/apis/chainhooks-api',
isNew: true,
},
{
Expand Down
4 changes: 2 additions & 2 deletions components/card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -272,8 +272,8 @@ export function SmallCard({
</div>
)}
<div className="flex flex-col w-full">
<div className="flex items-center gap-2">
<h3 className="mb-1 font-inter font-medium text-md text-primary dark:text-[#f6f5f3]">
<div className="mb-1 flex items-center gap-2">
<h3 className="font-inter font-medium text-md text-primary dark:text-[#f6f5f3]">
{title}
</h3>
{badge && (
Expand Down
2 changes: 0 additions & 2 deletions components/filter-popover.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ const CATEGORIES = [
{ label: 'Stacks.js', value: 'stacks.js' },
{ label: 'Clarity', value: 'clarity' },
{ label: 'Bitcoin', value: 'bitcoin' },
// { label: "Chainhook", value: "chainhook" },
{ label: 'API', value: 'api' },
// { label: "Clarinet", value: "clarinet" },
];

interface FilterPopoverProps {
Expand Down
4 changes: 2 additions & 2 deletions components/search-dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -247,9 +247,9 @@ function extractSnippet(text: string | undefined, maxLength = 80): string {
const navigateItems = [
{
id: 'chainhook',
title: 'Chainhook',
title: 'Chainhooks',
icon: Webhook,
href: '/tools/chainhook',
href: '/tools/chainhooks',
},
{
id: 'bitcoin-indexer',
Expand Down
100 changes: 0 additions & 100 deletions content/docs/en/apis/chainhook-api/index.mdx

This file was deleted.

This file was deleted.

6 changes: 0 additions & 6 deletions content/docs/en/apis/chainhook-api/reference/info/index.mdx

This file was deleted.

Loading