@@ -10,17 +10,20 @@ async function newWallet() {
1010 // const walletFactoryAddress = "0x44B74caF7CB28cC243EaA9D1d1b3eCb2Ddc2C9f1";
1111
1212 // walletFactory and smartWallet contract on test v5:
13- const smartWalletAddress = "0xE708Cb725D6F2aDeEab2258262Aa9129D2A28312" ;
14- const walletFactoryAddress = "0x5Dd70df24364DC05D46C8F40611BFDd107927263" ;
13+ // const smartWalletAddress = "0xE708Cb725D6F2aDeEab2258262Aa9129D2A28312";
14+ // const walletFactoryAddress = "0x5Dd70df24364DC05D46C8F40611BFDd107927263";
15+
16+ // walletFactory and smartWallet contract on Arbitrum One:
17+ const smartWalletAddress = "0xc53Ec1cc77Be1793AfE12A7FA6fE0575960F0c36" ;
18+ const walletFactoryAddress = "0xE23c3fD23fd58C0FEE42455A17d15A24637750f6" ;
1519
1620 const ownerAccount = ( await ethers . getSigners ( ) ) [ 0 ] ;
1721 const ownerAddr = await ownerAccount . getAddress ( ) ;
18- const fakeGuardian1 = "0x" + "12" . repeat ( 20 ) ;
1922 const salt = 1 ;
2023 const signature = signCreateWallet (
2124 walletFactoryAddress ,
2225 ownerAddr ,
23- [ fakeGuardian1 ] ,
26+ [ ] ,
2427 new BN ( 0 ) ,
2528 ethers . constants . AddressZero ,
2629 ethers . constants . AddressZero ,
@@ -30,7 +33,7 @@ async function newWallet() {
3033 ) ;
3134 const walletConfig : any = {
3235 owner : ownerAddr ,
33- guardians : [ fakeGuardian1 ] ,
36+ guardians : [ ] ,
3437 quota : 0 ,
3538 inheritor : ethers . constants . AddressZero ,
3639 feeRecipient : ethers . constants . AddressZero ,
0 commit comments