taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

commit 95f6ba27a947269462ce126bffd692ea7ad3f755
parent af12aad0323ce0716df7d7e746cb6fbc7ee070cb
Author: Florian Dold <florian@dold.me>
Date:   Fri,  4 Oct 2024 17:47:02 +0200

update wallet-core docs

Diffstat:
Mwallet/wallet-core.md | 8+++++++-
1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/wallet/wallet-core.md b/wallet/wallet-core.md @@ -543,7 +543,7 @@ export interface GetTransactionsV2Request { * * If not specified, all transactions are returned. */ - filterState?: "final" | "nonfinal" | "done"; + filterByState?: "final" | "nonfinal" | "done"; } ``` @@ -4819,6 +4819,12 @@ export interface CheckDepositResponse { totalDepositCost: AmountString; effectiveDepositAmount: AmountString; fees: DepositGroupFees; + kycSoftLimit?: AmountString; + kycHardLimit?: AmountString; + /** + * Base URL of exchanges that would likely require soft KYC. + */ + kycExchanges?: string[]; } ``` ```typescript