Skip to content

Commit 83d4376

Browse files
committed
fix lint
1 parent 991a5a7 commit 83d4376

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/thirdweb/src/engine/server-wallet.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { verifyTypedData } from "src/auth/verify-typed-data.js";
12
import { beforeAll, describe, expect, it } from "vitest";
23
import { TEST_CLIENT } from "../../test/src/test-clients.js";
34
import { TEST_ACCOUNT_B } from "../../test/src/test-wallets.js";
@@ -18,7 +19,6 @@ import {
1819
import { smartWallet } from "../wallets/smart/smart-wallet.js";
1920
import { generateAccount } from "../wallets/utils/generateAccount.js";
2021
import * as Engine from "./index.js";
21-
import { verifyTypedData } from "src/auth/verify-typed-data.js";
2222

2323
describe.runIf(
2424
process.env.TW_SECRET_KEY &&
@@ -84,11 +84,11 @@ describe.runIf(
8484
address: process.env.ENGINE_CLOUD_WALLET_ADDRESS as string,
8585
chain: arbitrumSepolia,
8686
client: TEST_CLIENT,
87-
vaultAccessToken: process.env.VAULT_TOKEN as string,
8887
executionOptions: {
89-
type: "eoa",
9088
address: process.env.ENGINE_CLOUD_WALLET_ADDRESS_EOA as string,
89+
type: "eoa",
9190
},
91+
vaultAccessToken: process.env.VAULT_TOKEN as string,
9292
});
9393

9494
const signature = await eoaServerWallet.signTypedData({

0 commit comments

Comments
 (0)