diff --git a/CHANGELOG.md b/CHANGELOG.md index bfa2e756119..ce86892004b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## Unreleased +- added: Include wallet creation date in wallet data in log output - changed: Enable Ethereum staking - changed: Navigate to wallet list after restoring wallets - fixed: Use account default fiat for transaction fee display in `SweepPrivateKeyCalculateFeeScene` diff --git a/src/actions/LogActions.tsx b/src/actions/LogActions.tsx index 8ed0fe4b5fc..de105e9de6e 100644 --- a/src/actions/LogActions.tsx +++ b/src/actions/LogActions.tsx @@ -49,6 +49,7 @@ interface LoggedInUser { } interface WalletData { + created?: string currencyCode?: string customTokens?: EdgeTokenMap imported?: boolean @@ -180,6 +181,7 @@ export function getLogOutput(): ThunkAction> { if (wallet && logOutput.loggedInUser) { const currencyCode = wallet.currencyInfo.currencyCode ?? '' logOutput.loggedInUser.wallets.push({ + created: wallet.created?.toISOString(), currencyCode, customTokens: wallet.currencyConfig.customTokens, imported,