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

Correct Spelling and Typographical Errors #3

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ As your instance of the app is used, you can return to the DGraph dashboard to v

### 4. Successful Deployment

Redeploy the app and it will pickup the new environment variables and should be functioning normally.
Redeploy the app and it will pick up the new environment variables and should be functioning normally.

## Running Locally

Expand Down
2 changes: 1 addition & 1 deletion docs/App User Guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ You may want to [Create a Transaction](#creating-a-transaction) next.
On the multisig account page, click "Create Transaction".

![Screen Shot 2021-09-05 at 1 16 56 PM](https://user-images.githubusercontent.com/6718506/132136739-c43eeaeb-15fd-48d3-afa2-8e630740cf82.png)
Enter in the to address, the amount and optionally a memo. The gas limit is adjustable, but you probably do not want to change it, as the gas fees are set automatically by the app. Once all the necessary fields are filled in, click "Create Transaction".
Enter the address, the amount and optionally a memo. The gas limit is adjustable, but you probably do not want to change it, as the gas fees are set automatically by the app. Once all the necessary fields are filled in, click "Create Transaction".
![Screen Shot 2021-09-05 at 1 19 30 PM](https://user-images.githubusercontent.com/6718506/132136750-d2e91252-fa4d-4f56-9d80-8460c85deec4.png)

You may want to [Sign a Transaction](#signing-a-transaction) next.
Expand Down
2 changes: 1 addition & 1 deletion lib/displayHelpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ function examplePubkey(index: number): string {

/**
* Returns an error message for invalid addresses.
* Returns null of there is no error.
* Returns null if there is no error.
*
* If `chainAddressPrefix` is null, the prefix check will be skipped.
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/graphqlHelpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const createMultisig = async (multisig: DbAccount) => {
*
* Keep the format in sync with `GetMultisigAccountResponse` because
* we return the full object in the API. Right now address and chainId
* are somewhat unnecessary to query but still nice for debgging.
* are somewhat unnecessary to query but still nice for debugging.
*/
interface MultisigFromQuery {
address: string;
Expand Down
2 changes: 1 addition & 1 deletion lib/multisigHelpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ interface GetMultisigAccountResponse {
* a node and/or the api if the multisig was made on this app.
*
* The public key should always be available, either on chain or in the app's database.
* The account is only available when the there was any on-chain activity such as
* The account is only available when there was any on-chain activity such as
* receipt of tokens.
*/
const getMultisigAccount = async (
Expand Down