We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ba0ee9 commit 869e48cCopy full SHA for 869e48c
Thirdweb/Thirdweb.Utils/Utils.Types.cs
@@ -1,4 +1,5 @@
1
using Newtonsoft.Json;
2
+using System.Numerics;
3
4
namespace Thirdweb;
5
@@ -31,10 +32,10 @@ public class ThirdwebChainData
31
32
public string ShortName { get; set; }
33
34
[JsonProperty("chainId")]
- public int ChainId { get; set; }
35
+ public BigInteger ChainId { get; set; }
36
37
[JsonProperty("networkId")]
- public int NetworkId { get; set; }
38
+ public BigInteger NetworkId { get; set; }
39
40
[JsonProperty("slug")]
41
public string Slug { get; set; }
0 commit comments