wallet-core/packages/taler-wallet-core/src/operations
2021-07-15 15:05:15 -03:00
..
backup simplest implementation to remove one provider, also added a user-defined name for provider 2021-07-15 15:05:15 -03:00
balance.ts towards factoring out cyclic dependencies 2021-06-17 15:49:05 +02:00
deposits.ts implement backup scheduling, other tweaks 2021-06-25 13:27:06 +02:00
exchanges.ts implement backup scheduling, other tweaks 2021-06-25 13:27:06 +02:00
pay.ts tolerate zero-value payments 2021-07-12 15:55:31 +02:00
pending.ts implement backup scheduling, other tweaks 2021-06-25 13:27:06 +02:00
README.md towards factoring out cyclic dependencies 2021-06-17 15:49:05 +02:00
recoup.ts implement backup scheduling, other tweaks 2021-06-25 13:27:06 +02:00
refresh.ts implement backup scheduling, other tweaks 2021-06-25 13:27:06 +02:00
refund.ts implement backup scheduling, other tweaks 2021-06-25 13:27:06 +02:00
reserves.ts implement backup scheduling, other tweaks 2021-06-25 13:27:06 +02:00
testing.ts get rid of cyclic imports 2021-06-22 12:18:12 +02:00
tip.ts implement backup scheduling, other tweaks 2021-06-25 13:27:06 +02:00
transactions.ts using block inside case of switch breaks when building with babel 7 2021-06-17 13:16:15 -03:00
withdraw.test.ts fix up imports, no more esm in tests 2021-06-14 16:08:58 +02:00
withdraw.ts implement backup scheduling, other tweaks 2021-06-25 13:27:06 +02:00

Wallet Operations

This folder contains the implementations for all wallet operations that operate on the wallet state.

To avoid cyclic dependencies, these files must not reference each other. Instead, other operations should only be accessed via injected dependencies.

Avoiding cyclic dependencies is important for module bundlers.