Skip to content

Commit 181226c

Browse files
committed
.NET 2.25.0 // Contract Deployment
1 parent 24eeaef commit 181226c

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed
262 KB
Binary file not shown.

Assets/Thirdweb/Runtime/Unity/ThirdwebManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using UnityEngine;
21
using System.Linq;
32
using System.Numerics;
3+
using UnityEngine;
44

55
namespace Thirdweb.Unity
66
{
@@ -12,7 +12,7 @@ public class ThirdwebManager : ThirdwebManagerBase
1212
[field: SerializeField]
1313
private string BundleId { get; set; }
1414

15-
public new static ThirdwebManager Instance
15+
public static new ThirdwebManager Instance
1616
{
1717
get => ThirdwebManagerBase.Instance as ThirdwebManager;
1818
}

Assets/Thirdweb/Runtime/Unity/ThirdwebManagerBase.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
using UnityEngine;
1+
using System;
22
using System.Collections.Generic;
3+
using System.IO;
4+
using System.Linq;
35
using System.Numerics;
46
using System.Threading.Tasks;
5-
using System.Linq;
6-
using System;
7-
using System.IO;
87
using Newtonsoft.Json;
8+
using UnityEngine;
99

1010
namespace Thirdweb.Unity
1111
{
@@ -16,7 +16,7 @@ public enum WalletProvider
1616
InAppWallet,
1717
WalletConnectWallet,
1818
MetaMaskWallet,
19-
EcosystemWallet
19+
EcosystemWallet,
2020
}
2121

2222
[Serializable]

0 commit comments

Comments
 (0)