You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consignments currently use Bech32m encoding for ASCII armoring.
The main features of Bech32 is reduction of probability of typing mistakes. This is achieved by:
use of only non-delimiter characters (helps selecting text with a single click);
avoiding visually-ambiguous characters;
checksums (works up to 512 bytes, otherwise have restricted use)
All these features make sense only for short data, which can be read in voice and typed by hand. Even small RGB contract genesis doesn't fit that limit and they would not be transferred in voice.
However, Bech32 makes sense only for short data, while the cost of Bech32 features is the increase of the textual representation (twice longer than in Base64).
Thus, it is advisable to switch to Base64 as the most short representation, which is already used in similar cases (for instance, PSBTs).
To differentiate from PSBT it is advised to start using ASCII armoring like it is used in PGP/GPG. A 120-bit checksum should also be added to the standard.
Consignments currently use Bech32m encoding for ASCII armoring.
The main features of Bech32 is reduction of probability of typing mistakes. This is achieved by:
All these features make sense only for short data, which can be read in voice and typed by hand. Even small RGB contract genesis doesn't fit that limit and they would not be transferred in voice.
However, Bech32 makes sense only for short data, while the cost of Bech32 features is the increase of the textual representation (twice longer than in Base64).
Thus, it is advisable to switch to Base64 as the most short representation, which is already used in similar cases (for instance, PSBTs).
To differentiate from PSBT it is advised to start using ASCII armoring like it is used in PGP/GPG. A 120-bit checksum should also be added to the standard.
Depends on upstream: LNP-BP/rust-lnpbp#224
The text was updated successfully, but these errors were encountered: