You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Assets/Thirdweb/Core/Scripts/ThirdwebManager.cs
+11-5Lines changed: 11 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ public class ThirdwebManager : MonoBehaviour
46
46
newChainData("sepolia","11155111",null),
47
47
};
48
48
49
-
[Tooltip("Thirdweb Client ID (https://thirdweb.com/create-api-key/). Used for default thirdweb services such as Storage and Account Abstraction.")]
49
+
[Tooltip("Thirdweb Client ID (https://thirdweb.com/create-api-key/). Used for default thirdweb services such as RPC, Storage and Account Abstraction.")]
50
50
publicstringclientId;
51
51
52
52
[Tooltip("Whether the SDK should initialize on awake or not")]
@@ -55,6 +55,9 @@ public class ThirdwebManager : MonoBehaviour
55
55
[Tooltip("Whether to show thirdweb sdk debug logs")]
56
56
publicboolshowDebugLogs=true;
57
57
58
+
[Tooltip("Optional Bundle ID override for thirdweb services")]
59
+
publicstringbundleIdOverride=null;
60
+
58
61
[Tooltip("The name of your app")]
59
62
publicstringappName=null;
60
63
@@ -146,6 +149,13 @@ public void Initialize(string chainIdentifier)
0 commit comments