You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@KtorZ Do you know if there's an operation or interface that makes it possible to determine the "creation time" of a wallet? (I had a brief look through the code, but couldn't spot anything relevant.) If not, how we would go about determining this info? (And where should it be stored?)
We cannot do this at the moment indeed. So we should have some sort of timestamp somewhere. What makes most sense is probably to have that within the wallet metadata and store it upon creation.
Context
https://input-output-hk.github.io/cardano-wallet/api/#operation/listWallets says
Return a list of known wallets, ordered from oldest to newest.
which currently it not the case.Steps to Reproduce
curl -vX GET http://localhost:8090/v2/wallets | jq
Expected behavior
Should be listed (by wallet name):
1
2
3
Actual behavior
Wallets are listed in the following order (by wallet name):
3
1
2
Resolution Plan
Required:
creationTime
field toCardano.Wallet.Primitive.Types.WalletMetadata
Optional:
creationTime
field toCardano.Wallet.Api.Types.ApiWallet
PR
develop
QA
The text was updated successfully, but these errors were encountered: