View Issue Details

IDProjectCategoryView StatusLast Update
0009292Talerwallet-corepublic2024-10-23 10:24
ReporterMarcS Assigned ToFlorian Dold  
PriorityhighSeveritymajorReproducibilityalways
Status resolvedResolutionno change required 
Summary0009292: getWithdrawalDetailsForUri needs to return scopeInfo (instead of currency and defaultExchangeBaseUrl)
DescriptionAfter scanning a QR code or tapping on a shared withdrawal talerURI, the wallet calls getWithdrawalDetailsForUri.
The response currently only returns the currency (because the amount might be undefined) and (optional) a defaultExchangeBaseUrl.
Please deprecate both, and instead return a ScopeInfo.

export interface WithdrawUriInfoResponse {
  operationId: string;
  status: WithdrawalOperationStatus;
  confirmTransferUrl?: string;
  currency: string;
  amount: AmountString | undefined;
  editableAmount: boolean;
  maxAmount: AmountString | undefined;
  wireFee: AmountString | undefined;
  defaultExchangeBaseUrl?: string;
  editableExchange: boolean;
  possibleExchanges: ExchangeListItem[];
}
TagsNo tags attached.

Activities

MarcS

2024-10-23 10:23

developer   ~0023568

For bank-integrated withdrawals we stick with using baseUrl (no scope).

Issue History

Date Modified Username Field Change
2024-10-23 09:35 MarcS New Issue
2024-10-23 09:35 MarcS Status new => assigned
2024-10-23 09:35 MarcS Assigned To => Florian Dold
2024-10-23 10:23 MarcS Status assigned => resolved
2024-10-23 10:23 MarcS Resolution open => no change required
2024-10-23 10:23 MarcS Note Added: 0023568