Skip to content

Commit 8c45dc2

Browse files
committed
Merge branch 'main' into v3
2 parents 1c9894c + a701896 commit 8c45dc2

File tree

3 files changed

+4
-26
lines changed

3 files changed

+4
-26
lines changed

Thirdweb.Tests/Thirdweb.Utils/Thirdweb.Utils.Tests.cs

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -743,28 +743,6 @@ public async Task FetchGasFees_80002()
743743
Assert.True(maxFee > maxPrio);
744744
}
745745

746-
[Fact(Timeout = 120000)]
747-
public async Task FetchGasFees_Celo()
748-
{
749-
var chainId = new BigInteger(42220);
750-
var (maxFee, maxPrio) = await Utils.FetchGasFees(this.Client, chainId);
751-
Assert.True(maxFee > 0);
752-
Assert.True(maxPrio > 0);
753-
Assert.Equal(maxFee, maxPrio);
754-
755-
chainId = new BigInteger(44787);
756-
(maxFee, maxPrio) = await Utils.FetchGasFees(this.Client, chainId);
757-
Assert.True(maxFee > 0);
758-
Assert.True(maxPrio > 0);
759-
Assert.Equal(maxFee, maxPrio);
760-
761-
chainId = new BigInteger(62320);
762-
(maxFee, maxPrio) = await Utils.FetchGasFees(this.Client, chainId);
763-
Assert.True(maxFee > 0);
764-
Assert.True(maxPrio > 0);
765-
Assert.Equal(maxFee, maxPrio);
766-
}
767-
768746
[Fact]
769747
public void PreprocessTypedDataJson_FormatsBigIntegers()
770748
{

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.25.1";
5+
public const string VERSION = "2.25.2";
66

77
internal const string SOCIAL_API_URL = "https://social.thirdweb.com";
88
internal const string PIN_URI = "https://storage.thirdweb.com/ipfs/upload";

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.25.1</PackageVersion>
5-
<AssemblyVersion>2.25.1</AssemblyVersion>
6-
<FileVersion>2.25.1</FileVersion>
4+
<PackageVersion>2.25.2</PackageVersion>
5+
<AssemblyVersion>2.25.2</AssemblyVersion>
6+
<FileVersion>2.25.2</FileVersion>
77
<LangVersion>latest</LangVersion>
88
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
99
<ImplicitUsings>enable</ImplicitUsings>

0 commit comments

Comments
 (0)