Bitcoin Forum
July 01, 2024, 12:06:30 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Local / Альтернативные криптовалюты / Re: USDT.PW - Стейкинг USDT on: June 24, 2021, 10:35:24 AM
Теперь можно открывать стейкинг без приглашений.
Пополнять можно через Bitcoin,Dogecoin,BitcoinCash,Dash,Ethereum,Litecoin,Monero,USDT,Zcash
Полностью изменен дизайн и алгоритм работы сайта.
Стейкинг начинается автоматически сразу после депозита.
Автоматические выплаты через 30 дней после внесения средств на стейкинг.
Сделал депозит через DogeCoin на сумму 10 usd
Делал напрямую с биржи бинанс.
Ссылка на транзакцию
https://dogechain.info/tx/1d80d3a6a90e74a3aad24976e26cf4aebfd471549fd9f5fbfa5a09e1006ffd29
После оплаты долго не открывалось окно для ввода адреса кошелька для выплаты. Оказалось нужно дождаться подтверждения транзакции.



2  Local / Альтернативные криптовалюты / Re: USDT.PW - Стейкинг USDT on: June 22, 2021, 07:49:36 AM
Из новостей на сайте.
По просьбам инвесторов подключили автоматическую оплату Стейкинга 100 USDT 10% - 30 дней. Депозит можно сделать BTC, BCH, DASH, DOGE, ETH, LTC, XMR, USDT, ZEC
Для Стейкинга 100 USDT 10% -30 дней код приглашения не нужен.
Внимание обязательно укажите адрес для вывода средств на странице которая откроется после оплаты.
Выплаты только на Payeer или адреса USDT

Добавлена форма обратной связи в разделе контакты.
3  Local / Альтернативные криптовалюты / USDT.PW - Стейкинг USDT on: June 13, 2021, 07:22:10 AM
Всем доброго времени суток.

У кого есть код приглашения для сайта USDT.PW

Дайте пожалуйста ни где не могу найти а без него никак.

Пробовал что попало набрать вместо него пришло сообщение

что код не существует и оформить стейкинг можно только с настоящим кодом.

Заранее благодарен.
4  Bitcoin / Project Development / Generator Private Key Hexadecimal linux on: February 01, 2021, 04:44:26 PM
Hello.
Tell me a program for generating Private Key Hexadecimal on Linux. You need the program to generate keys randomly. Example I specify to start generating the range 00000000000000000000000000000000000000000000000000000000xxxx The program should create all possible keys in this range randomly.
5  Bitcoin / Bitcoin Discussion / Re: Key generator in hex format on: February 05, 2020, 04:05:46 PM
generates 17000 keys per second.

if you want speed then you shouldn't be using bash and while you're at it avoid using strings (hex) altogether. you are adding a couple of bottlenecks that slow down your process.
instead write your own code and generate random keys based on what you need. you didn't say what you are using it for, so i'll guess it is nothing serious and randomness doesn't matter. for that case you can simply use a fast hash algorithm that produces 256-bit digests and hash numbers from 1 to 1 mil (or whatever message you want) and use the result as the random key. that shouldn't take any more than a  seconds or so.

I can't write this code. Can you help me with this?
6  Bitcoin / Bitcoin Discussion / Re: Key generator in hex format on: February 05, 2020, 12:19:21 PM
Code:
for thing in {1..100}; do openssl rand -hex 32 >> privkeys; done
This is what I need. Tell me how to immediately send to another program through the pipe and not save to a file?
Remove the ">> privkeys" and pipe the whole thing:
Code:
for thing in {1..100}; do openssl rand -hex 32; done | wc -l
This sends it to "word count" as an example.

This is a terribly slow method for generating private keys though.

Unfortunately, this works very slowly and loads the computer's memory very much. If you set this command as
Code:
keys=60000000; openssl rand $[32*keys] | xd-p-c32
generates 17000 keys per second. But no more than 60000000 keys at a time. And I need continuous generation of keys in hex format with their transfer through a pipe to another program.
7  Bitcoin / Bitcoin Discussion / Re: Key generator in hex format on: February 04, 2020, 11:58:06 AM
Code:
for thing in {1..100}; do openssl rand -hex 32 >> privkeys; done

that'll put them in a file named privkeys. replace 100 with 1,000,000 or whatever once you are satisfied it does what you want it to.

btw this may interest you



This is what I need. Tell me how to immediately send to another program through the pipe and not save to a file?
8  Bitcoin / Bitcoin Discussion / Re: Key generator in hex format on: February 03, 2020, 02:51:10 AM
You can try https://sourceforge.net/projects/pwgen-win/
This is also under Linux
On my pc it can generate 1M keys for 3-4sec, file size 60Mb for 1B will 60Gb  Wink






Thanks. Tell me How to run linux in the terminal?
9  Bitcoin / Bitcoin Discussion / Re: Key generator in hex format on: February 03, 2020, 02:27:31 AM
I need continuous generation of random keys
Can you share what you're trying to accomplish?
Unfortunately, I can't say what I need it for yet.
10  Bitcoin / Bitcoin Discussion / Re: Key generator in hex format on: February 02, 2020, 05:31:44 PM
Something like https://github.com/matja/bitcoin-tool ?

I'm not sure what would be the most efficient library to generate millions of keys in HEX format (or why you would want HEX format, as you'd lose compression data(?))
But i guess you could also use https://github.com/bitcoinjs/bitcoinjs-lib

I tried the command keys=1000; openssl rand $[32*keys] | xd-pc 32
but more than 60000000 at a time does not generate I need continuous generation of random keys
11  Bitcoin / Bitcoin Discussion / Key generator in hex format on: February 02, 2020, 10:50:46 AM
Hi, everybody.
Tell me how I can generate millions of keys in hex format with output one per line without any extra characters?
This should work on Linux
12  Bitcoin / Development & Technical Discussion / Re: Vanitygen: Vanity bitcoin address generator/miner [v0.22] on: February 02, 2020, 10:41:10 AM
Hi, everybody.
Tell me can I generate keys in hex format using Vanitygen?
More precisely, I need to generate millions of keys in hex format with the output of each key in a new line without any additional characters.
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!