taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit e345e8bd2314ebfc55c2ee7a23fb7849ce79bf84
parent 30c01185fc0b6bdc37327b2448e4748564fa8e3a
Author: Florian Dold <florian@dold.me>
Date:   Thu, 13 Apr 2023 19:36:04 +0200

taler-wallet-cli: subcommand to print sample transactions

Diffstat:
Mpackages/taler-util/src/index.ts | 1+
Mpackages/taler-wallet-cli/src/index.ts | 11++++++++---
2 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/packages/taler-util/src/index.ts b/packages/taler-util/src/index.ts @@ -38,3 +38,4 @@ export * from "./base64.js"; export * from "./merchant-api-types.js"; export * from "./errors.js"; export * from "./iban.js"; +export * from "./transaction-test-data.js"; diff --git a/packages/taler-wallet-cli/src/index.ts b/packages/taler-wallet-cli/src/index.ts @@ -27,18 +27,25 @@ import { CoreApiResponse, Duration, encodeCrock, + ExtendedStatus, getErrorDetailFromException, getRandomBytes, j2s, Logger, parsePaytoUri, + PaymentStatus, PreparePayResultType, RecoveryMergeStrategy, + RefreshReason, + sampleWalletCoreTransactions, setDangerousTimetravel, setGlobalLogLevelFromString, summarizeTalerErrorDetail, TalerUriType, Transaction, + TransactionState, + TransactionSubstate, + TransactionType, WalletNotification, } from "@gnu-taler/taler-util"; import { clk } from "@gnu-taler/taler-util/clk"; @@ -1134,9 +1141,7 @@ advancedCli help: "Print sample wallet-core transactions", }) .action(async (args) => { - let transactions: Transaction[] = [ - - ]; + console.log(JSON.stringify(sampleWalletCoreTransactions, undefined, 2)); }); advancedCli