Skip to content

Commit 3c13fe4

Browse files
fix: switch to base sepolia for sw legacy integration tests (#2901)
1 parent f916d7a commit 3c13fe4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

legacy_packages/wallets/test/smart-wallet-integration.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* eslint-disable better-tree-shaking/no-top-level-side-effects */
22
import { SmartWallet } from "../src/evm/wallets/smart-wallet";
33
import { LocalWallet } from "../src/evm/wallets/local-wallet";
4-
import { ArbitrumSepolia } from "@thirdweb-dev/chains";
4+
import { BaseSepoliaTestnet } from "@thirdweb-dev/chains";
55
import { ThirdwebSDK, SmartContract } from "@thirdweb-dev/sdk";
66
import { checkContractWalletSignature } from "../src/evm/connectors/smart-wallet/lib/check-contract-wallet-signature";
77
import { describe, it, expect, beforeAll } from "vitest";
@@ -12,9 +12,9 @@ let smartWallet: SmartWallet;
1212
let smartWalletAddress: string;
1313
let personalWallet: LocalWallet;
1414
let contract: SmartContract;
15-
const factoryAddress = "0x564cf6453a1b0FF8DB603E92EA4BbD410dea45F3"; // pre 712
16-
const factoryAddressV2 = "0xbf1C9aA4B1A085f7DA890a44E82B0A1289A40052"; // post 712
17-
const chain = ArbitrumSepolia;
15+
const factoryAddress = "0x7b5ba9D46b53aae55e2c2E9b38d9AfF9a0b158F8"; // pre 712
16+
const factoryAddressV2 = "0xBCE06A6Dcd4dE8c6D8892E404b0a99A8812352b2"; // post 712
17+
const chain = BaseSepoliaTestnet;
1818
const SECRET_KEY = process.env.TW_SECRET_KEY;
1919

2020
const describeIf = (condition: boolean) =>
@@ -34,7 +34,7 @@ beforeAll(async () => {
3434
secretKey: SECRET_KEY,
3535
});
3636
contract = await sdk.getContract(
37-
"0x6A7a26c9a595E6893C255C9dF0b593e77518e0c3", // arb sep edition drop
37+
"0x638263e3eAa3917a53630e61B1fBa685308024fa", // arb sep edition drop
3838
);
3939
});
4040

0 commit comments

Comments
 (0)