Skip to content
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

fix: Add redirects from old docs site urls to new site urls #2429

Merged
merged 5 commits into from
Sep 20, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
add links to further reading
critesjosh committed Sep 20, 2023
commit 5d2f65913d438a093218386c6d473f0cd840408c
4 changes: 2 additions & 2 deletions docs/docs/concepts/advanced/contract_creation.md
Original file line number Diff line number Diff line change
@@ -325,6 +325,6 @@ As an extension of this example, the deployer might wish bake-into the private c

Adds initial public state variables to the public data tree.

## Participate
critesjosh marked this conversation as resolved.
Show resolved Hide resolved
## Further reading

Keep up with the latest discussion and join the conversation in the [Aztec forum](https://discourse.aztec.network).
To see how to deploy a contract in practice, check out the [dapp development tutorial](../../dev_docs/dapps/tutorials/main.md).
4 changes: 4 additions & 0 deletions docs/docs/concepts/foundation/contracts.md
Original file line number Diff line number Diff line change
@@ -34,3 +34,7 @@ The only information leaked about the transaction is:
2. The set of public calls generated

The addresses of all private calls are hidden from observers.

## Further reading

Read more about writing Aztec contracts [here](../../dev_docs/contracts/main.md).
4 changes: 4 additions & 0 deletions docs/docs/concepts/foundation/state_model.md
Original file line number Diff line number Diff line change
@@ -37,3 +37,7 @@ This is achieved with two main features:
- Custom nullifiers
- Emission of custom note data to L1
- Decrypting and storing encrypted note data

## Further reading

Read more about how to leverage the Aztec state model in Aztec contracts [here](../../dev_docs/contracts/syntax/state_variables.md).
2 changes: 2 additions & 0 deletions docs/docs/concepts/foundation/transactions.md
Original file line number Diff line number Diff line change
@@ -9,3 +9,5 @@ import Disclaimer from '../../misc/common/\_disclaimer.mdx';
See [here](https://miro.com/app/board/uXjVMQbDwNk=/?share_link_id=47681418582) for a gigantic diagram (readonly) showing the flow from user to L2, to L1, back to user.

> Note: the protocol and its implementation are rapidly evolving, so some info in this diagram will be out of date.

See the page on [contract communication](./communication/main.md) for more context on transactions execute.