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 { Mumbai } from "@thirdweb-dev/chains" ;
4
+ import { ArbitrumSepolia } 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
@@ -13,9 +13,9 @@ let smartWallet: SmartWallet;
13
13
let smartWalletAddress : string ;
14
14
let personalWallet : LocalWallet ;
15
15
let contract : SmartContract ;
16
- const factoryAddress = "0x13947435c2fe6BE51ED82F6f59C38617a323dB9B " ; // pre 712
17
- const factoryAddressV2 = "0xC64d04AedecA895b3F20DC6866b4b532e0b22634 " ; // post 712
18
- const chain = Mumbai ;
16
+ const factoryAddress = "0x564cf6453a1b0FF8DB603E92EA4BbD410dea45F3 " ; // pre 712
17
+ const factoryAddressV2 = "0xbf1C9aA4B1A085f7DA890a44E82B0A1289A40052 " ; // post 712
18
+ const chain = ArbitrumSepolia ;
19
19
const SECRET_KEY = process . env . TW_SECRET_KEY ;
20
20
21
21
const describeIf = ( condition : boolean ) =>
@@ -35,7 +35,7 @@ beforeAll(async () => {
35
35
secretKey : SECRET_KEY ,
36
36
} ) ;
37
37
contract = await sdk . getContract (
38
- "0xD170A53dADb19f62C78AB9982236857B71dbc83A " , // mumbai edition drop
38
+ "0x6A7a26c9a595E6893C255C9dF0b593e77518e0c3 " , // arb sep edition drop
39
39
) ;
40
40
} ) ;
41
41
0 commit comments