Skip to content

Commit 0aa6971

Browse files
authored
Update README.md
Signed-off-by: Firekeeper <[email protected]>
1 parent 16fc72a commit 0aa6971

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ Smart wallets offer advanced functionalities such as gasless transactions and se
157157
**Creating a Smart Wallet**
158158

159159
```csharp
160-
var smartWallet = await SmartWallet.Create(client: client, personalWallet: inAppWallet, factoryAddress: "0xbf1C9aA4B1A085f7DA890a44E82B0A1289A40052", gasless: true, chainId: 421614);
160+
var smartWallet = await SmartWallet.Create(personalWallet: inAppWallet, gasless: true, chainId: 421614);
161161

162162
Console.WriteLine($"Smart Wallet: {await smartWallet.GetAddress()}");
163163
```
@@ -248,7 +248,7 @@ Console.WriteLine($"Transaction hash: {txHash}");
248248
With ZkSync, you don't need to pass an account factory address, and the rest works the same.
249249

250250
```csharp
251-
var zkSyncWallet = await SmartWallet.Create(client: client, personalWallet: inAppWallet, gasless: true, chainId: 300);
251+
var zkSyncWallet = await SmartWallet.Create(personalWallet: inAppWallet, gasless: true, chainId: 300);
252252

253253
Console.WriteLine($"ZkSync Smart Wallet: {await zkSyncWallet.GetAddress()}");
254254

0 commit comments

Comments
 (0)