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;