Would it be possible to dictate a bech32 address as a list of English words? Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Are Bech32 addresses safe for mainnet usage?Does Bech32 address format not decrease Bitcoin's possible addresses?How to create a Bech32 address from a public key?understanding bech32 Addresses / BIP173 questionWhy bech32 address always starts with bc1q?Is a P2WPKH address synonymous with a Bech32 address?How is Bech32 based on BCH codes?Benefits of Bech32 addresses?How do I Derive Bech32 Address from P2WPKH Output Script?Bitcoin automatically diverted to bech32 address
Would it be easier to apply for a UK visa if there is a host family to sponsor for you in going there?
What's the meaning of "fortified infraction restraint"?
Why does the remaining Rebel fleet at the end of Rogue One seem dramatically larger than the one in A New Hope?
How were pictures turned from film to a big picture in a picture frame before digital scanning?
Sum letters are not two different
Most bit efficient text communication method?
How much damage would a cupful of neutron star matter do to the Earth?
Project Euler #1 in C++
Question about debouncing - delay of state change
What would you call this weird metallic apparatus that allows you to lift people?
Why wasn't DOSKEY integrated with COMMAND.COM?
What does it mean that physics no longer uses mechanical models to describe phenomena?
Do wooden building fires get hotter than 600°C?
What is "gratricide"?
Take 2! Is this homebrew Lady of Pain warlock patron balanced?
Why is Nikon 1.4g better when Nikon 1.8g is sharper?
Is it possible for SQL statements to execute concurrently within a single session in SQL Server?
How often does castling occur in grandmaster games?
Why do we bend a book to keep it straight?
If Windows 7 doesn't support WSL, then what does Linux subsystem option mean?
Is there any word for a place full of confusion?
Why does it sometimes sound good to play a grace note as a lead in to a note in a melody?
Is grep documentation about ignoring case wrong, since it doesn't ignore case in filenames?
Converted a Scalar function to a TVF function for parallel execution-Still running in Serial mode
Would it be possible to dictate a bech32 address as a list of English words?
Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?Are Bech32 addresses safe for mainnet usage?Does Bech32 address format not decrease Bitcoin's possible addresses?How to create a Bech32 address from a public key?understanding bech32 Addresses / BIP173 questionWhy bech32 address always starts with bc1q?Is a P2WPKH address synonymous with a Bech32 address?How is Bech32 based on BCH codes?Benefits of Bech32 addresses?How do I Derive Bech32 Address from P2WPKH Output Script?Bitcoin automatically diverted to bech32 address
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
add a comment |
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
add a comment |
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
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
bech32-address
asked 6 hours ago
Gabriele DomenichiniGabriele Domenichini
885
885
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
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
add a comment |
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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
add a comment |
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
add a comment |
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
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
answered 2 hours ago
AnonymousAnonymous
9,13311128
9,13311128
add a comment |
add a comment |
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
add a comment |
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
add a comment |
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
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
edited 8 mins ago
answered 16 mins ago
Ugam KamatUgam Kamat
872118
872118
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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