1
1
/* eslint-disable better-tree-shaking/no-top-level-side-effects */
2
2
import { SmartWallet } from "../src/evm/wallets/smart-wallet" ;
3
3
import { LocalWallet } from "../src/evm/wallets/local-wallet" ;
4
- import { ArbitrumSepolia } from "@thirdweb-dev/chains" ;
4
+ import { BaseSepoliaTestnet } from "@thirdweb-dev/chains" ;
5
5
import { ThirdwebSDK , SmartContract } from "@thirdweb-dev/sdk" ;
6
6
import { checkContractWalletSignature } from "../src/evm/connectors/smart-wallet/lib/check-contract-wallet-signature" ;
7
7
import { describe , it , expect , beforeAll } from "vitest" ;
@@ -12,9 +12,9 @@ let smartWallet: SmartWallet;
12
12
let smartWalletAddress : string ;
13
13
let personalWallet : LocalWallet ;
14
14
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 ;
18
18
const SECRET_KEY = process . env . TW_SECRET_KEY ;
19
19
20
20
const describeIf = ( condition : boolean ) =>
@@ -34,7 +34,7 @@ beforeAll(async () => {
34
34
secretKey : SECRET_KEY ,
35
35
} ) ;
36
36
contract = await sdk . getContract (
37
- "0x6A7a26c9a595E6893C255C9dF0b593e77518e0c3 " , // arb sep edition drop
37
+ "0x638263e3eAa3917a53630e61B1fBa685308024fa " , // arb sep edition drop
38
38
) ;
39
39
} ) ;
40
40
0 commit comments