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
20 changes: 1 addition & 19 deletions app/[locale]/(home)/_pages/page.en.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ImageZoom } from 'fumadocs-ui/components/image-zoom';
import { Braces, Database, Play } from 'lucide-react';
import { Card, Cards, SmallCard } from '@/components/card';
import { API, Chainhook, Hiro, Ordinals, Runes, StacksIcon } from '@/components/ui/icon';
import { API, Chainhook, Hiro, StacksIcon } from '@/components/ui/icon';
import heroImage from '@/public/stacks-hero.svg';

export default function HomePage() {
Expand Down Expand Up @@ -68,12 +68,6 @@ export default function HomePage() {
title="Contract Monitoring"
description="Monitor and track smart contract activity and performance metrics."
/>
<SmallCard
icon={<Database />}
href="/tools/bitcoin-indexer"
title="Bitcoin Indexer"
description="Index and query Bitcoin blockchain data with high-performance indexing."
/>
</Cards>
</div>
<div className="flex flex-col">
Expand Down Expand Up @@ -115,18 +109,6 @@ export default function HomePage() {
title="Platform API"
description="Programmatically manage devnets and chainhooks via REST interface."
/>
<SmallCard
icon={<Ordinals />}
href="/apis/ordinals-api"
title="Ordinals API"
description="Complete Bitcoin ordinals and BRC-20 token data with caching optimization."
/>
<SmallCard
icon={<Runes />}
href="/apis/runes-api"
title="Runes API"
description="Fast, reliable data for Bitcoin Runes via an easy-to-use REST interface."
/>
<SmallCard
icon={<API />}
href="/apis/signer-metrics-api"
Expand Down
21 changes: 1 addition & 20 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.

16 changes: 1 addition & 15 deletions 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, Chainhook, Hiro, Ordinals, Runes, StacksIcon } from '@/components/ui/icon';
import { API, Chainhook, Hiro, StacksIcon } from '@/components/ui/icon';

export default function APIsPage() {
return (
Expand Down Expand Up @@ -42,20 +42,6 @@ export default function APIsPage() {
title="Platform API"
description="Programmatically manage devnets and chainhooks via REST interface."
/>
<IndexCard
icon={<Ordinals />}
href="/apis/ordinals-api"
title="Ordinals API"
tag="Bitcoin L1"
description="Complete Bitcoin ordinals and BRC-20 token data with caching optimization."
/>
<IndexCard
icon={<Runes />}
href="/apis/runes-api"
title="Runes API"
tag="Bitcoin L1"
description="Fast, reliable data for Bitcoin Runes via an easy-to-use REST interface."
/>
<IndexCard
icon={<API />}
href="/apis/signer-metrics-api"
Expand Down
16 changes: 1 addition & 15 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.

9 changes: 1 addition & 8 deletions app/[locale]/(home)/tools/_pages/page.en.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Brackets, Database } from 'lucide-react';
import { Brackets } from 'lucide-react';
import { Cards, IndexCard } from '@/components/card';
import { Chainhook } from '@/components/ui/icon';

Expand Down Expand Up @@ -27,13 +27,6 @@ export default function ToolsPage() {
tag="Stacks"
description="Monitor and track smart contract activity and performance metrics."
/>
<IndexCard
href="/tools/bitcoin-indexer"
title="Bitcoin Indexer"
icon={<Database />}
tag="Bitcoin L1"
description="Index and query Bitcoin blockchain data with high-performance indexing."
/>
</Cards>
</div>
</div>
Expand Down
9 changes: 1 addition & 8 deletions 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.

15 changes: 0 additions & 15 deletions app/layout.config.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,6 @@ export const baseOptions: BaseLayoutProps = {
description: 'Monitor and analyze Clarity smart contract activity.',
url: '/tools/contract-monitoring',
},
{
text: 'Bitcoin Indexer',
description: 'Indexer for Bitcoin blockchain data.',
url: '/tools/bitcoin-indexer',
},
],
},
{
Expand Down Expand Up @@ -80,16 +75,6 @@ export const baseOptions: BaseLayoutProps = {
description: 'API for accessing Hiro Platform data and functionality.',
url: '/apis/platform-api',
},
{
text: 'Ordinals API',
description: 'API for Bitcoin Ordinals and inscriptions data.',
url: '/apis/ordinals-api',
},
{
text: 'Runes API',
description: 'API for Bitcoin Runes data.',
url: '/apis/runes-api',
},
{
text: 'Signer Metrics API',
description: 'API for accessing Signer metrics data and functionality.',
Expand Down
4 changes: 0 additions & 4 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { aeonik, aeonikFono, aeonikMono, inter } from '@/fonts';
import { KeyboardShortcutsProvider } from '@/hooks/use-keyboard-shortcuts';
import { ApiCredentialsProvider } from '@/providers/api-credentials-provider';
import { QueryProvider } from '@/providers/query-provider';
import { Banner } from '@/components/ui/banner';

export default function RootLayout({ children }: { children: ReactNode }) {
return (
Expand All @@ -15,9 +14,6 @@ export default function RootLayout({ children }: { children: ReactNode }) {
suppressHydrationWarning
>
<body className="flex flex-col min-h-screen" suppressHydrationWarning>
<Banner id="chainhooks-deprecation">
Hosted Chainhooks v1 and L1 APIs (Ordinals, Runes, BRC20) deprecated March 9th, please migrate now!
</Banner>
<QueryProvider>
<ApiCredentialsProvider>
<KeyboardShortcutsProvider>
Expand Down
3 changes: 0 additions & 3 deletions components/layout/mobile-navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,6 @@ export function MobileNavigation({ isOpen = false, onClose, tree }: MobileNaviga
'stacks-blockchain-api': 'Stacks Blockchain API',
'token-metadata-api': 'Token Metadata API',
'platform-api': 'Platform API',
'ordinals-api': 'Ordinals API',
'runes-api': 'Runes API',
'signer-metrics-api': 'Signer Metrics API',
};

Expand All @@ -95,7 +93,6 @@ export function MobileNavigation({ isOpen = false, onClose, tree }: MobileNaviga

if (index === 1 && displaySegments[0] === 'Tools') {
const toolMappings: { [key: string]: string } = {
'bitcoin-indexer': 'Bitcoin Indexer',
'contract-monitoring': 'Contract Monitoring',
};

Expand Down
9 changes: 1 addition & 8 deletions components/search-dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import {
ExternalLink,
Eye,
File,
Layers,
Package,
Search,
Webhook,
Expand Down Expand Up @@ -222,7 +221,7 @@ interface DocIndexEntry {
const predefinedDocQueries = [
{ id: 'q1', text: 'how to create a chainhook on the hiro platform' },
{ id: 'q2', text: 'how can i query a list of the latest transactions' },
{ id: 'q3', text: 'how do i bootstrap the bitcoin indexer' },
{ id: 'q3', text: 'how do i monitor contract activity' },
{ id: 'q4', text: 'how do i manage api keys' },
];

Expand Down Expand Up @@ -251,12 +250,6 @@ const navigateItems = [
icon: Webhook,
href: '/tools/chainhooks',
},
{
id: 'bitcoin-indexer',
title: 'Bitcoin Indexer',
icon: Layers,
href: '/tools/bitcoin-indexer',
},
{
id: 'apis',
title: 'APIs',
Expand Down
39 changes: 0 additions & 39 deletions content/docs/en/apis/ordinals-api/index.mdx

This file was deleted.

5 changes: 0 additions & 5 deletions content/docs/en/apis/ordinals-api/meta.json

This file was deleted.

Loading
Loading