forked from visoftsolutions/noir_rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(docs): Split contract storage pages (AztecProtocol#4202)
closes AztecProtocol#4157 --------- Co-authored-by: Cat McGee <helloworld@mcgee.cat>
- Loading branch information
1 parent
3bbf1b3
commit 1e05f33
Showing
6 changed files
with
454 additions
and
422 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
docs/docs/concepts/foundation/communication/public_private_calls/main.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
337 changes: 337 additions & 0 deletions
337
docs/docs/dev_docs/contracts/syntax/storage/private_state.md
Large diffs are not rendered by default.
Oops, something went wrong.
95 changes: 95 additions & 0 deletions
95
docs/docs/dev_docs/contracts/syntax/storage/public_state.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
--- | ||
title: Public State | ||
--- | ||
|
||
On this page we will look at how to manage public state in Aztec contracts. We will look at how to declare public state, how to read and write to it, and how to use it in your contracts. | ||
|
||
For a higher level overview of the state model in Aztec, see the [state model](../../../../concepts/foundation/state_model/main.md) page, or jump back to the previous page on [Storage](./main.md). | ||
|
||
## Overview | ||
|
||
The `PublicState` struct is generic over the variable type `T` and its serialized size `T_SERIALIZED_LEN`. | ||
|
||
:::info | ||
Currently, the length of the types must be specified when declaring the storage struct but the intention is that this will be inferred in the future. | ||
::: | ||
|
||
The struct contains a `storage_slot` which, similar to Ethereum, is used to figure out _where_ in storage the variable is located. Notice that while we don't have the exact same [state model](../../../../concepts/foundation/state_model/main.md) as EVM chains it will look similar from the contract developers point of view. | ||
|
||
Beyond the struct, the `PublicState` also contains `serialization_methods`, which is a struct with methods that instruct the `PublicState` how to serialize and deserialize the variable. You can find the details of `PublicState` in the implementation [here](https://github.com/AztecProtocol/aztec-packages/blob/#include_aztec_version/yarn-project/aztec-nr/aztec/src/state_vars/public_state.nr). | ||
|
||
The Aztec.nr library provides serialization methods for various common types. | ||
|
||
:::info | ||
An example using a larger struct can be found in the [lending example](https://github.com/AztecProtocol/aztec-packages/tree/master/yarn-project/noir-contracts/contracts/lending_contract)'s use of an [`Asset`](https://github.com/AztecProtocol/aztec-packages/tree/#include_aztec_version/yarn-project/noir-contracts/contracts/lending_contract/src/asset.nr). | ||
::: | ||
|
||
### `new` | ||
|
||
When declaring the storage for `T` as a persistent public storage variable, we use the `PublicState::new()` constructor. As seen below, this takes the `storage_slot` and the `serialization_methods` as arguments along with the [`Context`](../context.mdx), which in this case is used to share interface with other structures. You can view the implementation [here](https://github.com/AztecProtocol/aztec-packages/blob/#include_aztec_version/yarn-project/aztec-nr/aztec/src/state_vars/public_state.nr). | ||
|
||
#### Single value example | ||
|
||
Say that we wish to add `admin` public state variable into our storage struct. In the struct we can define it as: | ||
|
||
#include_code storage_admin /yarn-project/noir-contracts/contracts/token_contract/src/main.nr rust | ||
|
||
And then when initializing it in the `Storage::init` function we can do: | ||
|
||
#include_code storage_admin_init /yarn-project/noir-contracts/contracts/token_contract/src/main.nr rust | ||
|
||
We have specified that we are storing a `Field` that should be placed in storage slot `1`. This is just a single value, and is similar to the following in solidity: | ||
|
||
```solidity | ||
address internal admin; | ||
``` | ||
|
||
:::info | ||
We know its verbose, and are working on making it less so. | ||
::: | ||
|
||
#### Mapping example | ||
|
||
Say we want to have a group of `minters` that are able to mint assets in our contract, and we want them in public storage, because [access control in private is quite cumbersome](../../../../concepts/foundation/communication/public_private_calls/main.md#a-note-on-l2-access-control). In the `Storage` struct we can add it as follows: | ||
|
||
#include_code storage_minters /yarn-project/noir-contracts/contracts/token_contract/src/main.nr rust | ||
|
||
And then when initializing it in the `Storage::init` function we can do it as follows: | ||
|
||
#include_code storage_minters_init /yarn-project/noir-contracts/contracts/token_contract/src/main.nr rust | ||
|
||
In this case, specifying that we are dealing with a map of Fields, and that it should be put at slot 2. | ||
|
||
This would be similar to the following in solidity: | ||
|
||
```solidity | ||
mapping(address => bool) internal minters; | ||
``` | ||
|
||
### `read` | ||
|
||
On the `PublicState` structs we have a `read` method to read the value at the location in storage and using the specified deserialization method to deserialize it. | ||
|
||
#### Reading from our `admin` example | ||
|
||
For our `admin` example from earlier, this could be used as follows to check that the stored value matches the `msg_sender()`. | ||
|
||
#include_code read_admin /yarn-project/noir-contracts/contracts/token_contract/src/main.nr rust | ||
|
||
#### Reading from our `minters` example | ||
|
||
As we saw in the Map earlier, a very similar operation can be done to perform a lookup in a map. | ||
|
||
#include_code read_minter /yarn-project/noir-contracts/contracts/token_contract/src/main.nr rust | ||
|
||
### `write` | ||
|
||
We have a `write` method on the `PublicState` struct that takes the value to write as an input and saves this in storage. It uses the serialization method to serialize the value which inserts (possibly multiple) values into storage. | ||
|
||
#### Writing to our `admin` example | ||
|
||
#include_code write_admin /yarn-project/noir-contracts/contracts/token_contract/src/main.nr rust | ||
|
||
#### Writing to our `minters` example | ||
|
||
#include_code write_minter /yarn-project/noir-contracts/contracts/token_contract/src/main.nr rust |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters