From e03948f8a11a83a75342745b1dbbb2d12878f26d Mon Sep 17 00:00:00 2001 From: 0xFirekeeper <0xFirekeeper@gmail.com> Date: Fri, 10 Jan 2025 23:35:09 +0700 Subject: [PATCH] fix: walletSecret not passed down correctly repackaging 5.15.0 with patch --- Assets/Thirdweb/Runtime/Unity/ThirdwebManagerBase.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Assets/Thirdweb/Runtime/Unity/ThirdwebManagerBase.cs b/Assets/Thirdweb/Runtime/Unity/ThirdwebManagerBase.cs index 788158bc..2f389667 100644 --- a/Assets/Thirdweb/Runtime/Unity/ThirdwebManagerBase.cs +++ b/Assets/Thirdweb/Runtime/Unity/ThirdwebManagerBase.cs @@ -359,7 +359,8 @@ public virtual async Task ConnectWallet(WalletOptions walletOpt authProvider: walletOptions.InAppWalletOptions.AuthProvider, storageDirectoryPath: walletOptions.InAppWalletOptions.StorageDirectoryPath, siweSigner: walletOptions.InAppWalletOptions.SiweSigner, - legacyEncryptionKey: walletOptions.InAppWalletOptions.LegacyEncryptionKey + legacyEncryptionKey: walletOptions.InAppWalletOptions.LegacyEncryptionKey, + walletSecret: walletOptions.InAppWalletOptions.WalletSecret ); break; @@ -381,7 +382,8 @@ public virtual async Task ConnectWallet(WalletOptions walletOpt authProvider: walletOptions.EcosystemWalletOptions.AuthProvider, storageDirectoryPath: walletOptions.EcosystemWalletOptions.StorageDirectoryPath, siweSigner: walletOptions.EcosystemWalletOptions.SiweSigner, - legacyEncryptionKey: walletOptions.EcosystemWalletOptions.LegacyEncryptionKey + legacyEncryptionKey: walletOptions.EcosystemWalletOptions.LegacyEncryptionKey, + walletSecret: walletOptions.EcosystemWalletOptions.WalletSecret ); break;