From 428aac5a51a2573318399eb51b3b4b87643f81b0 Mon Sep 17 00:00:00 2001 From: Dexie Date: Tue, 24 Jun 2025 13:21:41 +0100 Subject: [PATCH 1/5] Spellcheck docs/pages/references/permissionless/v0_1/reference/smart-account-actions/sendTransactions.mdx --- .../v0_1/reference/smart-account-actions/sendTransactions.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/references/permissionless/v0_1/reference/smart-account-actions/sendTransactions.mdx b/docs/pages/references/permissionless/v0_1/reference/smart-account-actions/sendTransactions.mdx index e8fe2ebe..104c0571 100644 --- a/docs/pages/references/permissionless/v0_1/reference/smart-account-actions/sendTransactions.mdx +++ b/docs/pages/references/permissionless/v0_1/reference/smart-account-actions/sendTransactions.mdx @@ -4,7 +4,7 @@ import VersionWarning from "../../../VersionWarning" # sendTransactions -Send a batch of transaction from a smart account. +Send a batch of transactions from a smart account. ## Usage From 00dcb589db1d440943d6866c4fd7cf61d20d9ae4 Mon Sep 17 00:00:00 2001 From: Dexie Date: Tue, 24 Jun 2025 13:21:42 +0100 Subject: [PATCH 2/5] Spellcheck docs/pages/references/permissionless/v0_1/reference/accounts/signerToSafeSmartAccount.mdx --- .../v0_1/reference/accounts/signerToSafeSmartAccount.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/references/permissionless/v0_1/reference/accounts/signerToSafeSmartAccount.mdx b/docs/pages/references/permissionless/v0_1/reference/accounts/signerToSafeSmartAccount.mdx index 967e4ec8..89f29af0 100644 --- a/docs/pages/references/permissionless/v0_1/reference/accounts/signerToSafeSmartAccount.mdx +++ b/docs/pages/references/permissionless/v0_1/reference/accounts/signerToSafeSmartAccount.mdx @@ -129,4 +129,4 @@ An array of calls that will be executed during the deployment of the smart accou If you provide an address, the smart account can not be deployed. This should be used if you want to interact with an existing smart account. ::: -The address of the smart account. If not provided, the determinstic smart account address will be used. \ No newline at end of file +The address of the smart account. If not provided, the deterministic smart account address will be used. \ No newline at end of file From 5328f69c13fbf0dfe3c2a6bac8e4f7f98ae1d964 Mon Sep 17 00:00:00 2001 From: Dexie Date: Tue, 24 Jun 2025 13:21:43 +0100 Subject: [PATCH 3/5] Spellcheck docs/pages/references/permissionless/v0_1/faqs.mdx --- docs/pages/references/permissionless/v0_1/faqs.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/references/permissionless/v0_1/faqs.mdx b/docs/pages/references/permissionless/v0_1/faqs.mdx index 36709584..c3a849e9 100644 --- a/docs/pages/references/permissionless/v0_1/faqs.mdx +++ b/docs/pages/references/permissionless/v0_1/faqs.mdx @@ -7,7 +7,7 @@ import VersionWarning from "../VersionWarning" ## Getting `WaitForUserOperationReceiptTimeoutError`? This error is thrown when the bundler takes too long to bundle your user operation or the default timeout configured in permissionless.js is not enough. -This could be due to the block time of the chain you are using is more than the default timeout. +This could be due to the block time of the chain you are using being more than the default timeout. The easiest way to fix this is to increase the timeout in permissionless.js. You can do this by changing timeout value in `bundlerTransport` like so: From 76c922704c31fc07f1a0b54640206bc0d3661c75 Mon Sep 17 00:00:00 2001 From: Dexie Date: Tue, 24 Jun 2025 13:21:43 +0100 Subject: [PATCH 4/5] Spellcheck docs/pages/guides/how-to/sponsorship-policies/index.mdx --- docs/pages/guides/how-to/sponsorship-policies/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/guides/how-to/sponsorship-policies/index.mdx b/docs/pages/guides/how-to/sponsorship-policies/index.mdx index fb366d73..99ccc6d3 100644 --- a/docs/pages/guides/how-to/sponsorship-policies/index.mdx +++ b/docs/pages/guides/how-to/sponsorship-policies/index.mdx @@ -10,7 +10,7 @@ Start by going to the [sponsorship policies page](/guides/how-to/sponsorship-pol ![](https://i.imgur.com/sJM7l7m.png) -## Usage of Sponsorship Policies with permisionless.js +## Usage of Sponsorship Policies with permissionless.js If you are using [permissionless.js](/references/permissionless), you can use the `PimlicoPaymasterClient` to use sponsorship policies. From e01fdae33418082d24dacb093580ddff4f823376 Mon Sep 17 00:00:00 2001 From: Dexie Date: Tue, 24 Jun 2025 13:21:44 +0100 Subject: [PATCH 5/5] Spellcheck docs/pages/guides/how-to/sponsorship-policies/index.mdx --- docs/pages/guides/how-to/sponsorship-policies/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/guides/how-to/sponsorship-policies/index.mdx b/docs/pages/guides/how-to/sponsorship-policies/index.mdx index 99ccc6d3..b8d4b420 100644 --- a/docs/pages/guides/how-to/sponsorship-policies/index.mdx +++ b/docs/pages/guides/how-to/sponsorship-policies/index.mdx @@ -26,7 +26,7 @@ First we must create the public, (optionally) paymaster clients that will be use ### Create an account -Now, create an account. This can any of the accounts supported by permissionless.js or custom accounts conforming to the interface. For this example, we'll use a Simple account. +Now, create an account. This can be any of the accounts supported by permissionless.js or custom accounts conforming to the interface. For this example, we'll use a Simple account. ```ts // [!include ~/snippets/references/platform/sponsorship-policies/index.ts:account]