Skip to content

Commit

Permalink
broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
signorecello committed May 11, 2024
1 parent 0d0c891 commit a8ddbbd
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ On Ethereum today, everything is publicly visible, by everyone. In the real worl

### 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 All @@ -22,4 +22,4 @@ Go to the [Getting Started section](/getting_started/getting_started) of the dev

Check out the [Awesome Aztec repo](https://github.com/AztecProtocol/awesome-aztec) for a curated list of learning resources and tools to help you learn more about Aztec.

Jump into one of the [tutorials](./developers/tutorials/main.md) to learn how to build more complex applications on Aztec.
Jump into one of the [tutorials](/tutorials/tutorials/contract_tutorials/private_voting_contract.md) to learn how to build more complex applications on Aztec.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ PrivateContext::emit_contract_class_unencrypted_log(&mut self, log);
### emit_encrypted_log

```rust
PrivateContext::emit_encrypted_log(&mut self, contract_address, storage_slot, note_type_id, encryption_pub_key, preimage);
PrivateContext::emit_encrypted_log(&mut self, contract_address, storage_slot, note_type_id, ivpk_m, preimage);
```

#### Parameters
Expand All @@ -218,7 +218,7 @@ PrivateContext::emit_encrypted_log(&mut self, contract_address, storage_slot, no
| contract_address | AztecAddress |
| storage_slot | Field |
| note_type_id | Field |
| encryption_pub_key | GrumpkinPoint |
| ivpk_m | GrumpkinPoint |
| preimage | [Field; N] |

### call_private_function
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,17 @@ compute_note_hash_for_insertion(note);
| --- | --- |
| note | Note |

### compute_note_hash_for_read_request

```rust
compute_note_hash_for_read_request(note);
```

#### Parameters
| Name | Type |
| --- | --- |
| note | Note |

### compute_note_hash_for_consumption

```rust
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ emit_encrypted_log_oracle(_contract_address, _storage_slot, _note_type_id, _encr
### emit_encrypted_log

```rust
emit_encrypted_log(contract_address, storage_slot, note_type_id, encryption_pub_key, preimage, counter);
emit_encrypted_log(contract_address, storage_slot, note_type_id, ivpk_m, preimage, counter);
```

#### Parameters
Expand All @@ -28,7 +28,7 @@ emit_encrypted_log(contract_address, storage_slot, note_type_id, encryption_pub_
| contract_address | AztecAddress |
| storage_slot | Field |
| note_type_id | Field |
| encryption_pub_key | GrumpkinPoint |
| ivpk_m | GrumpkinPoint |
| preimage | [Field; N] |
| counter | u32 |

0 comments on commit a8ddbbd

Please sign in to comment.