diff --git a/docs/pages/guides/how-to/sponsorship-policies/index.mdx b/docs/pages/guides/how-to/sponsorship-policies/index.mdx index fb366d73..b8d4b420 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. @@ -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] 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: 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 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