Would it be possible to dictate a bech32 address as a list of English words?












3















One of the reason for bech32 address is: "it'easier to dictate it over the phone".



Is there an algorithm to convert a bech32 address into a list of English words that would make it even easier?



Something like BIP39 but inverted (address to words instead of words to seed).



The dictionary used in BIP39 would be enough?
How many words would be necessary at best to express an address?



Probably it is better to dictate the address than 50 words but what about 25 or so?.









share



























    3















    One of the reason for bech32 address is: "it'easier to dictate it over the phone".



    Is there an algorithm to convert a bech32 address into a list of English words that would make it even easier?



    Something like BIP39 but inverted (address to words instead of words to seed).



    The dictionary used in BIP39 would be enough?
    How many words would be necessary at best to express an address?



    Probably it is better to dictate the address than 50 words but what about 25 or so?.









    share

























      3












      3








      3








      One of the reason for bech32 address is: "it'easier to dictate it over the phone".



      Is there an algorithm to convert a bech32 address into a list of English words that would make it even easier?



      Something like BIP39 but inverted (address to words instead of words to seed).



      The dictionary used in BIP39 would be enough?
      How many words would be necessary at best to express an address?



      Probably it is better to dictate the address than 50 words but what about 25 or so?.









      share














      One of the reason for bech32 address is: "it'easier to dictate it over the phone".



      Is there an algorithm to convert a bech32 address into a list of English words that would make it even easier?



      Something like BIP39 but inverted (address to words instead of words to seed).



      The dictionary used in BIP39 would be enough?
      How many words would be necessary at best to express an address?



      Probably it is better to dictate the address than 50 words but what about 25 or so?.







      bech32-address





      share












      share










      share



      share










      asked 22 hours ago









      Gabriele DomenichiniGabriele Domenichini

      935




      935






















          2 Answers
          2






          active

          oldest

          votes


















          6














          The NATO phonetic alphabet is designed for this purpose and is very widely recognized by a number of people in communication critical industries. The words are clearly recognizable even to the unfamiliar and is intended to not be able to be mistaken. Due to bech32 encoding there’s no need for communication of capital letters as you would need for p2pkh addresses.



          bc1qar0srrr7xfkvy5l643lydnw9re59gtzzwf5mdq


          becomes




          Bravo Charlie One Quebec Alpha Romeo Zero Sierra Romeo Romeo Romeo Seven X-ray Foxtrot Kilo Victor Yankee Five Lima Six Four Three Lima Yankee Delta November Whiskey Nine Romeo Echo Five Nine Golf Tango Zulu Zulu Whiskey Foxtrot Five Mike Delta Quebec







          share|improve this answer



















          • 2





            This also has the advantage of not needing any additional software to convert between bech32 and another encoding - the alternative would hurt compatibility.

            – Pieter Wuille
            10 hours ago



















          2















          Is there an algorithm to convert a bech32 address into a list of English words that would make it even easier? Something like BIP39 but inverted (address to words instead of words to seed).




          @Anonymous answer tries to answer the question in terms of dictation, but since you were looking for BIP 39 inversion, I have tried to answer the question keeping that in mind. The number of words to dictate decrease significantly as well in this way.



          You could design a software that takes words (similar to BIP39) from users and converts it to bech32 addresses. Let me take the example of bech32 address given in the BIP 173 documentation. So we have two addresses (1) P2WPKH: bc1qw508d6qejxtdg4y5r3zarvary0c5xw7kv8f3t4 and (2) P2WSH: bc1qrp33g0q5c5txsp9arysrx4k6zdkfs4nce4xj0gdcccefvpysxf3qccfmv3.



          (1) P2WPKH: This is basically base32encode of the witness version and the hash160 of the public key. Decoding the bech32 address bc1qw508d6qejxtdg4y5r3zarvary0c5xw7kv8f3t4 gives us a witness version 00 and payload of 751e76e8199196d454941c45d1b3a323f1433bd6. Now, use this payload of 20 bytes as the entropy. For a 160 bit entropy, According to the BIP-39 documentation, we need to append first five bits of the checksum to the entropy that gives us total of 165 bits. Given each word of the BIP 39 mnemonic represents 11 unique bits, we can represent the P2WPKH address with 15 words. Use this tool and enter the entropy this gives the words as : insect victory ring creek bonus health false logic easy mirror trip elevator before over fossil.



          (2) P2WSH: This is basically base32encode of the witness version and the SHA256 of the script. Decoding the bech32 address bc1qrp33g0q5c5txsp9arysrx4k6zdkfs4nce4xj0gdcccefvpysxf3qccfmv3 gives us witness version of 00 and payload of 1863143c14c5166804bd19203356da136c985678cd4d27a1b8c6329604903262.Use this 32 bytes of payload as the entropy. Since payload is 32 bytes, we need to use first 8 bits of the checksum. This gives us total size of 264 bits, which can be represented in 24 words (recall, each BIP 39 mnemonic word is 11 bits). Using the payload as entropy we get the words as: blur board audit civil fabric cross base permit cage one repair chat sister clinic tobacco predict chicken assist cover gown gate elite sister flush






          share|improve this answer


























          • This manages to transmit the same information without the error recovery and detection, in a way that requires a custom decoder. I'd suggest against making something custom for this sort of task given the very real potential for loss of funds. BIP39 is also not designed for verbal unambiguity.

            – Anonymous
            1 hour ago












          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "308"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          noCode: true, onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fbitcoin.stackexchange.com%2fquestions%2f86135%2fwould-it-be-possible-to-dictate-a-bech32-address-as-a-list-of-english-words%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          6














          The NATO phonetic alphabet is designed for this purpose and is very widely recognized by a number of people in communication critical industries. The words are clearly recognizable even to the unfamiliar and is intended to not be able to be mistaken. Due to bech32 encoding there’s no need for communication of capital letters as you would need for p2pkh addresses.



          bc1qar0srrr7xfkvy5l643lydnw9re59gtzzwf5mdq


          becomes




          Bravo Charlie One Quebec Alpha Romeo Zero Sierra Romeo Romeo Romeo Seven X-ray Foxtrot Kilo Victor Yankee Five Lima Six Four Three Lima Yankee Delta November Whiskey Nine Romeo Echo Five Nine Golf Tango Zulu Zulu Whiskey Foxtrot Five Mike Delta Quebec







          share|improve this answer



















          • 2





            This also has the advantage of not needing any additional software to convert between bech32 and another encoding - the alternative would hurt compatibility.

            – Pieter Wuille
            10 hours ago
















          6














          The NATO phonetic alphabet is designed for this purpose and is very widely recognized by a number of people in communication critical industries. The words are clearly recognizable even to the unfamiliar and is intended to not be able to be mistaken. Due to bech32 encoding there’s no need for communication of capital letters as you would need for p2pkh addresses.



          bc1qar0srrr7xfkvy5l643lydnw9re59gtzzwf5mdq


          becomes




          Bravo Charlie One Quebec Alpha Romeo Zero Sierra Romeo Romeo Romeo Seven X-ray Foxtrot Kilo Victor Yankee Five Lima Six Four Three Lima Yankee Delta November Whiskey Nine Romeo Echo Five Nine Golf Tango Zulu Zulu Whiskey Foxtrot Five Mike Delta Quebec







          share|improve this answer



















          • 2





            This also has the advantage of not needing any additional software to convert between bech32 and another encoding - the alternative would hurt compatibility.

            – Pieter Wuille
            10 hours ago














          6












          6








          6







          The NATO phonetic alphabet is designed for this purpose and is very widely recognized by a number of people in communication critical industries. The words are clearly recognizable even to the unfamiliar and is intended to not be able to be mistaken. Due to bech32 encoding there’s no need for communication of capital letters as you would need for p2pkh addresses.



          bc1qar0srrr7xfkvy5l643lydnw9re59gtzzwf5mdq


          becomes




          Bravo Charlie One Quebec Alpha Romeo Zero Sierra Romeo Romeo Romeo Seven X-ray Foxtrot Kilo Victor Yankee Five Lima Six Four Three Lima Yankee Delta November Whiskey Nine Romeo Echo Five Nine Golf Tango Zulu Zulu Whiskey Foxtrot Five Mike Delta Quebec







          share|improve this answer













          The NATO phonetic alphabet is designed for this purpose and is very widely recognized by a number of people in communication critical industries. The words are clearly recognizable even to the unfamiliar and is intended to not be able to be mistaken. Due to bech32 encoding there’s no need for communication of capital letters as you would need for p2pkh addresses.



          bc1qar0srrr7xfkvy5l643lydnw9re59gtzzwf5mdq


          becomes




          Bravo Charlie One Quebec Alpha Romeo Zero Sierra Romeo Romeo Romeo Seven X-ray Foxtrot Kilo Victor Yankee Five Lima Six Four Three Lima Yankee Delta November Whiskey Nine Romeo Echo Five Nine Golf Tango Zulu Zulu Whiskey Foxtrot Five Mike Delta Quebec








          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 18 hours ago









          AnonymousAnonymous

          9,16311128




          9,16311128








          • 2





            This also has the advantage of not needing any additional software to convert between bech32 and another encoding - the alternative would hurt compatibility.

            – Pieter Wuille
            10 hours ago














          • 2





            This also has the advantage of not needing any additional software to convert between bech32 and another encoding - the alternative would hurt compatibility.

            – Pieter Wuille
            10 hours ago








          2




          2





          This also has the advantage of not needing any additional software to convert between bech32 and another encoding - the alternative would hurt compatibility.

          – Pieter Wuille
          10 hours ago





          This also has the advantage of not needing any additional software to convert between bech32 and another encoding - the alternative would hurt compatibility.

          – Pieter Wuille
          10 hours ago











          2















          Is there an algorithm to convert a bech32 address into a list of English words that would make it even easier? Something like BIP39 but inverted (address to words instead of words to seed).




          @Anonymous answer tries to answer the question in terms of dictation, but since you were looking for BIP 39 inversion, I have tried to answer the question keeping that in mind. The number of words to dictate decrease significantly as well in this way.



          You could design a software that takes words (similar to BIP39) from users and converts it to bech32 addresses. Let me take the example of bech32 address given in the BIP 173 documentation. So we have two addresses (1) P2WPKH: bc1qw508d6qejxtdg4y5r3zarvary0c5xw7kv8f3t4 and (2) P2WSH: bc1qrp33g0q5c5txsp9arysrx4k6zdkfs4nce4xj0gdcccefvpysxf3qccfmv3.



          (1) P2WPKH: This is basically base32encode of the witness version and the hash160 of the public key. Decoding the bech32 address bc1qw508d6qejxtdg4y5r3zarvary0c5xw7kv8f3t4 gives us a witness version 00 and payload of 751e76e8199196d454941c45d1b3a323f1433bd6. Now, use this payload of 20 bytes as the entropy. For a 160 bit entropy, According to the BIP-39 documentation, we need to append first five bits of the checksum to the entropy that gives us total of 165 bits. Given each word of the BIP 39 mnemonic represents 11 unique bits, we can represent the P2WPKH address with 15 words. Use this tool and enter the entropy this gives the words as : insect victory ring creek bonus health false logic easy mirror trip elevator before over fossil.



          (2) P2WSH: This is basically base32encode of the witness version and the SHA256 of the script. Decoding the bech32 address bc1qrp33g0q5c5txsp9arysrx4k6zdkfs4nce4xj0gdcccefvpysxf3qccfmv3 gives us witness version of 00 and payload of 1863143c14c5166804bd19203356da136c985678cd4d27a1b8c6329604903262.Use this 32 bytes of payload as the entropy. Since payload is 32 bytes, we need to use first 8 bits of the checksum. This gives us total size of 264 bits, which can be represented in 24 words (recall, each BIP 39 mnemonic word is 11 bits). Using the payload as entropy we get the words as: blur board audit civil fabric cross base permit cage one repair chat sister clinic tobacco predict chicken assist cover gown gate elite sister flush






          share|improve this answer


























          • This manages to transmit the same information without the error recovery and detection, in a way that requires a custom decoder. I'd suggest against making something custom for this sort of task given the very real potential for loss of funds. BIP39 is also not designed for verbal unambiguity.

            – Anonymous
            1 hour ago
















          2















          Is there an algorithm to convert a bech32 address into a list of English words that would make it even easier? Something like BIP39 but inverted (address to words instead of words to seed).




          @Anonymous answer tries to answer the question in terms of dictation, but since you were looking for BIP 39 inversion, I have tried to answer the question keeping that in mind. The number of words to dictate decrease significantly as well in this way.



          You could design a software that takes words (similar to BIP39) from users and converts it to bech32 addresses. Let me take the example of bech32 address given in the BIP 173 documentation. So we have two addresses (1) P2WPKH: bc1qw508d6qejxtdg4y5r3zarvary0c5xw7kv8f3t4 and (2) P2WSH: bc1qrp33g0q5c5txsp9arysrx4k6zdkfs4nce4xj0gdcccefvpysxf3qccfmv3.



          (1) P2WPKH: This is basically base32encode of the witness version and the hash160 of the public key. Decoding the bech32 address bc1qw508d6qejxtdg4y5r3zarvary0c5xw7kv8f3t4 gives us a witness version 00 and payload of 751e76e8199196d454941c45d1b3a323f1433bd6. Now, use this payload of 20 bytes as the entropy. For a 160 bit entropy, According to the BIP-39 documentation, we need to append first five bits of the checksum to the entropy that gives us total of 165 bits. Given each word of the BIP 39 mnemonic represents 11 unique bits, we can represent the P2WPKH address with 15 words. Use this tool and enter the entropy this gives the words as : insect victory ring creek bonus health false logic easy mirror trip elevator before over fossil.



          (2) P2WSH: This is basically base32encode of the witness version and the SHA256 of the script. Decoding the bech32 address bc1qrp33g0q5c5txsp9arysrx4k6zdkfs4nce4xj0gdcccefvpysxf3qccfmv3 gives us witness version of 00 and payload of 1863143c14c5166804bd19203356da136c985678cd4d27a1b8c6329604903262.Use this 32 bytes of payload as the entropy. Since payload is 32 bytes, we need to use first 8 bits of the checksum. This gives us total size of 264 bits, which can be represented in 24 words (recall, each BIP 39 mnemonic word is 11 bits). Using the payload as entropy we get the words as: blur board audit civil fabric cross base permit cage one repair chat sister clinic tobacco predict chicken assist cover gown gate elite sister flush






          share|improve this answer


























          • This manages to transmit the same information without the error recovery and detection, in a way that requires a custom decoder. I'd suggest against making something custom for this sort of task given the very real potential for loss of funds. BIP39 is also not designed for verbal unambiguity.

            – Anonymous
            1 hour ago














          2












          2








          2








          Is there an algorithm to convert a bech32 address into a list of English words that would make it even easier? Something like BIP39 but inverted (address to words instead of words to seed).




          @Anonymous answer tries to answer the question in terms of dictation, but since you were looking for BIP 39 inversion, I have tried to answer the question keeping that in mind. The number of words to dictate decrease significantly as well in this way.



          You could design a software that takes words (similar to BIP39) from users and converts it to bech32 addresses. Let me take the example of bech32 address given in the BIP 173 documentation. So we have two addresses (1) P2WPKH: bc1qw508d6qejxtdg4y5r3zarvary0c5xw7kv8f3t4 and (2) P2WSH: bc1qrp33g0q5c5txsp9arysrx4k6zdkfs4nce4xj0gdcccefvpysxf3qccfmv3.



          (1) P2WPKH: This is basically base32encode of the witness version and the hash160 of the public key. Decoding the bech32 address bc1qw508d6qejxtdg4y5r3zarvary0c5xw7kv8f3t4 gives us a witness version 00 and payload of 751e76e8199196d454941c45d1b3a323f1433bd6. Now, use this payload of 20 bytes as the entropy. For a 160 bit entropy, According to the BIP-39 documentation, we need to append first five bits of the checksum to the entropy that gives us total of 165 bits. Given each word of the BIP 39 mnemonic represents 11 unique bits, we can represent the P2WPKH address with 15 words. Use this tool and enter the entropy this gives the words as : insect victory ring creek bonus health false logic easy mirror trip elevator before over fossil.



          (2) P2WSH: This is basically base32encode of the witness version and the SHA256 of the script. Decoding the bech32 address bc1qrp33g0q5c5txsp9arysrx4k6zdkfs4nce4xj0gdcccefvpysxf3qccfmv3 gives us witness version of 00 and payload of 1863143c14c5166804bd19203356da136c985678cd4d27a1b8c6329604903262.Use this 32 bytes of payload as the entropy. Since payload is 32 bytes, we need to use first 8 bits of the checksum. This gives us total size of 264 bits, which can be represented in 24 words (recall, each BIP 39 mnemonic word is 11 bits). Using the payload as entropy we get the words as: blur board audit civil fabric cross base permit cage one repair chat sister clinic tobacco predict chicken assist cover gown gate elite sister flush






          share|improve this answer
















          Is there an algorithm to convert a bech32 address into a list of English words that would make it even easier? Something like BIP39 but inverted (address to words instead of words to seed).




          @Anonymous answer tries to answer the question in terms of dictation, but since you were looking for BIP 39 inversion, I have tried to answer the question keeping that in mind. The number of words to dictate decrease significantly as well in this way.



          You could design a software that takes words (similar to BIP39) from users and converts it to bech32 addresses. Let me take the example of bech32 address given in the BIP 173 documentation. So we have two addresses (1) P2WPKH: bc1qw508d6qejxtdg4y5r3zarvary0c5xw7kv8f3t4 and (2) P2WSH: bc1qrp33g0q5c5txsp9arysrx4k6zdkfs4nce4xj0gdcccefvpysxf3qccfmv3.



          (1) P2WPKH: This is basically base32encode of the witness version and the hash160 of the public key. Decoding the bech32 address bc1qw508d6qejxtdg4y5r3zarvary0c5xw7kv8f3t4 gives us a witness version 00 and payload of 751e76e8199196d454941c45d1b3a323f1433bd6. Now, use this payload of 20 bytes as the entropy. For a 160 bit entropy, According to the BIP-39 documentation, we need to append first five bits of the checksum to the entropy that gives us total of 165 bits. Given each word of the BIP 39 mnemonic represents 11 unique bits, we can represent the P2WPKH address with 15 words. Use this tool and enter the entropy this gives the words as : insect victory ring creek bonus health false logic easy mirror trip elevator before over fossil.



          (2) P2WSH: This is basically base32encode of the witness version and the SHA256 of the script. Decoding the bech32 address bc1qrp33g0q5c5txsp9arysrx4k6zdkfs4nce4xj0gdcccefvpysxf3qccfmv3 gives us witness version of 00 and payload of 1863143c14c5166804bd19203356da136c985678cd4d27a1b8c6329604903262.Use this 32 bytes of payload as the entropy. Since payload is 32 bytes, we need to use first 8 bits of the checksum. This gives us total size of 264 bits, which can be represented in 24 words (recall, each BIP 39 mnemonic word is 11 bits). Using the payload as entropy we get the words as: blur board audit civil fabric cross base permit cage one repair chat sister clinic tobacco predict chicken assist cover gown gate elite sister flush







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited 16 hours ago

























          answered 16 hours ago









          Ugam KamatUgam Kamat

          902118




          902118













          • This manages to transmit the same information without the error recovery and detection, in a way that requires a custom decoder. I'd suggest against making something custom for this sort of task given the very real potential for loss of funds. BIP39 is also not designed for verbal unambiguity.

            – Anonymous
            1 hour ago



















          • This manages to transmit the same information without the error recovery and detection, in a way that requires a custom decoder. I'd suggest against making something custom for this sort of task given the very real potential for loss of funds. BIP39 is also not designed for verbal unambiguity.

            – Anonymous
            1 hour ago

















          This manages to transmit the same information without the error recovery and detection, in a way that requires a custom decoder. I'd suggest against making something custom for this sort of task given the very real potential for loss of funds. BIP39 is also not designed for verbal unambiguity.

          – Anonymous
          1 hour ago





          This manages to transmit the same information without the error recovery and detection, in a way that requires a custom decoder. I'd suggest against making something custom for this sort of task given the very real potential for loss of funds. BIP39 is also not designed for verbal unambiguity.

          – Anonymous
          1 hour ago


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Bitcoin Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fbitcoin.stackexchange.com%2fquestions%2f86135%2fwould-it-be-possible-to-dictate-a-bech32-address-as-a-list-of-english-words%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          How did Captain America manage to do this?

          迪纳利

          南乌拉尔铁路局