Skip to content

Commit

Permalink
ver
Browse files Browse the repository at this point in the history
  • Loading branch information
0xFirekeeper committed Mar 18, 2024
1 parent 5ad8780 commit d3c0f8c
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Assets/Thirdweb/Core/Scripts/ThirdwebSDK.cs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ public struct BiconomyOptions

public ThirdwebSession session;

internal const string version = "4.7.9";
internal const string version = "4.7.10";

/// <summary>
/// Create an instance of the Thirdweb SDK.
Expand Down
2 changes: 1 addition & 1 deletion Assets/Thirdweb/Editor/ThirdwebManagerEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class ThirdwebManagerEditor : Editor
private GUIContent warningIcon;
private Texture2D bannerImage;

private static readonly string ExpandedStateKey = "ThirdwebManagerEditor_ExpandedState_4.7.9";
private static readonly string ExpandedStateKey = "ThirdwebManagerEditor_ExpandedState_4.7.10";

private void OnEnable()
{
Expand Down
28 changes: 19 additions & 9 deletions Assets/WebGLTemplates/Thirdweb/lib/thirdweb-unity-bridge.js
Original file line number Diff line number Diff line change
Expand Up @@ -112498,7 +112498,9 @@ ${t.resources.map((m) => `- ${m}`).join(`
e
? r.push(
a.replace("${THIRDWEB_API_KEY}", e) +
(typeof globalThis < "u" && "APP_BUNDLE_ID" in globalThis
(typeof globalThis < "u" &&
"APP_BUNDLE_ID" in globalThis &&
!!globalThis.APP_BUNDLE_ID
? `/?bundleId=${globalThis.APP_BUNDLE_ID}`
: "")
)
Expand Down Expand Up @@ -160931,7 +160933,9 @@ ${t.resources.map((m) => `- ${m}`).join(`
e
? r.push(
a.replace("${THIRDWEB_API_KEY}", e) +
(typeof globalThis < "u" && "APP_BUNDLE_ID" in globalThis
(typeof globalThis < "u" &&
"APP_BUNDLE_ID" in globalThis &&
!!globalThis.APP_BUNDLE_ID
? `/?bundleId=${globalThis.APP_BUNDLE_ID}`
: "")
)
Expand Down Expand Up @@ -338635,7 +338639,10 @@ await sdk.getEdition("${
: "node";
}
function n4a(n) {
return n.supportedChains.reduce((e, t) => ((e[t.chainId] = t), e), {});
return n.supportedChains.reduce(
(e, t) => (e[t.chainId] || (e[t.chainId] = t), e),
{}
);
}
function Q0e(n, e) {
if (typeof n == "string" && a4a(n)) return F0e(n, e);
Expand Down Expand Up @@ -365712,7 +365719,10 @@ await sdk.getEdition("${
: "node";
}
function DIa(n) {
return n.supportedChains.reduce((e, t) => ((e[t.chainId] = t), e), {});
return n.supportedChains.reduce(
(e, t) => (e[t.chainId] || (e[t.chainId] = t), e),
{}
);
}
function Nse(n, e) {
if (typeof n == "string" && RIa(n)) return Ese(n, e);
Expand Down Expand Up @@ -480977,8 +480987,8 @@ Code: ${s}`;
super(t);
let r = {
walletConnectWalletMetadata: {
name: "Thirdweb Smart Wallet",
description: "Thirdweb Smart Wallet",
name: "thirdweb Smart Account",
description: "thirdweb Smart Account",
url: "https://thirdweb.com",
icons: ["https://thirdweb.com/favicon.ico"],
},
Expand Down Expand Up @@ -491601,8 +491611,8 @@ Code: ${s}`;
super(t);
let r = {
walletConnectWalletMetadata: {
name: "Thirdweb Smart Wallet",
description: "Thirdweb Smart Wallet",
name: "thirdweb Smart Account",
description: "thirdweb Smart Account",
url: "https://thirdweb.com",
icons: ["https://thirdweb.com/favicon.ico"],
},
Expand Down Expand Up @@ -494672,7 +494682,7 @@ Code: ${s}`;
}
(globalThis.X_SDK_NAME = "UnitySDK_WebGL"),
(globalThis.X_SDK_PLATFORM = "unity"),
(globalThis.X_SDK_VERSION = "4.7.9"),
(globalThis.X_SDK_VERSION = "4.7.10"),
(globalThis.X_SDK_OS = s?.os ?? "unknown");
}
this.initializedChain = e;
Expand Down
2 changes: 1 addition & 1 deletion ProjectSettings/ProjectSettings.asset
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ PlayerSettings:
vulkanEnableLateAcquireNextImage: 0
vulkanEnableCommandBufferRecycling: 1
loadStoreDebugModeEnabled: 0
bundleVersion: 4.7.9
bundleVersion: 4.7.10
preloadedAssets: []
metroInputSource: 0
wsaTransparentSwapchain: 0
Expand Down

0 comments on commit d3c0f8c

Please sign in to comment.