Skip to content

Commit

Permalink
Found the function that moved
Browse files Browse the repository at this point in the history
  • Loading branch information
noonio committed Dec 20, 2024
1 parent dae6a4d commit 27d44bf
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
8 changes: 8 additions & 0 deletions docs/benchmarks/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,11 @@ sidebar_position: 1
This section provides up-to-date data regarding the known limitations of the Hydra Head on-chain protocol. Cardano transactions and blocks are subject to constraints on transaction size, execution cost, and the number of inputs and outputs. These constraints are determined by network parameters and significantly influence the capabilities of the Hydra Head protocol, such as the maximum number of parties that can participate, the amount of UTXOs that can be committed, and the extent to which these UTXOs can be fanned out. As on-chain scripts and transactions are further optimized, and as the underlying Cardano blockchain evolves with expanded parameters and enhanced script execution efficiency, these limitations are expected to evolve.

The data in this section is _generated_ through Hydra's [continuous integration (CI)](https://github.com/cardano-scaling/hydra/actions/workflows/ci-nix.yaml) process, ensuring that it accurately reflects the current state of the code.

```mdx-code-block
import DocCardList from '@theme/DocCardList';
import { useDocsSidebar } from '@docusaurus/plugin-content-docs/client';
<DocCardList items={useDocsSidebar().items.filter(({ docId }) => docId != "index").map(item => {if (item.label == "tests") item.label = "Test Results" ; return item})}/>
```

8 changes: 7 additions & 1 deletion docs/topologies/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_label: 'Topologies'
sidebar_position: 2
sidebar_position: 1
---

# Topologies
Expand All @@ -9,3 +9,9 @@ The Hydra Head protocol is a well-defined layer 2 consensus protocol, as detaile

As the community grows and more users develop solutions on top of Hydra, the 'catalog' of topologies will expand. This expansion aims to assist newcomers in discovering and constructing the deployment model that best fits their use case.

```mdx-code-block
import DocCardList from '@theme/DocCardList';
import { useDocsSidebar } from '@docusaurus/plugin-content-docs/client';
<DocCardList items={useDocsSidebar().items.filter(({ docId }) => docId != "index")}/>
```
9 changes: 8 additions & 1 deletion docs/use-cases/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_label: "Use cases"
sidebar_position: 3
sidebar_position: 1
---

# Hydra use cases
Expand All @@ -10,3 +10,10 @@ This section aims to initiate a dialogue with community members interested in ex
We are eager to highlight the initial use cases where Hydra can significantly enhance value by reducing transaction costs, decreasing confirmation times, and increasing transaction throughput. We actively invite the community to engage in discussions, contribute to the featured use cases on the roadmap, and suggest additional scenarios we may have overlooked.

We are currently exploring use cases across various domains, including payments, digital asset auctions, decentralized voting, and decentralized finance. This section will be updated as these use cases are further developed and detailed. So, stay tuned!

```mdx-code-block
import DocCardList from '@theme/DocCardList';
import { useDocsSidebar } from '@docusaurus/plugin-content-docs/client';
<DocCardList items={useDocsSidebar().items.filter(({ docId }) => docId != "index")}/>
```

0 comments on commit 27d44bf

Please sign in to comment.