Skip to content

Commit ce2a2f9

Browse files
committed
ver
1 parent 312475a commit ce2a2f9

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Assets/Thirdweb/Runtime/Unity/ThirdwebManagerBase.cs

+5-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ public abstract class ThirdwebManagerBase : MonoBehaviour
225225

226226
public static ThirdwebManagerBase Instance { get; protected set; }
227227

228-
public static readonly string THIRDWEB_UNITY_SDK_VERSION = "5.18.5";
228+
public static readonly string THIRDWEB_UNITY_SDK_VERSION = "5.18.6";
229229

230230
protected const string THIRDWEB_AUTO_CONNECT_OPTIONS_KEY = "ThirdwebAutoConnectOptions";
231231

@@ -288,6 +288,10 @@ public virtual async void Initialize()
288288
}
289289

290290
Initialized = true;
291+
292+
var iawSiweExternal = await ConnectWallet(new WalletOptions(WalletProvider.InAppWallet, 421614, new InAppWalletOptions(authprovider: AuthProvider.SiweExternal)));
293+
var iawSiweExternalAddress = await iawSiweExternal.GetAddress();
294+
Debug.Log($"InAppWallet SiweExternal Address: {iawSiweExternalAddress}");
291295
}
292296

293297
// ------------------------------------------------------

ProjectSettings/ProjectSettings.asset

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ PlayerSettings:
141141
loadStoreDebugModeEnabled: 0
142142
visionOSBundleVersion: 1.0
143143
tvOSBundleVersion: 1.0
144-
bundleVersion: 5.18.5
144+
bundleVersion: 5.18.6
145145
preloadedAssets: []
146146
metroInputSource: 0
147147
wsaTransparentSwapchain: 0

0 commit comments

Comments
 (0)