Skip to content

Commit 8ebd72c

Browse files
authored
fix: typos (#2180)
* Update environment.md * Update environment.md * Update environment.md * Update configure-delegator-accounts-signers.md * Update configure-delegator-accounts-signers.md * Update configure-delegator-accounts-signers.md * Update send-user-operation.md * Update send-user-operation.md
1 parent 1c6f23d commit 8ebd72c

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

gator_versioned_docs/version-0.10.1/concepts/environment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ import {
206206
// remove-end
207207

208208
// add-start
209-
+ const evniroment: DeleGatorEnvironment = {
209+
+ const environment: DeleGatorEnvironment = {
210210
+ SimpleFactory: "0x124..",
211211
+ // ...
212212
+ implementations: {

gator_versioned_docs/version-0.10.1/how-to/configure-delegator-accounts-signers.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ For example:
237237
<TabItem value="example.ts">
238238

239239
```typescript
240-
import { publiClient } from "./client.ts";
240+
import { publicClient } from "./client.ts";
241241
import { account, walletClient } from "./signers.ts";
242242
import {
243243
Implementation,
@@ -285,8 +285,8 @@ const privateKey = generatePrivateKey();
285285
export const account = privateKeyToAccount(privateKey);
286286

287287
// This private key will be used to generate the second signer.
288-
const walletClientPivatekey = generatePrivateKey();
289-
const walletClientAccount = privateKeyToAccount(walletClientPivatekey);
288+
const walletClientPrivatekey = generatePrivateKey();
289+
const walletClientAccount = privateKeyToAccount(walletClientPrivatekey);
290290

291291
export const walletClient = createWalletClient({
292292
account: walletClientAccount,

gator_versioned_docs/version-0.10.1/how-to/send-user-operation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const userOperationHash = await bundlerClient.sendUserOperation({
5656
}
5757
],
5858
maxFeePerGas,
59-
maxPriortyFeePerGas
59+
maxPriorityFeePerGas
6060
});
6161
```
6262

@@ -134,7 +134,7 @@ const userOperationHash = await bundlerClient.sendUserOperation({
134134
],
135135
// remove-start
136136
- maxFeePerGas,
137-
- maxPriortyFeePerGas
137+
- maxPriorityFeePerGas
138138
// remove-end
139139
// add-next-line
140140
+ ...fee

gator_versioned_docs/version-0.10.2/concepts/environment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ import {
206206
// remove-end
207207

208208
// add-start
209-
+ const evniroment: DeleGatorEnvironment = {
209+
+ const environment: DeleGatorEnvironment = {
210210
+ SimpleFactory: "0x124..",
211211
+ // ...
212212
+ implementations: {

gator_versioned_docs/version-0.10.2/how-to/configure-delegator-accounts-signers.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ For example:
237237
<TabItem value="example.ts">
238238

239239
```typescript
240-
import { publiClient } from "./client.ts";
240+
import { publicClient } from "./client.ts";
241241
import { account, walletClient } from "./signers.ts";
242242
import {
243243
Implementation,
@@ -285,8 +285,8 @@ const privateKey = generatePrivateKey();
285285
export const account = privateKeyToAccount(privateKey);
286286

287287
// This private key will be used to generate the second signer.
288-
const walletClientPivatekey = generatePrivateKey();
289-
const walletClientAccount = privateKeyToAccount(walletClientPivatekey);
288+
const walletClientPrivatekey = generatePrivateKey();
289+
const walletClientAccount = privateKeyToAccount(walletClientPrivatekey);
290290

291291
export const walletClient = createWalletClient({
292292
account: walletClientAccount,

gator_versioned_docs/version-0.10.2/how-to/send-user-operation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const userOperationHash = await bundlerClient.sendUserOperation({
5656
}
5757
],
5858
maxFeePerGas,
59-
maxPriortyFeePerGas
59+
maxPriorityFeePerGas
6060
});
6161
```
6262

@@ -134,7 +134,7 @@ const userOperationHash = await bundlerClient.sendUserOperation({
134134
],
135135
// remove-start
136136
- maxFeePerGas,
137-
- maxPriortyFeePerGas
137+
- maxPriorityFeePerGas
138138
// remove-end
139139
// add-next-line
140140
+ ...fee

gator_versioned_docs/version-0.11.0/concepts/environment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ import {
206206
// remove-end
207207

208208
// add-start
209-
+ const evniroment: DeleGatorEnvironment = {
209+
+ const environment: DeleGatorEnvironment = {
210210
+ SimpleFactory: "0x124..",
211211
+ // ...
212212
+ implementations: {

0 commit comments

Comments
 (0)