import { TransactionsTable } from '@/components/blocks/transactions-table/transactions-table'; import { getBlockExplorerAllTxUrl } from '@/lib/block-explorer'; import type { Metadata } from 'next'; import Link from 'next/link'; export const metadata: Metadata = { title: 'Transactions', description: 'Inspect all transactions on the network.', }; export default function TransactionsPage() { const explorerUrl = getBlockExplorerAllTxUrl(); return ( <> {explorerUrl && (
View all transactions in the explorer
)} ); }