Bitcoin Forum
June 17, 2024, 05:48:45 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 [9] 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 ... 299 »
161  Economy / Currency exchange / Re: I sell Bitcoin BTC on: March 20, 2019, 04:56:30 PM
Sign a message using the private key for the address 1MDq7zyLw6oKichbFiDDZ3aaK59byc6CT8 in order to prove you own it.

Or, you are a scammer.
162  Economy / Currency exchange / Re: Need adequate sellers for large volume btc on: March 20, 2019, 02:31:34 PM
Like I said, total bullshit.
163  Other / Off-topic / Re: What is the largest amount of bitcoin you have stored or purchased? on: March 16, 2019, 11:28:44 PM
10,000 BTC at BS&T owned by pirate@40.  He later went to jail for stealing everyone's BTC.
164  Economy / Currency exchange / Re: Need adequate sellers for large volume btc on: March 16, 2019, 11:25:54 PM
Bullshit.
165  Bitcoin / Project Development / Re: Large Bitcoin Collider Thread 2.0 on: March 16, 2019, 11:23:17 PM
I am planning to invest in hardware and join in LBC, but I not know where is calculation to invest thousands of dollars in hardware, spent months and years for 0.5btc.
You will never make enough money to pay for the computer.  Never.

If you are doing it for fun and to learn more about how Bitcoin works then fine.

Doing this to make a profit is a very very bad idea.
166  Other / Off-topic / Re: Your biggest Bitcoin mistake! on: March 15, 2019, 02:54:46 PM
Lost 10,000 BTC to pirate@40
167  Bitcoin / Press / Re: [2019-01-09] Russia Plans To Ditch US Dollar For Bitcoin, Says University Profes on: January 09, 2019, 01:43:37 AM
Would be nice.  But, I doubt it.
168  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: November 07, 2018, 08:19:15 PM
My answer was a general answer to a general question about the two forms of Bitcoin address and was not meant to be a technical paper or exact description of how to create Bitcoin addresses (that is what the wiki is for).  

So, I started out with "Leaving out some small details:".

Thanks for filling in a few of the technical details.

BTW, even with the additional details, the description is still incomplete because you left out the checksum in the hashing description.

Anyone who wants to know all the nitty gritty details can look it up.
169  Bitcoin / Bitcoin Discussion / Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it on: November 07, 2018, 07:07:12 PM
Hi guys, I'm trying to understand the procedure to solving this puzzle, starting from the easy ones that were solved already. Im clearly a little over my head here, and I cannot figure out what I am doing wrong.

I have this code so far, which gives me the same results as this website (https://brainwalletx.github.io/#generator), but they never match what I see here. So clearly i'm doing something wrong

Code:
let bitcoin = require('bitcoinjs-lib');

let pvk_seed = '000000000000000000000000000000000011';
let hash = bitcoin.crypto.sha256(pvk_seed);
const keyPair = bitcoin.ECPair.fromPrivateKey(hash);
const { address } = bitcoin.payments.p2pkh({ pubkey: keyPair.publicKey });

let wif = keyPair.toWIF();

console.log(`${pvk_seed} = Address ${address}, WIF : ${wif}`)


That code is using 3 to generate PVK, ive tried 3 in Decimal, Binary, Hex, nothing works.

Thanks for any tips



If you put 0000000000000000000000000000000000000000000000000000000000000003
here -> https://www.bitaddress.org/bitaddress.org-v3.3.0-SHA256-dec17c07685e1870960903d8f58090475b25af946fe95a734f88408cef4aa194.html
(wallet details)

you'll get 2 addresses:

Bitcoin Address (Uncompressed)
1NZUP3JAc9JkmbvmoTv7nVgZGtyJjirKV1

Bitcoin Address Compressed
1CUNEBjYrCn2y1SdiUMohaKUi4wpP326Lb

In this case the address in puzzle transaction is the last one.

Look here : https://github.com/bitcoinjs/bitcoinjs-lib/issues/155

I did a quick write up on compressed versus uncompressed Bitcoin addresses here:

https://bitcointalk.org/index.php?topic=1573035.msg45500313#msg45500313

in case you want more technical details.
170  Economy / Service Announcements / Re: 📣📣📣 [ANN] 👉 BESTMIXER.IO 👈 THE FUTURE OF BITCOIN MIXING! TECHNOLOGY IS HERE on: October 25, 2018, 07:54:11 PM
I do not see any information leak in the "888" UTXOs since they are sending them to so many addresses, the addresses are only related as a large arbitrary class (all addresses above a certain value threshold, etc.) and they not attempting to "tag" all addresses in a specific wallet.
The reasoning behind a dusting attack is that you can compromise your privacy when you make a transaction.

Say you have 3 addresses holding 1000 Bitcoin each. Let's call the addresses 1A, 1B and 1C.
You receive 888 Satoshi on each address, and want to buy a pizza. If your wallet chooses to pay 0.01 Bitcoin from the large UTXO on address 1A, and add the 888 Satoshi from 1A, 1B and 1C to consolidate them, it becomes known that 1A, 1B and 1C are owned by the same person.

This can of course be prevented by manually selecting which inputs to use ("Coin control" in Bitcoin Core, also possible in Electrum and no doubt in many other wallets), but I can imagine not everybody uses it.
I see your point and you are correct for any legacy wallets that behave this way.

I only use HD wallets and I believe this is not an issues for any well designed HD wallet since it will only use multiple input addresses when it must (when the output is larger than is available in one address).  In this case even if there is no dust the two (or more) HD addresses required to fulfill the output will be tied together by the transaction itself.  The addition of dust to each of the inputs does not tie them together any more than the transaction without dust does.

I see one small timing related issue, assuming an HD wallet:

1) HD address n is discovered and queued to be "tagged" with the dust.
2) HD address n+1 is discovered and queued to be also tagged with the dust.
3) Before the dust arrives HD address n is spent with no tie to address n+1.
4) The dust arrives on both addresses
5) Now a spend of address n+1 happens
6) The wallet will probably spend the dust on address n, the dust on n+1 and the rest of n+1

