- Saved searches
- Use saved searches to filter your results more quickly
- License
- InCode-WeTrust/seed-phrase-telegram-distributor
- Name already in use
- Sign In Required
- Launching GitHub Desktop
- Launching GitHub Desktop
- Launching Xcode
- Launching Visual Studio Code
- Latest commit
- Git stats
- Files
- README.md
- About
- Saved searches
- Use saved searches to filter your results more quickly
- toprogramm/SeedPhraseGenerator_PYTHON
- Name already in use
- Sign In Required
- Launching GitHub Desktop
- Launching GitHub Desktop
- Launching Xcode
- Launching Visual Studio Code
- Latest commit
- Git stats
- Files
- README.md
- near-seed-phrase-py 0.1.2
- Навигация
- Ссылки проекта
- Статистика
- Метаданные
- Сопровождающие
- Классификаторы
- Описание проекта
- NEAR Seed Phrase
- 🚨 Status: BETA, contributions welcome!
- Ported to Python from https://github.com/near/near-seed-phrase
- Install
- Poetry
- Подробности проекта
- Ссылки проекта
- Статистика
- Метаданные
- Сопровождающие
- Классификаторы
- История выпусков Уведомления о выпусках | Лента RSS
- Загрузка файлов
- Source Distribution
- Built Distribution
- Хеши для near_seed_phrase_py-0.1.2.tar.gz
- Хеши для near_seed_phrase_py-0.1.2-py3-none-any.whl
- Помощь
- О PyPI
- Внесение вклада в PyPI
- Использование PyPI
- Saved searches
- Use saved searches to filter your results more quickly
- License
- chaintuts/mnemonicgen
- Name already in use
- Sign In Required
- Launching GitHub Desktop
- Launching GitHub Desktop
- Launching Xcode
- Launching Visual Studio Code
- Latest commit
- Git stats
- Files
- README.md
- About
- Saved searches
- Use saved searches to filter your results more quickly
- sithortodox/Seed-phrase-generator
- Name already in use
- Sign In Required
- Launching GitHub Desktop
- Launching GitHub Desktop
- Launching Xcode
- Launching Visual Studio Code
- Latest commit
- Git stats
- Files
- README.md
- About
Saved searches
Use saved searches to filter your results more quickly
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.
Python script to generate 12 words seed phrase, split it to parts and distribute among participants over Telegram.
License
InCode-WeTrust/seed-phrase-telegram-distributor
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
Latest commit
Git stats
Files
Failed to load latest commit information.
README.md
Python script to generate 12 words seed phrase, split it into parts, and distribute among participants over Telegram.
This is a script that has the same purpose as https://www.random.org/ — for clear generate, spit and distribute a seed phrase for ETH (could be changed to any other blockchain). Distribution makes over Telegram bot.
For example, you want to generate a seed phrase with 12 words and split it between 3 participants, and send their seed’s part over Telegram. For this task you need to run the command:
python generator.py --bot-token BOT_TOKEN --count-parts 3
- BOT_TOKEN — token for Telegram bot, e.g.: 1730562302:AAGQ7B0K5-_zhgzD6xN3fNNAvmB7zGTO54w
- —count-parts 3 — mean count of participants
See the Workflow section for more information.
- First, you need to create a bot over https://t.me/BotFather and get the BOT_TOKEN. More info is here: https://core.telegram.org/bots#6-botfather
- Clone this repository and install the required library by command pip install -r requirements.txt
- Run the command python generator.py —bot-token BOT_TOKEN —count-parts 2 with correct BOT_TOKEN to distribute seed phrase between 2 participants. Then you should see such a message:
------------------------------------------------------------ | Generate seed phrase for 2 people(s) using bot @xspotbot | ------------------------------------------------------------ Link for invitation participants: https://t.me/xspotbot?start=1634043786387
- Then you need to copy the invitation link and with no killing, the script sends them an invitation link Link for invitation participants: https://t.me/xspotbot?start=1634043786387
- Each participant goes by link and starts the bot. After the needed number of participants will activate the bot — each of them will receive the address and part of the seed phrase.
- Full script output:
Connected 1/2 participant: 91******55 Connected 2/2 participant: 88*****23 All participants are on the boat! Generating seed phrase and send their parts *** SEED PHRASE GENERATED! Address is 0x1304E7db3d760833fC969062473E8a5f2967f553 *** Base HD Path: m/44'/60'/0'/0/0 Sent words 1..6 to 1 participant: 91******55 Sent words 7..12 to 2 participant: 91******55 Done!
Word [1..6] for address 0x1304E7db3d760833fC969062473E8a5f2967f553 is: protect romance decorate hill snap banner
To run the script just need (don’t forget about BOT_TOKEN ):
docker run --rm -it inc0dewetrust/seed-phase-distributor python generator.py --bot-token BOT_TOKEN --count-parts 2
About
Python script to generate 12 words seed phrase, split it to parts and distribute among participants over Telegram.
Saved searches
Use saved searches to filter your results more quickly
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.
seed phrase generator, python maded, offline seed phrase generator,
toprogramm/SeedPhraseGenerator_PYTHON
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
Latest commit
Git stats
Files
Failed to load latest commit information.
README.md
#bip39 #python #seed_phrase_generator #offline
bip39 Seed Phrase Generator makes with PYTHON
This generator can generate bip39 12words and 24words seed phrase, it can work offline.
Python must be installed! How to install python use link => https://wiki.python.org/moin/BeginnersGuide/Download
HOW TO USE THIS SEED GENERATOR ↓
Go to folder in console and run generator
near-seed-phrase-py 0.1.2
Python tool for creating and converting mnemonic-phrases, public key and private key for NEAR accounts.
Навигация
Ссылки проекта
Статистика
Метаданные
Лицензия: MIT License (MIT)
Метки near, seedphrase, seed, phrase, python
Требует: Python >=3.9,
Сопровождающие
Классификаторы
Описание проекта
NEAR Seed Phrase
Python tool for creating and converting mnemonic-phrases, public key and private key for NEAR accounts.
🚨 Status: BETA, contributions welcome!
Ported to Python from https://github.com/near/near-seed-phrase
Install
Poetry
Подробности проекта
Ссылки проекта
Статистика
Метаданные
Лицензия: MIT License (MIT)
Метки near, seedphrase, seed, phrase, python
Требует: Python >=3.9,
Сопровождающие
Классификаторы
История выпусков Уведомления о выпусках | Лента RSS
Загрузка файлов
Загрузите файл для вашей платформы. Если вы не уверены, какой выбрать, узнайте больше об установке пакетов.
Source Distribution
Uploaded 22 нояб. 2022 г. source
Built Distribution
Uploaded 22 нояб. 2022 г. py3
Хеши для near_seed_phrase_py-0.1.2.tar.gz
Алгоритм | Хеш-дайджест | |
---|---|---|
SHA256 | 7cce6f80763fb16ebb41cbe704c80912ab9c326d1c744f8a8051523c2e545401 | Копировать |
MD5 | cee6289fb4af0f5536fde9e6c2bacfcb | Копировать |
BLAKE2b-256 | b55b88bcaa21eabc0b84b1e1679c862951dcdcc537371112b5631b25e880992e | Копировать |
Хеши для near_seed_phrase_py-0.1.2-py3-none-any.whl
Алгоритм | Хеш-дайджест | |
---|---|---|
SHA256 | e6044eca46db1d77cc16d277e1da3db80c9bc349305b26739b225b1ac3bf6028 | Копировать |
MD5 | 58740a8bfd55cf3b4ecc3b0bbc93b3b7 | Копировать |
BLAKE2b-256 | 0179565dc51c2516fd95dc5b7438539b7d1db1f4b80cb6688ec09c203f6c69c1 | Копировать |
Помощь
О PyPI
Внесение вклада в PyPI
Использование PyPI
Разработано и поддерживается сообществом Python’а для сообщества Python’а.
Пожертвуйте сегодня!
PyPI», «Python Package Index» и логотипы блоков являются зарегистрированными товарными знаками Python Software Foundation.
Saved searches
Use saved searches to filter your results more quickly
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.
MnemonicGen creates BIP39-compliant seed phrases for Bitcoin/Bitcoin Cash wallets
License
chaintuts/mnemonicgen
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
Latest commit
Git stats
Files
Failed to load latest commit information.
README.md
- Generate a 12-word BIP39-compliant mnemonic seed phrase in English
- Print this seed phrase on the command line for backup/wallet creation
- Requires Python with bitstring
- Use pip install bitstring if it is not already available
- From the command line in the build directory, run ./mnemonicgen.py or python mnemonicgen.py
- Write down the mnemonic phrase in order
- Import the seed phrase into a modern HD (Hierarchical Deterministic) Bitcoin/Bitcoin Cash wallet. Examples include the Bitcoin.com wallet, Blockchain.info, or Electron Cash
- PLEASE NOTE — Every effort is made to learn and follow best practices in the development of this software. However, this code should be considered academic/experimental. Use at your own risk.
- Always store your seed phrase in a secure location. Write it down and keep it somewhere safe, or use an encrypted password manager.
- This tool does not require any network connectivity. Consider running offline to mitigate eavesdropping.
- This tool uses Python’s os.urandom to generate entropy for the seed. The underlying OS implementation determines the level of security. (/dev/urandom on Unix-based systems, CryptGenRandom() on Windows). It may be best to avoid using fresh machines or VM’s as insufficient entropy may be used to generate a less-secure seed.
About
MnemonicGen creates BIP39-compliant seed phrases for Bitcoin/Bitcoin Cash wallets
Saved searches
Use saved searches to filter your results more quickly
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.
Генерирует seed фразу для Bitcoin кошелька и проверяет баланс и наличие транзакций
sithortodox/Seed-phrase-generator
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Sign In Required
Please sign in to use Codespaces.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching GitHub Desktop
If nothing happens, download GitHub Desktop and try again.
Launching Xcode
If nothing happens, download Xcode and try again.
Launching Visual Studio Code
Your codespace will open once ready.
There was a problem preparing your codespace, please try again.
Latest commit
Git stats
Files
Failed to load latest commit information.
README.md
Генерирует seed фразу для Bitcoin кошелька и проверяет баланс и наличие транзакций.
Скрипт генерирует seed фразу, вычисляет адрес кошелька, проверяет баланс и наличие транзакций. Проверка происходит через blockchain.info Если на кошельке баланс или количество транзакций больше 0, то скрипт записывает сид-фразу и адрес кошелька в файл good.txt, отправляет эти данные в телеграм (надо указать токен и chat_id) и завершает работу. Поддерживает работу через http-proxy. Берет из файла proxy.txt
Для работы скрипта нужна установка некоторых библиотек:
pip install bitcoin mnemonic requests python-telegram-bot==13.1
Количество итераций можно установить в строке while address_count (по умолчанию установлено 1000000) Время между проверками установлено в строке time.sleep (по умолчанию 5 сек). Меньше ставить не рекомендую, т.к. IP улетает в бан на сайте.
Шансов поймать кошелек с балансом очень мало, но они есть.
Поддержать меня звонким битком можно по адресу bc1qkzswrcmnndw4aafpv93fl590frfm5ye93awqse
About
Генерирует seed фразу для Bitcoin кошелька и проверяет баланс и наличие транзакций