diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/taler-util/src/wallet-types.ts | 3 | ||||
-rw-r--r-- | packages/taler-wallet-core/src/operations/common.ts | 13 |
2 files changed, 16 insertions, 0 deletions
diff --git a/packages/taler-util/src/wallet-types.ts b/packages/taler-util/src/wallet-types.ts index 77800857c..82c58246a 100644 --- a/packages/taler-util/src/wallet-types.ts +++ b/packages/taler-util/src/wallet-types.ts @@ -1317,6 +1317,8 @@ export interface ExchangeListItem { exchangeUpdateStatus: ExchangeUpdateStatus; ageRestrictionOptions: number[]; + scopeInfo: ScopeInfo | undefined; + /** * Information about the last error that occurred when trying * to update the exchange info. @@ -1388,6 +1390,7 @@ export const codecForExchangeListItem = (): Codec<ExchangeListItem> => .property("exchangeEntryStatus", codecForAny()) .property("exchangeUpdateStatus", codecForAny()) .property("ageRestrictionOptions", codecForList(codecForNumber())) + .property("scopeInfo", codecForScopeInfo()) .build("ExchangeListItem"); export const codecForExchangesListResponse = (): Codec<ExchangesListResponse> => diff --git a/packages/taler-wallet-core/src/operations/common.ts b/packages/taler-wallet-core/src/operations/common.ts index b28a5363d..6ab6a54d9 100644 --- a/packages/taler-wallet-core/src/operations/common.ts +++ b/packages/taler-wallet-core/src/operations/common.ts @@ -37,6 +37,8 @@ import { NotificationType, OperationErrorInfo, RefreshReason, + ScopeInfo, + ScopeType, TalerError, TalerErrorCode, TalerErrorDetail, @@ -591,6 +593,16 @@ export function makeExchangeListItem( break; } + let scopeInfo: ScopeInfo | undefined = undefined; + if (exchangeDetails) { + // FIXME: Look up actual scope info. + scopeInfo = { + currency: exchangeDetails.currency, + type: ScopeType.Exchange, + url: r.baseUrl, + }; + } + return { exchangeBaseUrl: r.baseUrl, currency: exchangeDetails?.currency ?? r.presetCurrencyHint, @@ -604,6 +616,7 @@ export function makeExchangeListItem( : [], paytoUris: exchangeDetails?.wireInfo.accounts.map((x) => x.payto_uri) ?? [], lastUpdateErrorInfo, + scopeInfo, }; } |