I don't and since this is on Yobit, I doubt I would be playing anytime soon lmao
Code:
Warning: One or more bitcointalk.org users have reported that they believe that the creator of this topic displays some red flags which make them high-risk. (Check their trust page to see the detailed trust ratings.) While the bitcointalk.org administration does not verify such claims, you should proceed with extreme caution.
These warning banners will disappear when you have 7 days of login time. You should familiarize yourself with the trust system before then.
[python] 2 question? please share your answer it important to me
by
crofrihosl
on 07/10/2019, 17:28:34 UTC
-what is the fast library and function to generate random bitcoin key WIF format and with less lines of code -fast way to get random bitcoin key and has160
i will loop with same itr and test every reply and share the time of execution thank you
Post
Topic
BoardBitcoin Discussion
Re: ❤️ Millions of valid Bitcoin addresses and private keys ❤️
Here I am uploading millions of valid Bitcoin address and corresponding private keys for development purpose,education purpose,fun and luck . There are lot of websites and users those who sells Bitcoin address and corresponding private keys. All these are just scams for fooling newbies. Do not invest anything to purchase these types of lists and private key making software's. Please understand that Bitcoin key space is very huge . Generating 2 same Bitcoin address is possible, but for that you must be very very very lucky.
I am uploading files in .xlsx format. Each file contains 1 Million Bitcoin address and corresponding private keys. I don't know the balances of all these addresses.I am just generating and uploading . It will take years to check the balances of all these addresses.
sha256(666) leads to 1Az4F5yC19WZt5XMuc6x11xJM81VcJyHQA which in 2014 received 666 satoshi. Hell, that's funny.
again reviving an old topic google brought me here
i run my javascript that iam devloping SHA256 (6) 1JmrvhqYP4EpSRAhuKkn2NtmPvPNCxA9Kd SHA256 (66) 1NDx9Sw74RYP5EA6iqgb52C97ncswCy2kp SHA256 (666) 1Az4F5yC19WZt5XMuc6x11xJM81VcJyHQA
Post
Topic
BoardBitcoin Discussion
Re: Bitcoin challenge transaction: ~100 BTC total bounty to solvers!
How to calculate the WIF that gives you uncompressed Segwit P2SH: ?
I don't understand what you try to achieve.
What do you mean by "uncompressed segwit P2SH" ? That you pay to the hash of an uncompressed public key ?
from same private key compressed address 3QHF8WWyXL5u3vDBHrZYrBpW7evS2x6URK WIFcompressed :KxULHn3XGW9HaGZLGrkgfxDfLGogn7s9iB31pTdXeQmsRQFV6CE1 uncompressed address 33JWNnBSJWLLoMZkijQb9XLaALZco5RaZq WIF : [how to calculate this one]
There are some wallets out there (mostly from alts) that do something called autocombine and multisend, so in theory you just need to ask any decent blockchain coder to make your wallet for you.
I know one can make a wallet that either waits for every block, or waits for a transaction, then immediately forwards that to either a specific address, or randomly from a group of addresses. Or make it wait a few minutes in between checking so you can batch transactions and save on fees. Depending on your use case, you could do this every few hours instead of every minute.
If you don't want to run a Core wallet, you could maybe have some sort of script running on electrum; where you pregenerate (or use a large gap limit) your thousands of addresses. Millions would need some sort of custom implementation as that's not going to work on a core wallet efficiently.
thanks for now i am working on something but i will remember this reply
Post
Topic
BoardDevelopment & Technical Discussion
Topic OP
is there a way to calculate WIF of a P2SH Segwit uncompressed address
--sinip-- The chances to find the key (randomly) during the priod of 10,000 years with the speed 1130MKey/sec are (1 130 000 * 60 * 60 * 24 * 365 * 10 000) / (2^63) = 0.038636 ≈ 3.8% --sinip--
if someone took the key space 2^256 and start ruining his bots with speed 200 address/sec (generating and testing for tx and balance 200/s)
what is his chance to find an address with tx or balance from all addresses that ever used?
to be honest i start working on similar project but need to increase speed and few option to working on
Basically I am a quality checker. Yobit is still maintaining payments and all that via the website. If anyone has any questions feel free to pm me or post them in here.
i don't know you and never had business with you i take a look on here
If the guy tell you the passphrase by phone or in the street you can sweep the wallet "on-the-go" too.
people who think like this usually are same who pick the friendly family dog name as "passphrase " don't walk your dog, or anyone in the street can sweep your wallet if he call the dog
Post
Topic
BoardDevelopment & Technical Discussion
Re: python script compare lines in 2 text files and output matches
f1=open("output","a") # f1=open("output","w") firstfile= [line.rstrip('\n') for line in open("file1t")] secondfile= [line.rstrip('\n') for line in open("file2")]
for firstline in firstfile: if firstline in secondfile: print >>f1, (firstline)
There's no change of "bitcoin version 1", assuming you're talking about Bitcoin address which have prefix 1.
Bech32 address format have more character count, but according to https://bitcoin.stackexchange.com/a/69554 it also uses RIPEMD-160 which means current address space is still 2^160, but only with different format/encoding. CMIIW.
not the prefix i meant the the address space () this line is clear something to me: There are exactly 2^160 possible addresses as long as we keep using RIPE-MD160.