diff --git a/Tests/WalletConnectSharp.Sign.Test/SignTests.cs b/Tests/WalletConnectSharp.Sign.Test/SignTests.cs index bcfccfb..cd7538d 100644 --- a/Tests/WalletConnectSharp.Sign.Test/SignTests.cs +++ b/Tests/WalletConnectSharp.Sign.Test/SignTests.cs @@ -395,6 +395,10 @@ public async Task TestTwoUniqueSessionRequestResponseUsingAddressProviderDefault var dappClient = ClientA; var walletClient = ClientB; + + await dappClient.AddressProvider.LoadDefaultsAsync(); + await walletClient.AddressProvider.LoadDefaultsAsync(); + if (!dappClient.AddressProvider.HasDefaultSession && !walletClient.AddressProvider.HasDefaultSession) { var testAddress = "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"; @@ -579,6 +583,8 @@ public async Task TestAddressProviderDefaultsSaving() var defaultSessionTopic = _cryptoFixture.ClientA.AddressProvider.DefaultSession.Topic; + Assert.NotNull(defaultSessionTopic); + _cryptoFixture.StorageOverrideA = _cryptoFixture.ClientA.Core.Storage; _cryptoFixture.StorageOverrideB = _cryptoFixture.ClientB.Core.Storage; @@ -586,10 +592,9 @@ public async Task TestAddressProviderDefaultsSaving() await _cryptoFixture.DisposeAndReset(); - _testOutputHelper.WriteLine(string.Join(",", _cryptoFixture.ClientB.Core.Crypto.KeyChain.Keychain.Values)); - await Task.Delay(500); + await _cryptoFixture.ClientA.AddressProvider.LoadDefaultsAsync(); var reloadedDefaultSessionTopic = _cryptoFixture.ClientA.AddressProvider.DefaultSession.Topic; Assert.Equal(defaultSessionTopic, reloadedDefaultSessionTopic); diff --git a/WalletConnectSharp.Sign/Controllers/AddressProvider.cs b/WalletConnectSharp.Sign/Controllers/AddressProvider.cs index fafd537..683ec76 100644 --- a/WalletConnectSharp.Sign/Controllers/AddressProvider.cs +++ b/WalletConnectSharp.Sign/Controllers/AddressProvider.cs @@ -1,4 +1,5 @@ -using WalletConnectSharp.Sign.Interfaces; +using WalletConnectSharp.Common.Utils; +using WalletConnectSharp.Sign.Interfaces; using WalletConnectSharp.Sign.Models; using WalletConnectSharp.Sign.Models.Engine.Events; @@ -100,12 +101,17 @@ public virtual async Task SaveDefaults() await _client.Core.Storage.SetItem($"{Context}-default-session", _state); } - public virtual async Task LoadDefaults() + public virtual async Task LoadDefaultsAsync() { var key = $"{Context}-default-session"; if (await _client.Core.Storage.HasItem(key)) { - _state = await _client.Core.Storage.GetItem(key); + var state = await _client.Core.Storage.GetItem(key); + var sessionExpiry = state.Session.Expiry; + + _state = sessionExpiry != null && !Clock.IsExpired(sessionExpiry.Value) + ? state + : new DefaultData(); } else { @@ -191,11 +197,6 @@ private async Task UpdateDefaultChainIdAndNamespaceAsync() } } - public async Task InitAsync() - { - await this.LoadDefaults(); - } - public async Task SetDefaultNamespaceAsync(string @namespace) { if (string.IsNullOrWhiteSpace(@namespace)) diff --git a/WalletConnectSharp.Sign/Interfaces/IAddressProvider.cs b/WalletConnectSharp.Sign/Interfaces/IAddressProvider.cs index adc4738..eb60121 100644 --- a/WalletConnectSharp.Sign/Interfaces/IAddressProvider.cs +++ b/WalletConnectSharp.Sign/Interfaces/IAddressProvider.cs @@ -16,10 +16,7 @@ public interface IAddressProvider : IModule string DefaultChainId { get; } ISession Sessions { get; } - - - Task InitAsync(); - + Task SetDefaultNamespaceAsync(string @namespace); Task SetDefaultChainIdAsync(string chainId); @@ -27,4 +24,6 @@ public interface IAddressProvider : IModule Caip25Address CurrentAddress(string chainId = null, SessionStruct session = default); IEnumerable AllAddresses(string @namespace = null, SessionStruct session = default); + + public Task LoadDefaultsAsync(); } diff --git a/WalletConnectSharp.Sign/WalletConnectSignClient.cs b/WalletConnectSharp.Sign/WalletConnectSignClient.cs index e61b7cf..2582443 100644 --- a/WalletConnectSharp.Sign/WalletConnectSignClient.cs +++ b/WalletConnectSharp.Sign/WalletConnectSignClient.cs @@ -488,7 +488,6 @@ private async Task Initialize() await Session.Init(); await Proposal.Init(); await Engine.Init(); - await AddressProvider.InitAsync(); } public void Dispose()