So in this case n and n+1 are tied together in a case where they would not normally have been tied together - due to the timing of the arrival of the dust, but remember that these two addresses would have been tied together anyway if the first spend had been large enough to "overflow" into n+1.
171  Economy / Service Announcements / Re: 📣📣📣 [ANN] 👉 BESTMIXER.IO 👈 THE FUTURE OF BITCOIN MIXING! TECHNOLOGY IS HERE on: October 25, 2018, 05:52:20 PM
Samouri Wallet and a few others seem to be calling it a "dusting attack", designed to link addresses together through the use of multiple UTXOs from different addresses.

https://twitter.com/SamouraiWallet/status/1055345822076936192?s=09
https://www.reddit.com/r/bitcoin/comments/9r9qud

That *might* be going against the message that people should mix their coins using your site since you're the one reducing their privacy for advertisement.
I do not see any information leak in the "888" UTXOs since they are sending them to so many addresses, the addresses are only related as a large arbitrary class (all addresses above a certain value threshold, etc.) and they not attempting to "tag" all addresses in a specific wallet.

All this does is link all the dusted addresses back to their sending address, which is well known and is dusting the entire UTXO set in a known arbitrary way.
172  Economy / Service Announcements / Re: 📣📣📣 [ANN] 👉 BESTMIXER.IO 👈 THE FUTURE OF BITCOIN MIXING! TECHNOLOGY IS HERE on: October 23, 2018, 06:13:49 PM
and why?
It looks like they're sending it to addresses with at least a couple hundred Bitcoin. Advertising, I guess.

"Self-made Legendary!"

I like it.
173  Economy / Service Announcements / Re: 📣📣📣 [ANN] 👉 BESTMIXER.IO 👈 THE FUTURE OF BITCOIN MIXING! TECHNOLOGY IS HERE on: October 23, 2018, 05:44:06 PM
Are you sending out 0.00000888 BTC to various BTC addresses from:

https://www.blockchain.com/btc/address/1BestMixVhna91MkP7pKRtjej3bFq6Ze46

If so, thanks, and why?
174  Bitcoin / Project Development / Re: Large Bitcoin Collider Thread 2.0 on: October 22, 2018, 10:26:55 PM
So, yes, it is still up and operating.
yes... but why still working on #55 of the puzzle?
both #55 (may 29) and #56 (sept 8 ) has been solved/found already
shouldn't the pool working on #57 now? 15c9mPGLku1HuW9LRtBf4jcHVpBUt8txKz - (Unspent) 0.057 BTC
is the project also targeting other public addresses (used or with balance) as well?

Is there a list of all found puzzles with keys?

See here:

https://lbc.cryptoguru.org/trophies

and here:

https://bitcointalk.org/index.php?topic=1306983.msg13381244#msg13381244
175  Bitcoin / Project Development / Re: Large Bitcoin Collider Thread 2.0 on: October 20, 2018, 05:19:58 AM
Go here:

