Skip to content

Commit d3c0f8c

Browse files
committed
ver
1 parent 5ad8780 commit d3c0f8c

File tree

4 files changed

+22
-12
lines changed

4 files changed

+22
-12
lines changed

Assets/Thirdweb/Core/Scripts/ThirdwebSDK.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ public struct BiconomyOptions
243243

244244
public ThirdwebSession session;
245245

246-
internal const string version = "4.7.9";
246+
internal const string version = "4.7.10";
247247

248248
/// <summary>
249249
/// Create an instance of the Thirdweb SDK.

Assets/Thirdweb/Editor/ThirdwebManagerEditor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public class ThirdwebManagerEditor : Editor
4545
private GUIContent warningIcon;
4646
private Texture2D bannerImage;
4747

48-
private static readonly string ExpandedStateKey = "ThirdwebManagerEditor_ExpandedState_4.7.9";
48+
private static readonly string ExpandedStateKey = "ThirdwebManagerEditor_ExpandedState_4.7.10";
4949

5050
private void OnEnable()
5151
{

Assets/WebGLTemplates/Thirdweb/lib/thirdweb-unity-bridge.js

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -112498,7 +112498,9 @@ ${t.resources.map((m) => `- ${m}`).join(`
112498112498
e
112499112499
? r.push(
112500112500
a.replace("${THIRDWEB_API_KEY}", e) +
112501-
(typeof globalThis < "u" && "APP_BUNDLE_ID" in globalThis
112501+
(typeof globalThis < "u" &&
112502+
"APP_BUNDLE_ID" in globalThis &&
112503+
!!globalThis.APP_BUNDLE_ID
112502112504
? `/?bundleId=${globalThis.APP_BUNDLE_ID}`
112503112505
: "")
112504112506
)
@@ -160931,7 +160933,9 @@ ${t.resources.map((m) => `- ${m}`).join(`
160931160933
e
160932160934
? r.push(
160933160935
a.replace("${THIRDWEB_API_KEY}", e) +
160934-
(typeof globalThis < "u" && "APP_BUNDLE_ID" in globalThis
160936+
(typeof globalThis < "u" &&
160937+
"APP_BUNDLE_ID" in globalThis &&
160938+
!!globalThis.APP_BUNDLE_ID
160935160939
? `/?bundleId=${globalThis.APP_BUNDLE_ID}`
160936160940
: "")
160937160941
)
@@ -338635,7 +338639,10 @@ await sdk.getEdition("${
338635338639
: "node";
338636338640
}
338637338641
function n4a(n) {
338638-
return n.supportedChains.reduce((e, t) => ((e[t.chainId] = t), e), {});
338642+
return n.supportedChains.reduce(
338643+
(e, t) => (e[t.chainId] || (e[t.chainId] = t), e),
338644+
{}
338645+
);
338639338646
}
338640338647
function Q0e(n, e) {
338641338648
if (typeof n == "string" && a4a(n)) return F0e(n, e);
@@ -365712,7 +365719,10 @@ await sdk.getEdition("${
365712365719
: "node";
365713365720
}
365714365721
function DIa(n) {
365715-
return n.supportedChains.reduce((e, t) => ((e[t.chainId] = t), e), {});
365722+
return n.supportedChains.reduce(
365723+
(e, t) => (e[t.chainId] || (e[t.chainId] = t), e),
365724+
{}
365725+
);
365716365726
}
365717365727
function Nse(n, e) {
365718365728
if (typeof n == "string" && RIa(n)) return Ese(n, e);
@@ -480977,8 +480987,8 @@ Code: ${s}`;
480977480987
super(t);
480978480988
let r = {
480979480989
walletConnectWalletMetadata: {
480980-
name: "Thirdweb Smart Wallet",
480981-
description: "Thirdweb Smart Wallet",
480990+
name: "thirdweb Smart Account",
480991+
description: "thirdweb Smart Account",
480982480992
url: "https://thirdweb.com",
480983480993
icons: ["https://thirdweb.com/favicon.ico"],
480984480994
},
@@ -491601,8 +491611,8 @@ Code: ${s}`;
491601491611
super(t);
491602491612
let r = {
491603491613
walletConnectWalletMetadata: {
491604-
name: "Thirdweb Smart Wallet",
491605-
description: "Thirdweb Smart Wallet",
491614+
name: "thirdweb Smart Account",
491615+
description: "thirdweb Smart Account",
491606491616
url: "https://thirdweb.com",
491607491617
icons: ["https://thirdweb.com/favicon.ico"],
491608491618
},
@@ -494672,7 +494682,7 @@ Code: ${s}`;
494672494682
}
494673494683
(globalThis.X_SDK_NAME = "UnitySDK_WebGL"),
494674494684
(globalThis.X_SDK_PLATFORM = "unity"),
494675-
(globalThis.X_SDK_VERSION = "4.7.9"),
494685+
(globalThis.X_SDK_VERSION = "4.7.10"),
494676494686
(globalThis.X_SDK_OS = s?.os ?? "unknown");
494677494687
}
494678494688
this.initializedChain = e;

ProjectSettings/ProjectSettings.asset

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ PlayerSettings:
139139
vulkanEnableLateAcquireNextImage: 0
140140
vulkanEnableCommandBufferRecycling: 1
141141
loadStoreDebugModeEnabled: 0
142-
bundleVersion: 4.7.9
142+
bundleVersion: 4.7.10
143143
preloadedAssets: []
144144
metroInputSource: 0
145145
wsaTransparentSwapchain: 0

0 commit comments

Comments
 (0)