Skip to content

Commit 6080fbe

Browse files
committed
v2.25.0
1 parent 6f37641 commit 6080fbe

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

Thirdweb.Console/Program.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414

1515
#region Basic Wallet Interaction
1616

17-
// Create a private key wallet
18-
var privateKeyWallet = await PrivateKeyWallet.Generate(client);
17+
// // Create a private key wallet
18+
// var privateKeyWallet = await PrivateKeyWallet.Generate(client);
1919

20-
var walletAddress = await privateKeyWallet.GetAddress();
21-
Console.WriteLine($"PK Wallet address: {walletAddress}");
20+
// var walletAddress = await privateKeyWallet.GetAddress();
21+
// Console.WriteLine($"PK Wallet address: {walletAddress}");
2222

2323
#endregion
2424

@@ -334,11 +334,11 @@
334334

335335
#region AA ZkSync
336336

337-
var zkSmartWallet = await SmartWallet.Create(personalWallet: privateKeyWallet, chainId: 11124, gasless: true);
337+
// var zkSmartWallet = await SmartWallet.Create(personalWallet: privateKeyWallet, chainId: 11124, gasless: true);
338338

339-
var hash = await zkSmartWallet.SendTransaction(new ThirdwebTransactionInput(chainId: 11124, to: await zkSmartWallet.GetAddress(), value: 0, data: "0x"));
339+
// var hash = await zkSmartWallet.SendTransaction(new ThirdwebTransactionInput(chainId: 11124, to: await zkSmartWallet.GetAddress(), value: 0, data: "0x"));
340340

341-
Console.WriteLine($"Transaction hash: {hash}");
341+
// Console.WriteLine($"Transaction hash: {hash}");
342342

343343
#endregion
344344

Thirdweb/Thirdweb.Utils/Constants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
public static class Constants
44
{
5-
public const string VERSION = "2.24.1";
5+
public const string VERSION = "2.25.0";
66

77
internal const string BRIDGE_API_URL = "https://bridge.thirdweb.com";
88
internal const string INSIGHT_API_URL = "https://insight.thirdweb.com";

Thirdweb/Thirdweb.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>netstandard2.1;net6.0;net7.0;net8.0</TargetFrameworks>
4-
<PackageVersion>2.24.1</PackageVersion>
5-
<AssemblyVersion>2.24.1</AssemblyVersion>
6-
<FileVersion>2.24.1</FileVersion>
4+
<PackageVersion>2.25.0</PackageVersion>
5+
<AssemblyVersion>2.25.0</AssemblyVersion>
6+
<FileVersion>2.25.0</FileVersion>
77
<LangVersion>latest</LangVersion>
88
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
99
<ImplicitUsings>enable</ImplicitUsings>

0 commit comments

Comments
 (0)