Skip to content

Commit 7991277

Browse files
authored
Fix/improved turkish bip39 wordlist (#149)
Greetings, hope you are doing well ## What this changes After [The Initial PR](#129) i have found a couple of rude words in the wordlist that i generated. While substituting rude words i have also changed the other words that lost its meaning while converting non-ASCII chars in the Turkish Alphabet to ASCII chars (ş -> s , ü -> u) Also , substituted some archaic words with words in the daily life <!-- What does this PR do and why? Link to related issues if any. --> ## How I tested this Ran `make test` `make test-e2e` `make full` `make serve` <!-- How did you verify it works? Tests you ran, manual steps, etc. --> ## Checklist - [X] I have read [CONTRIBUTING.md](../CONTRIBUTING.md) and this PR follows the guidelines - [X] A human has reviewed the **entire diff** of this PR, every line of code - [X] A human understands the changes and can explain why this approach is correct - [X] Tests pass (`make full`) - [ ] This PR doesn't have AI-generated boilerplate or co-author lines - [ ] This PR was authored and submitted by an AI agent without human review
2 parents 3d7cfc9 + dad148d commit 7991277

2 files changed

Lines changed: 263 additions & 263 deletions

File tree

internal/core/wordlists.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ var wordListSpecs = []wordListSpec{
6969
{LangPT, "wordlists/portuguese.txt", "https://github.com/bitcoin/bips/blob/ed7af6ae7e80c90bcfc69b3936073505e2fc2503/bip-0039/portuguese.txt", "2685e9c194c82ae67e10ba59d9ea5345a23dc093e92276fc5361f6667d79cd3f"},
7070
{LangZH_TW, "wordlists/chinese_traditional.txt", "https://github.com/bitcoin/bips/blob/7d77befd2b14359b9386fc1f9fb15f82d418fb34/bip-0039/chinese_traditional.txt", "417b26b3d8500a4ae3d59717d7011952db6fc2fb84b807f3f94ac734e89c1b5f"},
7171
{LangCA, "wordlists/catalan.txt", "https://github.com/1ma/diceware-cat/blob/master/cat-wordlist-ascii.txt", "be159d519390a5de8d9fb90421ea758643ddfb69f439651f5d81c10910151e56"},
72-
{LangTR, "wordlists/turkish.txt", "https://github.com/FrustT/BIP39_TR/blob/main/bip39_turkish.txt", "627be6b5f48248123db6a989ed46d62b9d74c74ac70acb5916bfce2410628fc8"},
72+
{LangTR, "wordlists/turkish.txt", "https://github.com/FrustT/BIP39_TR/blob/main/bip39_turkish.txt", "d0bc501581a396808a888235629924969d66f5d37bc9a800b24fb93a44d89044"},
7373
}
7474

7575
var (

0 commit comments

Comments
 (0)