Skip to content

Commit

Permalink
path fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
signorecello committed May 14, 2024
1 parent b7aeb0e commit fe96d94
Show file tree
Hide file tree
Showing 12 changed files with 11 additions and 580 deletions.
6 changes: 0 additions & 6 deletions docs/docs/aztec/aztec/glossary/_category_.json

This file was deleted.

2 changes: 1 addition & 1 deletion docs/docs/aztec/aztec/glossary/call_types.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ A common pattern is to enqueue public calls to check some validity condition on
#include_code deadline /noir-projects/noir-contracts/contracts/crowdfunding_contract/src/main.nr rust

:::warning
Calling public functions privately leaks some privacy! The caller of the function and all arguments will be revelead, so exercise care when mixing the private and public domains. To learn about alternative ways to access public state privately, look into [Shared State](../../developers/contracts/references/storage/shared_state.md).
Calling public functions privately leaks some privacy! The caller of the function and all arguments will be revelead, so exercise care when mixing the private and public domains. To learn about alternative ways to access public state privately, look into [Shared State](/reference/reference/smart_contract_reference/storage/shared_state.md).
:::

### Public Execution
Expand Down
6 changes: 3 additions & 3 deletions docs/docs/aztec/aztec/limitations.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ That's right, the Sandbox doesn't actually generate or verify any zk-SNARKs yet!

The main goal of the Sandbox is to enable developers to experiment with building apps, and hopefully to provide feedback. We want the developer experience to be as fast as possible, much like how Ethereum developers use Ganache or Anvil to get super-fast block times, instead of the slow-but-realistic 12-second block times that they'll encounter in production. A fast Sandbox enables fast testing, which enables developers to iterate quickly.

That's not to say a super-fast proving system isn't being worked on [as we speak](/aztec/aztec/what_is_aztec/roadmap/cryptography_roadmap.md).
That's not to say a super-fast proving system isn't being worked on [as we speak](/aztec/aztec/roadmap/cryptography_roadmap.md).

#### What are the consequences?

Expand Down Expand Up @@ -172,11 +172,11 @@ This will be patched in the near future, but unfortunately, app developers might

### New Privacy Standards are required

There are many [patterns](/aztec/aztec/what_is_aztec/privacy_considerations.md) which can leak privacy, even on Aztec. Standards haven't been developed yet, to encourage best practices when designing private smart contracts.
There are many [patterns](/reference/reference/privacy_considerations.md) which can leak privacy, even on Aztec. Standards haven't been developed yet, to encourage best practices when designing private smart contracts.

#### What are the consequences?

For example, until community standards are developed to reduce the uniqueness of ['Tx Fingerprints'](/aztec/aztec/what_is_aztec/privacy_considerations.md#function-fingerprints-and-tx-fingerprints) app developers might accidentally forfeit some function privacy.
For example, until community standards are developed to reduce the uniqueness of ['Tx Fingerprints'](/reference/reference/privacy_considerations.md#function-fingerprints-and-tx-fingerprints) app developers might accidentally forfeit some function privacy.

## Circuit limitations

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/aztec/vision.mdx → docs/docs/aztec/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Vision
sidebar_position: 1
---

import Disclaimer from "../../../../src/components/Disclaimers/_wip_disclaimer.mdx";
import Disclaimer from "../../src/components/Disclaimers/_wip_disclaimer.mdx";

## The world's encrypted ledger

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/getting_started/getting_started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This creates a codespace with a prebuilt image containing one of the "Aztec Boxe

The above method uses Aztec boxes to install the sandbox and clone the repo. You can use it too to get started on your own machine and use your own IDE.

You can also [install the sandbox manually](../sandbox/references/sandbox-reference.md).
You can also [install the sandbox manually](/reference/reference/sandbox_reference).

### Prerequisites

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ To update a value, its previous note hash(es) are nullified. The new note value

## Supplementary components
Some optional background resources on notes can be found here:
- [High level network architecture](/aztec/aztec/what_is_aztec/core_components.md#high-level-network-architecture), specifically the Private Execution Environment
- [High level network architecture](/aztec/aztec/core_components.md#high-level-network-architecture), specifically the Private Execution Environment
- [Transaction lifecycle (simple diagram)](/aztec/aztec/concepts/transactions.md#simple-example-of-the-private-transaction-lifecycle)
- [Public and Private state](/aztec/aztec/concepts/state_model)

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Aztec is:

### Learn 📚

Start on the [Technical Overview page](/aztec/aztec/what_is_aztec/core_components) to read about how Aztec works.
Start on the [Technical Overview page](/aztec/aztec/core_components) to read about how Aztec works.

### Build 🧑‍💻

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ For a quick start, follow the [guide](/getting_started/getting_started) to insta

## Manual Install

You can manually install the sandbox via the underlying script used in the [Aztec Boxes](../../getting_started/quickstart.md#run-the-npx-script).
You can manually install the sandbox via the underlying script used in the [Aztec Boxes](/getting_started/getting_started/index.md#run-the-npx-script).

### Prerequisites

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/tutorials/tutorials/simple_dapp/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ yarn node --experimental-vm-modules $(yarn bin jest) --testRegex '.*\.test\.mjs$

## Next steps

Now that you have finished the tutorial, you can learn more about [writing contracts with Noir](/aztec/aztec/concepts/smart_contracts/index.md) or read about the [fundamental concepts behind Aztec Network](/aztec/aztec/what_is_aztec/core_components).
Now that you have finished the tutorial, you can learn more about [writing contracts with Noir](/aztec/aztec/concepts/smart_contracts/index.md) or read about the [fundamental concepts behind Aztec Network](/aztec/aztec/core_components).
26 changes: 0 additions & 26 deletions docs/docs/welcome.md

This file was deleted.

Loading

0 comments on commit fe96d94

Please sign in to comment.