https://lbc.cryptoguru.org/stats

As of the time I posted this they are generating and checking about 290 Mkeys/second for Bitcoins, or about 25.07 trillion keys per day.

So, yes, it is still up and operating.
176  Other / Meta / Re: Checking every single bitcointalk profile which has 1-2 merit. Shouldn't we? on: September 20, 2018, 01:55:26 AM
If you remove signature campaigns then a lot of people would not post here and it opens the doors to people moving to alternative forums. The last thing you want is a dead half empty forum, but i think 1 merit is achievable so it is the right decision by the admins.
Yes, all the people who are here to just post crap will leave - and good riddance.  That is exactly the point.  This forum was fine before the spam nightmare and crap posts and it would be just fine without them.  The forum would become again what it once was - a great place to discuss and learn about Bitcoin.  Maybe all the shitcoins would leave and make their own forum also?  Wouldn't that be nice.
177  Bitcoin / Bitcoin Technical Support / Re: Help needed. WIF private key on: September 18, 2018, 11:08:08 PM
Install Electrum, save your Electrum backup seed words, after you have saved your Electrum backup seed words and finished installing Electrum then use Electrum to sweep the private key into Electrum.  That is how you import a private key into Electrum so you can recover your Bitcoins.
More information: [overview] Recover Bitcoin from any old storage format

Added a bit more detail.
178  Other / Meta / Re: Checking every single bitcointalk profile which has 1-2 merit. Shouldn't we? on: September 17, 2018, 06:34:02 PM
The solution is simple:  ban all paid signature campaigns. 

This would remove almost all economic incentives to farm accounts by posting crap to the forum.
179  Other / Meta / Re: Checking every single bitcointalk profile which has 1-2 merit. Shouldn't we? on: September 17, 2018, 05:27:21 PM
"Junior member", "1 merit", "demoted", etc, will be hot keyword for searching today.
I was a newbie (junior member with 0 merits) not long ago, and feel that to achieve my first merit is not easy before.
Some members wonder why the system change so sudden in today. For more information, you can visit here:
https://bitcointalk.org/index.php?topic=5030366.0
The idea of getting 1 merit for being a junior member has contributed a few months ago and now it is approved:
https://bitcointalk.org/index.php?topic=3775593.0

But the thing is, In today when visiting https://bitcointalk.org/index.php?action=merit;stats=recent I saw many cases which abuse the merit system.
Such as:
https://bitcointalk.org/index.php?topic=4776598.msg45810421#msg45810421
https://bitcointalk.org/index.php?topic=4414245.msg39302532#msg39302532
(send from an untrusted account)
https://bitcointalk.org/index.php?topic=4323682.msg39372029#msg39372029
(same case above)
https://bitcointalk.org/index.php?topic=2552297.msg31019787#msg31019787
(archival thread, really?)
https://bitcointalk.org/index.php?topic=3365339.msg35500008#msg35500008
(very short post, something wrong?)
https://bitcointalk.org/index.php?topic=23705.msg304619#msg304619
(Exact 5 points to rank-up to member, suspicious???)
https://bitcointalk.org/index.php?topic=2226669.msg23858289#msg23858289
(same case above)
https://bitcointalk.org/index.php?topic=45750.msg545628#msg545628
(active recently)

I can find a hundred cases like this. Buying/selling merit seems to be off-forum activities that difficult to handle.

The aim of this campaign is to motivate new member to contribute their thoughts and quality topics/posts. But, I think this is not really effective. The question is "Is this solution enough to limit garbage-posting?"



The solution is simple:  ban all paid signature campaigns. 

This would remove all economic incentives to farm accounts by posting crap to the forum.
180  Bitcoin / Bitcoin Discussion / Re: Rare address hall of fame on: September 17, 2018, 05:23:46 PM
You can create any arbitrary address simply by putting the correct checksum at the end. You, of course, will not know the secret key, so anything that is sent there is unlikely to ever be received will be destroyed and can never be spent.


FIFY.

Here is an example I made a long time ago:

Code:
11When1DieBuryMeDeepLayTwoXVEY5jv - (Unspent) 0.00000001 BTC
11SpeakersAtMyFeetAPairofXXTyrHor - (Unspent) 0.00000001 BTC
11HeadphonesonMyHeadAndXXXXYUSvnd - (Unspent) 0.00000001 BTC
11ALwaysPLayTheGratefuLDeadWdq4Xo - (Unspent) 0.00000001 BTC

Pages: « 1 2 3 4 5 6 7 8 [9] 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 ... 299 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!