Skip to content

misc fixes #118

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
1 change: 0 additions & 1 deletion pages/developers/blueprint-contexts/_meta.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"introduction": "Introduction to Contexts",
"keystore-context": "Keystore Context",
"evm-provider-context": "EVM Provider Context",
"tangle-client-context": "Tangle Client Context",
Expand Down
34 changes: 0 additions & 34 deletions pages/developers/blueprint-contexts/introduction.mdx

This file was deleted.

25 changes: 25 additions & 0 deletions pages/developers/p2p-networking/extensions/round-based.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
title: P2P Networking round-based Extension
description: An overview of the round-based extension for the P2P networking utilities provided by the blueprint SDK.
---

# `round-based` extension for P2P Networking

[round-based] is an MPC framework that unifies and simplifies the way of developing and working with multiparty
protocols (e.g. threshold signing, random beacons, etc.).

To enable the extension, add the following to your `Cargo.toml`:

```toml
[dependencies]
blueprint-sdk = { version = "0.1.0", features = ["round-based-compat", ...]}
```

The extension provides multiple wrappers, with the primary one being the [`RoundBasedNetworkAdapter`].

# Example

<!-- TODO: Add example -->

[round-based]: https://crates.io/crates/round-based
[`RoundBasedNetworkAdapter`]: https://docs.rs/blueprint_networking_round_based_extension/latest/blueprint_networking_round_based_extension/struct.RoundBasedNetworkAdapter.html
Loading