-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Description
We'd like to display unclaimed deposits chronologically alongside regular payments in the transaction list.
However, since DepositInfo lacks timestamp information for the creation time of original transaction, and how unclaimed deposits are fetched, solving this on app-side adds unnecessary complexity (setting up mempool explorer API services, persisting deposits for equality comparisons & state tracking etc.).
Could we add timestamp to DepositInfo?
pub struct DepositInfo {
// ...
pub timestamp: Option<u64>, // Unix timestamp of original transaction
}
For reference, Liquid implementation uses the original transaction creation time for a similar case.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels