Skip to content

Commit

Permalink
docs: typos (#2732)
Browse files Browse the repository at this point in the history
  • Loading branch information
chenxsan committed Sep 17, 2024
1 parent 312160a commit 3866a6f
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ const signature = await account.signUserOperation({

- **Type:** `bigint`

Extra gas to pay the bunder.
Extra gas to pay the Bundler.

```ts twoslash
import { toCoinbaseSmartAccount } from 'viem/account-abstraction'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ const gas = await bundlerClient.estimateUserOperationGas({

- **Type:** `bigint`

Extra gas to pay the Bunder.
Extra gas to pay the Bundler.

```ts twoslash
import { parseEther } from 'viem'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ const userOperation = await bundlerClient.prepareUserOperation({

- **Type:** `bigint`

Extra gas to pay the Bunder.
Extra gas to pay the Bundler.

```ts twoslash
import { bundlerClient } from './config'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ const hash = await bundlerClient.sendUserOperation({

- **Type:** `bigint`

Extra gas to pay the Bunder.
Extra gas to pay the Bundler.

```ts twoslash
import { account, bundlerClient } from './config'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ const paymasterArgs = await paymasterClient.getPaymasterData({

- **Type:** `bigint`

Extra gas to pay the Bunder.
Extra gas to pay the Bundler.

```ts twoslash
import { paymasterClient } from './config'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ const paymasterArgs = await paymasterClient.getPaymasterStubData({

- **Type:** `bigint`

Extra gas to pay the Bunder.
Extra gas to pay the Bundler.

```ts twoslash
import { paymasterClient } from './config'
Expand Down
6 changes: 3 additions & 3 deletions src/account-abstraction/types/userOperation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export type PackedUserOperation = {
nonce: bigint
/** Concatenation of paymaster fields (or empty). */
paymasterAndData: Hex
/** Extra gas to pay the bunder. */
/** Extra gas to pay the Bundler. */
preVerificationGas: bigint
/** The account making the operation. */
sender: Address
Expand Down Expand Up @@ -93,7 +93,7 @@ export type UserOperation<
paymasterPostOpGasLimit?: uint256 | undefined
/** The amount of gas to allocate for the paymaster validation code. */
paymasterVerificationGasLimit?: uint256 | undefined
/** Extra gas to pay the bunder. */
/** Extra gas to pay the Bundler. */
preVerificationGas: uint256
/** The account making the operation. */
sender: Address
Expand All @@ -119,7 +119,7 @@ export type UserOperation<
nonce: uint256
/** Paymaster address with calldata. */
paymasterAndData?: Hex | undefined
/** Extra gas to pay the bunder. */
/** Extra gas to pay the Bundler. */
preVerificationGas: uint256
/** The account making the operation. */
sender: Address
Expand Down

0 comments on commit 3866a6f

Please sign in to comment.