From e64cab04b76e6ee6dfd436225f42ee5e9d686089 Mon Sep 17 00:00:00 2001 From: James Zaki Date: Tue, 11 Jun 2024 16:10:15 +0100 Subject: [PATCH] docs add account tags --- docs/docs/aztec/concepts/accounts/index.md | 1 + docs/docs/aztec/concepts/wallets/index.md | 1 + docs/docs/guides/js_apps/authwit.md | 1 + docs/docs/guides/js_apps/create_account.md | 1 + docs/docs/tutorials/write_accounts_contract.md | 1 + 5 files changed, 5 insertions(+) diff --git a/docs/docs/aztec/concepts/accounts/index.md b/docs/docs/aztec/concepts/accounts/index.md index 44ff0f807ea..9b953087928 100644 --- a/docs/docs/aztec/concepts/accounts/index.md +++ b/docs/docs/aztec/concepts/accounts/index.md @@ -1,6 +1,7 @@ --- title: Accounts sidebar_position: 0 +tags: [accounts] --- **Every account in Aztec is a smart contract** which defines the rules for whether a transaction is or is not valid. This allows implementing different schemes for transaction signing, nonce management, and fee payments. However, encryption and nullifying keys, which are specific to private blockchains, are still enshrined at the protocol level. diff --git a/docs/docs/aztec/concepts/wallets/index.md b/docs/docs/aztec/concepts/wallets/index.md index 0ace6b2bcc9..4d834b86691 100644 --- a/docs/docs/aztec/concepts/wallets/index.md +++ b/docs/docs/aztec/concepts/wallets/index.md @@ -1,6 +1,7 @@ --- title: Wallets sidebar_position: 1 +tags: [accounts] --- In this page we will cover the main responsibilities of a wallet in the Aztec network. diff --git a/docs/docs/guides/js_apps/authwit.md b/docs/docs/guides/js_apps/authwit.md index 5eadcf0cad6..76a3f404dee 100644 --- a/docs/docs/guides/js_apps/authwit.md +++ b/docs/docs/guides/js_apps/authwit.md @@ -1,5 +1,6 @@ --- title: How to use authentication witnesses (authwit) +tags: [accounts] --- This page assumes you have authwit set up correctly in your contract. To learn how to do that, [go here](../smart_contracts/writing_contracts/authwit.md). diff --git a/docs/docs/guides/js_apps/create_account.md b/docs/docs/guides/js_apps/create_account.md index 6cca6c9d934..98b41dbdc3a 100644 --- a/docs/docs/guides/js_apps/create_account.md +++ b/docs/docs/guides/js_apps/create_account.md @@ -1,5 +1,6 @@ --- title: How to Create a New Account +tags: [accounts] --- This guide explains how to create a new account using Aztec.js. diff --git a/docs/docs/tutorials/write_accounts_contract.md b/docs/docs/tutorials/write_accounts_contract.md index 4a29d133c1a..d2ed9a69883 100644 --- a/docs/docs/tutorials/write_accounts_contract.md +++ b/docs/docs/tutorials/write_accounts_contract.md @@ -1,5 +1,6 @@ --- title: Writing an Account Contract +tags: [accounts] --- This tutorial will take you through the process of writing your own account contract in Aztec.nr, along with the Typescript glue code required for using it within a wallet.