aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-wallet-core
AgeCommit message (Collapse)Author
2022-09-21moving deposit group fee into taler utilSebastian
2022-09-21wallet-cli: add --expect-success flag, exit with error on max retriesFlorian Dold
2022-09-21wallet-core: make basic backup work againFlorian Dold
2022-09-20prettySebastian
2022-09-20check age mask beforeSebastian
2022-09-20wallet-core: make basic backup work againFlorian Dold
2022-09-19wallet-core: fix tipping with age restricted denomsFlorian Dold
2022-09-19wallet-core: handle suspended coins properly in refreshFlorian Dold
2022-09-19wallet-core: make coin availability accounting idempotentFlorian Dold
2022-09-19-commentFlorian Dold
2022-09-19-also check for revokedFlorian Dold
2022-09-19wallet-core: only pay with coins of offered denominationsFlorian Dold
2022-09-19wallet-core: hide transient pay errorsFlorian Dold
2022-09-19wallet-core: add wire method check in new coin selectionFlorian Dold
2022-09-17p2p was not returning the valueSebastian
2022-09-16prettySebastian
2022-09-16wallet-core: fix mixed age restrictionsFlorian Dold
2022-09-16-fix compiler errorFlorian Dold
2022-09-16-wallet-core: merge DenominationInfo and DenomInfoFlorian Dold
2022-09-16-move declarationFlorian Dold
2022-09-16-prettier, fix type errorFlorian Dold
2022-09-16-cleanupFlorian Dold
2022-09-16wallet-core: support age restrictions in new coin selectionFlorian Dold
2022-09-16wallet-core: support forced coins in new coin selection algoFlorian Dold
2022-09-16wallet-core: towards faster coin selectionFlorian Dold
2022-09-16working on #7357Sebastian
getTransactionById is introduced: with that we move all transaction information building into a function transactionId was added in every response that creates a tx
2022-09-14wallet-core: restructure denomination record for easier queryingFlorian Dold
2022-09-14wallet-core: cache fresh coin count in DBFlorian Dold
2022-09-14fixing properly adding query paramsSebastian
2022-09-14import a complete database from cliSebastian
2022-09-13wallet-core: fix withdrawTestBalance commandFlorian Dold
2022-09-13fix test and loggingFlorian Dold
2022-09-13wallet-core: introduce easier syntax for transactionsFlorian Dold
2022-09-13wallet-core: uniform retry handlingFlorian Dold
2022-09-12wallet-core: fix creation of refresh session after peer-{push,pull}Florian Dold
2022-09-12ref #7323Sebastian
2022-09-12wallet-core: make bank access API URL optional in runIntegrationTestFlorian Dold
2022-09-08include age commitment proof in refreshed coinsFlorian Dold
2022-09-06bump DB major versionv0.9.0-dev.17Florian Dold
2022-09-06listExchangesDetailed to getExchangeDetailedInfo & ageRestriction taken from ↵Sebastian
the denoms
2022-09-05wallet-core: make listExchanges return less datav0.9.0-dev.16Florian Dold
Since the webextension UI depends on the full response, we have a temporary listExchangesDetailled request. See https://bugs.taler.net/n/7323 for details.
2022-09-05replace __VERSION__ with a string definitionSebastian
2022-09-05adding informantion about the service worker version on the setting pageSebastian
2022-09-05upgrade typescript (and some related deps)Florian Dold
2022-09-05consider supported wire types when selecting coinsFlorian Dold
Also add an integration test to check for the correct wallet behavior.
2022-09-05wallet-core: fix format of purse depositsFlorian Dold
2022-09-05wallet-core: include age restriction in p2p signature, mark coins as spentFlorian Dold
2022-09-01wallet-core: fix withdrawal of age-restricted denoms without age restrictionFlorian Dold
2022-09-01wallet-core: fix issue with crock encoding of age restrictionsFlorian Dold
2022-09-01more information about p2p:Sebastian
- added the contract terms on WgInfoBankPeerPush and WgInfoBankPeerPull, so we can show summary and expiration in the ui - added info: PeerInfoShort on Transaction* type - definition of completed p2p tx: - push debit: Amounts.cmp(sentAmount, pickedUpAmount) === 0. is this transfer already picked up? (not working) - pull debit: pi.paid, is this invoice already paid? - pull credit: wsr.timestampFinish, has someone already paid my invoice? - push credit: wsr.timestampFinish, have I already picked up this? - changed the txId of peer pull debit to have the incomingId instead of pursePub (allow deletion)