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
4 changes: 2 additions & 2 deletions crates/cli/src/config_setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ include!(concat!(env!("OUT_DIR"), "/contract_deployments.rs"));
/// Bootstrap peer written into a freshly generated config so a new ciphernode
/// can join the network without manual peer configuration. This is a stable
/// libp2p `/dnsaddr` entry — the backing nodes (and their pinned `/p2p/<PeerId>`)
/// are rotated via the `_dnsaddr.bootstrap.interfold.gg` TXT records, so this value
/// are rotated via the `_dnsaddr.bootstrap.interfold.network` TXT records, so this value
/// does not change between CLI releases.
const BOOTSTRAP_PEER: &str = "/dnsaddr/bootstrap.interfold.gg";
const BOOTSTRAP_PEER: &str = "/dnsaddr/bootstrap.interfold.network";

fn get_contract_info(name: &str) -> Result<&ContractInfo> {
CONTRACT_DEPLOYMENTS
Expand Down
4 changes: 2 additions & 2 deletions crates/compute-provider/Readme.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# FHE Compute Manager

This project provides a flexible and efficient framework for managing Secure Programs (SP) of the
[Interfold Protocol](interfold.gg). It supports both sequential and parallel processing, with the
ability to integrate various compute providers.
[Interfold Protocol](interfold.network). It supports both sequential and parallel processing, with
the ability to integrate various compute providers.

## Features

Expand Down
2 changes: 1 addition & 1 deletion dappnode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ new package version.

## Links

- [Interfold Docs](https://docs.interfold.gg)
- [Interfold Docs](https://docs.interfold.network)
- [DAppNode Package Development – Single Configuration](https://docs.dappnode.io/docs/dev/package-development/single-configuration/)
- [DAppNode Docker Compose Reference](https://docs.dappnode.io/docs/dev/references/docker-compose/)
- [DAppNode Setup Wizard Reference](https://docs.dappnode.io/docs/dev/references/setup-wizard/)
Expand Down
4 changes: 2 additions & 2 deletions dappnode/dappnode_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"categories": ["Blockchain", "Developer tools"],
"keywords": ["interfold", "fhe", "mpc", "ciphernode", "threshold", "encryption"],
"links": {
"homepage": "https://interfold.gg",
"docs": "https://docs.interfold.gg",
"homepage": "https://interfold.network",
"docs": "https://docs.interfold.network",
"repository": "https://github.com/gnosisguild/interfold"
},
"repository": {
Expand Down
6 changes: 3 additions & 3 deletions docs/pages/ciphernode-operators/running.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ node:
address: '0xYourAddress'
quic_port: 9091
peers:
- '/dnsaddr/bootstrap.interfold.gg'
- '/dnsaddr/bootstrap.interfold.network'
autonetkey: true
autopassword: true

Expand Down Expand Up @@ -174,7 +174,7 @@ node:
address: '0xYourAddress'
quic_port: 9091
peers:
- '/dnsaddr/bootstrap.interfold.gg'
- '/dnsaddr/bootstrap.interfold.network'
autonetkey: true
autopassword: true

Expand Down Expand Up @@ -308,7 +308,7 @@ Connect to the Interfold bootstrap network:

```yaml
peers:
- '/dnsaddr/bootstrap.interfold.gg'
- '/dnsaddr/bootstrap.interfold.network'
```

Or specify individual peers:
Expand Down
4 changes: 2 additions & 2 deletions examples/CRISP/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ decision-making, leveraging fully homomorphic encryption (FHE) and distributed t
cryptography (DTC) to enable verifiable secret ballots. Built with Interfold, CRISP safeguards
democratic systems and decision-making applications against coercion, manipulation, and other
vulnerabilities. To learn more about CRISP, you can read our
[blog post](https://blog.interfold.gg/crisp-private-voting-secret-ballot-fhe-zkp-mpc/) or visit the
[documentation](https://docs.theinterfold.com/CRISP/introduction).
[blog post](https://blog.interfold.network/crisp-private-voting-secret-ballot-fhe-zkp-mpc/) or visit
the [documentation](https://docs.theinterfold.com/CRISP/introduction).

## Project Structure

Expand Down
6 changes: 3 additions & 3 deletions templates/default/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ You successfully ran a **Fully Homomorphic Encryption** computation where:
## Manual Start

If you prefer to install the Interfold CLI manually, please visit the dedicated section in the
[documentation](https://docs.interfold.gg/installation#manual-installation).
[documentation](https://docs.interfold.network/installation#manual-installation).

## Next Steps

Expand All @@ -180,5 +180,5 @@ Now that you have a working E3 program:
4. **Deploy**: Learn about production deployment

Ready to dive deeper? Continue with our
[Hello World Tutorial](https://docs.interfold.gg/hello-world-tutorial) for a step-by-step breakdown
of building E3 programs from scratch.
[Hello World Tutorial](https://docs.interfold.network/hello-world-tutorial) for a step-by-step
breakdown of building E3 programs from scratch.
Loading