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

docs: add account tags #7011

Merged
merged 1 commit into from
Jun 11, 2024
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
1 change: 1 addition & 0 deletions docs/docs/aztec/concepts/accounts/index.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
1 change: 1 addition & 0 deletions docs/docs/aztec/concepts/wallets/index.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
1 change: 1 addition & 0 deletions docs/docs/guides/js_apps/authwit.md
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
1 change: 1 addition & 0 deletions docs/docs/guides/js_apps/create_account.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
1 change: 1 addition & 0 deletions docs/docs/tutorials/write_accounts_contract.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
Loading