summaryrefslogtreecommitdiff
path: root/design-documents
diff options
context:
space:
mode:
authorMarc Stibane <marc@taler.net>2023-10-25 09:29:50 +0200
committerMarc Stibane <marc@taler.net>2023-10-25 09:29:50 +0200
commitce22ffac43f8de45fa1fcf98bed572ce7be63f7b (patch)
treef07b6f0c9820597c07639abf2bf2f5418b3fe3f4 /design-documents
parent4ce92c1d9593ab225a35ec67200924c92fcedf64 (diff)
downloaddocs-ce22ffac43f8de45fa1fcf98bed572ce7be63f7b.tar.gz
docs-ce22ffac43f8de45fa1fcf98bed572ce7be63f7b.tar.bz2
docs-ce22ffac43f8de45fa1fcf98bed572ce7be63f7b.zip
DD 51: removed decimal_separator, group_separator and is_currency_name_leading
(they should always be taken from the user's locale)
Diffstat (limited to 'design-documents')
-rw-r--r--design-documents/051-fractional-digits.rst88
1 files changed, 39 insertions, 49 deletions
diff --git a/design-documents/051-fractional-digits.rst b/design-documents/051-fractional-digits.rst
index 31e2959d..acd19f14 100644
--- a/design-documents/051-fractional-digits.rst
+++ b/design-documents/051-fractional-digits.rst
@@ -19,7 +19,7 @@ end-user apps should follow these guidelines.
Requirements
============
-There is already a specification for ScopedCurrencyInfo - this needs to change
+There was already a specification for ScopedCurrencyInfo - which got renamed to CurrencySpecification.
We need three core characteristics for fractional digits for each currency:
@@ -30,22 +30,23 @@ n) the number of fractional digits n in [0..8] to be rendered as 'n'ormal charac
The UI should never round or truncate any amount, but always render all existing digits (except trailing zeroes, see c).
z) the number of fractional digits z in [0..8] to be rendered as trailing 'z'eroes (including SuperScript digits).
- E.g. if z = 2 (and n = 2), then render $5 as “$ 5.00”.
- If z = 3 (and n = 2), then render $5 as “$ 5.00⁰” with two normal trailing zeroes and one superscript trailing zero.
+ E.g. if z = 2 (and n = 2), then render $5 as `$ 5.00´.
+ If z = 3 (and n = 2), then render $5 as `$ 5.00⁰´ with two normal trailing zeroes and one superscript trailing zero.
The values e, n, and z are independent from each other. Each could be any value
from 0 to 8. However, when a user enters an amount, s/he should be able to input
all normal fractionals. Thus e should never be smaller than n.
Usually, all these three numbers have the same value (e = n = z), which means
-that in case of e.g. “2” (used for €,$,£) the user can enter cent/penny values
+that in case of e.g. '2' (used for €,$,£) the user can enter cent/penny values
(but not a fraction of those), these cents/pennies are always shown (even if
they are 0) as two normal digits after the decimal separator, and fractions of
a cent/penny are rendered as SuperScriptDigits, but appear only if they are not
trailing zeroes.
For japanese ¥, all three values could be 0, which means that the user cannot
-enter fractionals at all. Fractions would never be rendered as normal digits
-but always as SuperScript, and appear only if they are not trailing zeroes.
+enter fractions at all. If there are fractions they would never be rendered as
+normal digits but always as SuperScript, and appear only if they are not
+trailing zeroes.
Additionally, some cryptocurrencies have such huge units, that they are
commonly rendered in milli-units, such as mBTC (milliBTC, 1/1000 of a BTC),
@@ -57,20 +58,6 @@ could also make sense for inflated currencies in some cases. So we probably
should also have the ability to ship such a conversion map.
-
-iOS has a built-in currency formatter, which knows how to deal with
-thousands-separators and where to apply them (e.g. India uses a mixture of
-hundreds and thousands instead of putting the separator after each 3 digits
-like western currencies). However, this formatter will round after two (or
-three) fractional digits and thus cannot be used for the whole amount. But it
-could be used to convert the integer part plus the fractional part to be
-rendered as normal digits (n) into a string, and then remaining fractional
-digits (if not zero, or if trailing SuperScript zeroes should be shown)
-could be added as SuperScript digits to this formatted string.
-
-(please add information about Android and WebEx here)
-
-
Proposed Solution
=================
@@ -78,7 +65,7 @@ Protocol considerations
-----------------------
The exchange, bank and merchant backends would need to be configured (via
-their configuration files) to return the following ScopedCurrencyInfo in their
+their configuration files) to return the following CurrencySpecification in their
``/config`` and/or ``/keys`` endpoints. The bank returns this so that the
bank SPA can render amounts correctly, the exchange informs the wallets about
the desired way to render the currency, and the merchant backend informs the
@@ -88,34 +75,37 @@ provisioned by all three services.
.. code-block:: swift
- public struct ScopedCurrencyInfo: Codable, Sendable {
+ public struct CurrencySpecification: Codable, Sendable {
// e.g. “Japanese Yen” or "Bitcoin (Mainnet)"
let name: String
- // e.g. “.” for $ and ¥; “,” for €
- let decimal_separator: String
- // how many digits the user may enter after the decimalSeparator
- let num_fractional_input_digits: Integer
+ // how many digits the user may enter after the decimal separator
+ let fractional_input_digits: Int
// €,$,£: 2; some arabic currencies: 3, ¥: 0
- let num_fractional_normal_digits: Int
- // usually same as numFractionalNormalDigits, but e.g. might be 2 for ¥
- let num_fractional_trailing_zero_digits: Int
- // true for “$ 3.50”; false for “3,50 €”
- let is_currency_name_leading: Bool
- // map of powers of 10 to alternative currency names / symbols, must
- // always have an entry under "0" that defines the base name,
- // e.g. "0 => €" or "3 => k€". For BTC, would be "0 => BTC, -3 => mBTC".
+ let fractional_normal_digits: Int
+ // usually same as fractionalNormalDigits, but e.g. might be 2 for ¥
+ let fractional_trailing_zero_digits: Int
+ // map of powers of 10 to alternative currency names / symbols,
+ // must always have an entry under "0" that defines the base name,
+ // e.g. "0 : €" or "3 : k€". For BTC, would be "0 : BTC, -3 : mBTC".
// This way, we can also communicate the currency symbol to be used.
- let alt_unit_names: Map<Int, String>
+ let alt_unit_names: [Int : String]
}
+(Note: decimal_separator, group_separator and is_currency_name_leading were
+removed from this struct since they should always be taken from the user's
+locale.)
+
+
+
+
For very large (2400000) or very tiny amounts (0.000056) the software would
then first represent the number compactly without any fraction (so for our
examples above, 24 * 10^6 and 56 * 10^-6) and then search for the nearest fit
in the alt_unit_names table. The result might then be 24000 KGELD or 0.056
mGELD, assuming the map had entries for 3 and -3 respectively. Depending on
-the table, the result could also be 24 MGELD (6 => MGELD), or 5.6 nGELD
-(assuming -6 => nGeld). Fractional rendering rules would still be applied
-to the alternative unit name, alas the "num_fractional_input_digits" would
+the table, the result could also be 24 MGELD (6 : MGELD), or 5.6 nGELD
+(assuming -6 : nGeld). Fractional rendering rules would still be applied
+to the alternative unit name, alas the "fractional_input_digits" would
always apply to the unit currency and may need to be adjusted if amounts
are input using an alternative unit name.
@@ -132,52 +122,52 @@ section. The map could be given directly in JSON. For example:
ENABLED = YES
name = "Euro"
code = "EUR"
- decimal_separator = ","
fractional_input_digits = 2
fractional_normal_digits = 2
fractional_trailing_zero_digits = 2
- is_currency_name_leading = NO
alt_unit_names = {"0":"€"}
[currency-japanese-yen]
ENABLED = YES
name = "Japanese Yen"
code = "JPY"
- decimal_separator = "."
fractional_input_digits = 2
fractional_normal_digits = 0
fractional_trailing_zero_digits = 2
- is_currency_name_leading = YES
alt_unit_names = {"0":"¥"}
[currency-bitcoin-mainnet]
ENABLED = NO
name = "Bitcoin (Mainnet)"
code = "BITCOINBTC"
- decimal_separator = "."
fractional_input_digits = 8
fractional_normal_digits = 3
fractional_trailing_zero_digits = 0
- is_currency_name_leading = NO
alt_unit_names = {"0":"BTC","-3":"mBTC"}
[currency-ethereum]
ENABLED = NO
name = "WAI-ETHER (Ethereum)"
code = "EthereumWAI"
- decimal_separator = "."
fractional_input_digits = 0
fractional_normal_digits = 0
fractional_trailing_zero_digits = 0
- is_currency_name_leading = NO
alt_unit_names = {"0":"WAI","3":"KWAI","6":"MWAI","9":"GWAI","12":"Szabo","15":"Finney","18":"Ether","21":"KEther","24":"MEther"}
Implementation considerations
-----------------------------
-For iOS, we plan to format the integer part of the amount with the built-in
-currency formatter, then add the fractional part according to this document.
+iOS has a built-in currency formatter, which can be configured from a locale.
+It knows how to deal with group-separators and where to apply them (e.g. India
+uses a mixture of thousands and hundreds instead of putting the separator after
+each 3 digits like western currencies).
+Set the formatter's parameter 'maximumFractionDigits' to 8, then it will not
+round the value and thus can be used for the whole amount.
+Set its parameter 'minimumFractionDigits' to 'z' (fractionalTrailingZeroDigits)
+to let it automatically add trailing zeroes.
+Then convert all fractional digits after 'n' (fractionalNormalDigits) to
+SuperScript digits.
(please add information about Android and WebEx here)
@@ -213,7 +203,7 @@ Discussion / Q&A
We probably should NOT have the decimalSeparator in this definition. Instead that
should be taken from the locale of the user, so they see currency amounts formatted
like they're used to.
-If we really keep this, then we would also need the thousandsSeparator to ensure it is
+If we really keep this, then we would also need the groupSeparator to ensure it is
not identical to the decimalSeparator.
Better to leave this can of worms to the operating system our app runs on, and render
according to the user's preferences (locale)...