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 #652

Closed
wants to merge 9 commits into from
Closed
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: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ We use [ESLint](https://eslint.org/) and [Prettier](https://prettier.io/) to kee

### Commits

We use [Conventional Commits](https://www.conventionalcommits.org) to add human and machine readable meaning to our commit messages. In particular, we use the [Angular convention](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular).
We use [Conventional Commits](https://www.conventionalcommits.org) to add human and machine-readable meaning to our commit messages. In particular, we use the [Angular convention](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular).

Don't worry if it looks complicated. In our repositories, after adding your files with git (i.e `git add`), you can just run the `commit` script in our `package.json`, and you'll be prompted to fill out any required commit fields at commit time. We use [Commitizen](https://github.com/commitizen/cz-cli) under the hood.

Expand Down Expand Up @@ -76,7 +76,7 @@ The type must be one of the following:

#### Scope

The scope could be anything specifying place of the commit change. In a monorepo, it could be the name of the package or project affected.
The scope could be anything specifying the place of the commit change. In a monorepo, it could be the name of the package or project affected.

#### Subject

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ yarn prettier:write

### Conventional commits

Bandada uses [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/), which follow a standardised format for commit messages. To use this format, you can run the [command line utility](https://github.com/commitizen/cz-cli) by running:
Bandada uses [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/), which follow a standardized format for commit messages. To use this format, you can run the [command line utility](https://github.com/commitizen/cz-cli) by running:

```bash
yarn commit
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ Not using SSH:
$ GIT_USER=<Your GitHub username> yarn deploy
```

If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push it to the `gh-pages` branch.
4 changes: 2 additions & 2 deletions apps/docs/docs/api-sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import TabItem from "@theme/TabItem"

[The API SDK JavaScript package](https://github.com/bandada-infra/bandada/tree/main/libs/api-sdk) provides a list of functions to make it easier to work with the Bandada API.

Example of project using the API SDK library: [bandada-api-sdk-demo](https://github.com/bandada-infra/bandada-sdk-demo).
Example of a project using the API SDK library: [bandada-api-sdk-demo](https://github.com/bandada-infra/bandada-sdk-demo).

## Install library

Expand Down Expand Up @@ -500,4 +500,4 @@ const url = apiSdk.getMultipleCredentialsGroupJoinUrl(
groupId,
commitment
)
```
```
8 changes: 4 additions & 4 deletions apps/docs/docs/tutorials/api-sdk/onchain-invites.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ const { data: signer } = useSigner()
const semaphore = getSemaphoreContract("sepolia", signer)
```

You can choose to use other signer package of your choice, wagmi is just an example.
You can choose to use another signer package of your choice, wagmi is just an example.


## Create a group

Create a new on-chain group with associated group.
Create a new on-chain group with an associated group.

```ts
const semaphore = getSemaphoreContract("sepolia", signer as any)
Expand Down Expand Up @@ -159,7 +159,7 @@ const memberId = "member-id-1"

const groupCreationDetails = {
name: onchainGroupId,
description: `This group is associated to the on-chain group ${onchainGroupId}`,
description: `This group is associated with the on-chain group ${onchainGroupId}`,
treeDepth: 16,
fingerprintDuration: 3600
}
Expand All @@ -180,4 +180,4 @@ if(invite.isRedeemed) {
// redeem the invite code after successfully adding the member to the on-chain group
await apiSdk.redeemInvite(invite.code, associatedGroup.id, apiKey)
}
```
```
4 changes: 2 additions & 2 deletions apps/docs/docs/tutorials/dashboard/off-chain/credential.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ title: Credential access
**Input**: Minimum balance, network, block number.
- **Provider**: EAS.
- **Credential**: Attestations.
**Input**: Minimum attestations, network, attestation details.
**Input**: Minimum attestations, network, and attestation details.

3. Click `Continue` to proceed.
4. You will be redirected to the `Group Preview` page to review the group details.
5. Click `Create Group` to finalize the group creation.

![Create off-chain group preview](../../../../static/img/tutorial/offchain-preview.png)

Congratulations! You have successfully created an off-chain credential access group!
Congratulations! You have successfully created an off-chain credential access group!
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ sidebar_position: 4
title: Multiple credentials access
---

# Muleiple credentials access
# Multiple credentials access

## Create an off-chain group with multiple credentials access

1. To create an off-chain group with multiple credentials access, select `Multiple credentials` access mode.

![Create off-chain group multiple credentials access](../../../../static/img/tutorial/offchain-mult-credentials.png)

2. You can select multiple types of credentials for the off-chain group so that only users that fit the criteria can join the group. Users can use parentheses and logical operators such as `AND`, `OR`, `NOT` and `XOR` to chain multiple credentials together. Currently supported credentials and providers are:
2. You can select multiple types of credentials for the off-chain group so that only users who fit the criteria can join the group. Users can use parentheses and logical operators such as `AND`, `OR`, `NOT`, and `XOR` to chain multiple credentials together. Currently supported credentials and providers are:
- **Provider**: GitHub.
- **Credential**: Followers.
**Input**: Minimum followers.
Expand All @@ -31,11 +31,11 @@ title: Multiple credentials access
**Input**: Minimum balance, network, block number.
- **Provider**: EAS.
- **Credential**: Attestations.
**Input**: Minimum attestations, network, attestation details.
**Input**: Minimum attestations, network, and attestation details.
4. Click `Continue` to proceed.
5. You will be redirected to the `Group Preview` page to review the group details.
6. Click `Create Group` to finalize the group creation.

![Create off-chain group preview](../../../../static/img/tutorial/offchain-preview.png)

Congratulations! You have successfully created an off-chain multiple credentials access group!
Congratulations! You have successfully created an off-chain multiple credentials access group!
4 changes: 2 additions & 2 deletions apps/docs/docs/tutorials/dashboard/on-chain/onchain.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ title: Create group

2. Unlike an off-chain group, you do not have to input any group details to create an on-chain group.
3. Click on `Continue` to proceed.
4. You will be redirected to the `Group Preview` page to reivew the group details.
4. You will be redirected to the `Group Preview` page to review the group details.
5. Click `Create Group` to finalize the group creation.

![Create on-chain group preview](../../../../static/img/tutorial/onchain-preview.png)

Congratulations! You have successfully created an on-chain group!
Congratulations! You have successfully created an on-chain group!
2 changes: 1 addition & 1 deletion apps/website/app/learn/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ import { ArticlesAndVideos } from "./../sections/learn/ArticlesAndVideos"
In the realm of privacy and zero-knowledge technologies, the concept of a group takes on a significant role. A group, in this context, is more than just a collection of individuals; it represents an **anonymity set**. This means that within the group, individual members' actions, characteristics, or identities become indistinguishable from one another, providing a way for individuals to engage in collective actions or share attributes without revealing specific information about themselves.
</Accordion>
<Divider.Line />
<Accordion label="Anonimity VS. Pseudonymity">
<Accordion label="Anonymity VS. Pseudonymity">
Anonymity refers to the complete concealment of a user's identity, while pseudonymity allows users to interact under a consistent but “disguised” identity.
</Accordion>
<Divider.Line />
Expand Down