From 1a2ce72bc0eba6c88ac25a8caa9bc9f8e46a3596 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Mon, 17 Jun 2024 22:37:44 +0300 Subject: [PATCH 1/5] fix typos App User Guide.md --- docs/App User Guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/App User Guide.md b/docs/App User Guide.md index c65c84ec..3bed2819 100644 --- a/docs/App User Guide.md +++ b/docs/App User Guide.md @@ -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. From 7328fca19aefc408b6ef080df2363e7c56b9c243 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Mon, 17 Jun 2024 22:38:46 +0300 Subject: [PATCH 2/5] fix typos displayHelpers.ts --- lib/displayHelpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/displayHelpers.ts b/lib/displayHelpers.ts index 287b2614..414a39d8 100644 --- a/lib/displayHelpers.ts +++ b/lib/displayHelpers.ts @@ -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. */ From 27e945f14448d3334ada0702290af13fb3deace5 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Mon, 17 Jun 2024 22:39:22 +0300 Subject: [PATCH 3/5] fix typos graphqlHelpers.ts --- lib/graphqlHelpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/graphqlHelpers.ts b/lib/graphqlHelpers.ts index 836f1530..a63442ec 100644 --- a/lib/graphqlHelpers.ts +++ b/lib/graphqlHelpers.ts @@ -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; From 4996012fc7c39df378e63cdcbabd8ee28f4e72e5 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Mon, 17 Jun 2024 22:39:51 +0300 Subject: [PATCH 4/5] fix typos multisigHelpers.ts --- lib/multisigHelpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/multisigHelpers.ts b/lib/multisigHelpers.ts index 1e6b9bdb..5cc8b857 100644 --- a/lib/multisigHelpers.ts +++ b/lib/multisigHelpers.ts @@ -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 ( From 845640e132366488f82710b48bcc8bc14f7575b7 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Mon, 17 Jun 2024 22:42:47 +0300 Subject: [PATCH 5/5] fix typos README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 650b01a4..9a99f067 100644 --- a/README.md +++ b/README.md @@ -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