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: typos workflow #1473

Merged
merged 1 commit into from
May 16, 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
4 changes: 3 additions & 1 deletion .github/workflows/config/typos.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[default.extend-words]
ba = "ba"
groth = "groth"
Allo = "Allo"
Buidl = "Buidl"

[files]
extend-exclude = ["/**/CHANGELOG.md"]
extend-exclude = ["/**/CHANGELOG.md", "/**/*.svg", "/**/*.excalidraw"]
2 changes: 1 addition & 1 deletion .github/workflows/typos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ jobs:
- name: Use typos with config file
uses: crate-ci/typos@v1.21.0
with:
config: config/typos.toml
config: .github/workflows/config/typos.toml
2 changes: 1 addition & 1 deletion circuits/circom/core/non-qv/processMessages.circom
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ include "../../trees/incrementalQuinaryTree.circom";

// The index of the last message leaf in the batch to process, exclusive.
// This value may be less than batchStartIndex + batchSize if this batch is
// the last batch and the total number of mesages is not a multiple of the batch size.
// the last batch and the total number of messages is not a multiple of the batch size.
signal batchEndIndex;

// The history of state and ballot roots and temporary intermediate
Expand Down
2 changes: 1 addition & 1 deletion circuits/circom/core/qv/processMessages.circom
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ template ProcessMessages(

// The index of the last message leaf in the batch to process, exclusive.
// This value may be less than batchStartIndex + batchSize if this batch is
// the last batch and the total number of mesages is not a multiple of the batch size.
// the last batch and the total number of messages is not a multiple of the batch size.
signal batchEndIndex;

// The history of state and ballot roots and temporary intermediate
Expand Down
2 changes: 1 addition & 1 deletion website/blog/2023-01-18-maci-v1.1.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ For a more detailed description of MACI, please refer to the [v1 technical intro

## Security Audit

MACI was [audited](/audit_reports/202220930_Hashcloak_audit_report.pdf) by HashCloack in the summer of 2022. The audit team discovered certain high risk vulnerabilities, whose fixes were the focus of the MACI team in the past months.
MACI was [audited](/audit_reports/202220930_Hashcloak_audit_report.pdf) by HashCloak in the summer of 2022. The audit team discovered certain high risk vulnerabilities, whose fixes were the focus of the MACI team in the past months.

In more details, the audit revealed two high risk issues within the zk-SNARK circuits:

Expand Down
2 changes: 1 addition & 1 deletion website/blog/2024-04-10-roadmap-q2.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ We completed a significant refactor to simplify the codebase and improve develop

### ✅ Support ETH Latam QF round

We teamed up with [ETH Latam](https://ethlatam.org/) to help them run a QF round using the clr.fund stack (running on MACI v1.2). Over 60 conference attendees participated (using [Zupass](https://zupass.org/) tickets as the gatekeeper to the faucet and round) to distribute over 30,000 DAI to public good projects across Central America and the Carribean - [view the round results](https://qf.ethlatam.org/#/leaderboards/0x86F33909474c0dEf2Cb7F93d2eE0B8aF26112BF6/networks/optimism) and learn more in [ETH Kipu's ETH Latam recap post](https://mirror.xyz/ethlatam.eth/OoDqW3Omy8NbOGosdDQ8XUp_fZjP4sf_s4VHkaPWZXM)!
We teamed up with [ETH Latam](https://ethlatam.org/) to help them run a QF round using the clr.fund stack (running on MACI v1.2). Over 60 conference attendees participated (using [Zupass](https://zupass.org/) tickets as the gatekeeper to the faucet and round) to distribute over 30,000 DAI to public good projects across Central America and the Caribbean - [view the round results](https://qf.ethlatam.org/#/leaderboards/0x86F33909474c0dEf2Cb7F93d2eE0B8aF26112BF6/networks/optimism) and learn more in [ETH Kipu's ETH Latam recap post](https://mirror.xyz/ethlatam.eth/OoDqW3Omy8NbOGosdDQ8XUp_fZjP4sf_s4VHkaPWZXM)!

### ✅ Support ETH Colombia QF round

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ All private inputs are set by the coordinator.
| `command` | The command to process. Includes all the details in the leaf. |
| `noOp` | The no-op flag |
| `userPubKey` | The public key associated with the private key used to sign the command |
| `encPubKey` | The ephermeral public key used to generate the ECDH shared key which was used to encrypt the command. |
| `encPubKey` | The ephemeral public key used to generate the ECDH shared key which was used to encrypt the command. |
| `coordinatorPrivKey` | The coordinator's private key. |

For the sake of simplicity, in this specification, we assume that there is no batching of commands and we handle each command one at a time.
Expand Down
Loading