From 313f9a92275177a904edd95a30622c9ef58ce0b8 Mon Sep 17 00:00:00 2001 From: Mario Sarcevic Date: Tue, 28 Nov 2023 12:58:11 +0100 Subject: [PATCH 1/9] feat: Add address generation and history checking (chronicle) with fixed step algo to AddressHistoryPopup --- .../popups/AddressHistoryPopup.svelte | 140 ++++++++++++++++-- .../constants/chronicle-urls.constant.ts | 9 ++ 2 files changed, 139 insertions(+), 10 deletions(-) create mode 100644 packages/shared/lib/core/network/constants/chronicle-urls.constant.ts diff --git a/packages/desktop/components/popups/AddressHistoryPopup.svelte b/packages/desktop/components/popups/AddressHistoryPopup.svelte index 49de27f2238..e786fa3f4eb 100644 --- a/packages/desktop/components/popups/AddressHistoryPopup.svelte +++ b/packages/desktop/components/popups/AddressHistoryPopup.svelte @@ -1,25 +1,131 @@
@@ -27,10 +133,10 @@ {localize('popups.addressHistory.title')} {localize('popups.addressHistory.disclaimer')} - {#if addressList} - {#if addressList.length > 0} + {#if knownAddresses} + {#if knownAddresses.length > 0}
- +
{/if}
+
+ + +