Bitcoin Forum
May 02, 2024, 08:55:09 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 [88] 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 ... 285 »
1741  Bitcoin / Bitcoin Discussion / Re: 61% of Bitcoin hodlers could sell at a profit on: November 30, 2019, 01:29:28 PM
What is hodling?
So, what exactly is hodling? According to eToro, to hodl is to “to hold on to your coins, even when the market dips, rather than sell up and cash out.”

that is a wrong definition and in my opinion it is what the newbies think. which is why we have so many weak hands who bag hold and then panic sell.

HODL means making a wise investment decision and putting your money in something you think has a long term potential and then not worrying about its short term fluctuations. additionally you enter during the time where price is in a dip so that you are guaranteed to see profit.
this means buying bitcoin this year and not even thinking about the times where price came down. if you did that, then even with the drops you still are in more than 100% profit!
1742  Bitcoin / Bitcoin Discussion / Re: Was Hal Finney the real Satoshi? on: November 30, 2019, 01:06:02 PM
I believe he may have sent the first Bitcoin transaction to himself.

specially because of this case, you can have solid proof that Hal Finney is NOT Satoshi Nakamoto. because it would be the weirdest thing to do at a time where there were others he could have send the bitcoin to if he were Satoshi and send it to himself!
when you want to show how the system works and get others involved you want to send coins to "OTHERS".
1743  Bitcoin / Electrum / Re: Electrumx - get balance of BECH32 addresses on: November 30, 2019, 12:57:38 PM
it is the same exact process with only one difference the "script" part. you have to build a P2W{X}H script where {X} is pubkey or script.
if your bech32 address is a P2WPKH equivalent address then your  script is going to be this:
Code:
OP_0 <20 bytes hash>
where hash is the result of RIPEMD160(SHA256(pubkey))

and if your bech32 address is a P2WSH then your script is:
Code:
OP_0 <32 bytes hash>
where hash is the SHA256(script)

now that you have your script, hash it using SHA256 just like the example in docs, reverse it and send that to server. i believe this should work.
1744  Bitcoin / Development & Technical Discussion / Re: Generating a paper wallet securely on: November 26, 2019, 04:11:51 PM
the fact is, if you create the paper wallet correctly (offline and encrypted) then it is a lot more secure than a hardware wallet since the hardware wallet
I don't think anyone would argue that a correctly created paper wallet is insecure. The problem is that an awful lot of people create them incorrectly, and the steps needed to create them securely (clean OS, dumb printer and clearing printer memory, permanently airgapped machine, etc.) require a degree of technical knowledge which isn't required to be able to safely use a hardware wallet, for example.

there is also a fair amount of technical knowledge required to use a hardware wallet correctly. for example the user could simply have one of the most common malwares called "clipboard hijacker" that simply changes the address he copies, in which case it doesn't matter if he uses hardware wallet, he still is going to lose money.
or he could be using a malicious software to communicate with the hardware wallet, like a malicious electrum that shows one thing in GUI but signs something else and sends bitcoins to the attackers wallet as soon as user confirms it. to mitigate that he has to know PGP and verify signature,...

"technical knowledge" is always needed and there is always a lot of ways that naive users could lose funds no matter what type of wallet they use. these were just some examples off the top of my head.
1745  Bitcoin / Bitcoin Discussion / Re: NOTHING IS ABOVE BITCOIN on: November 26, 2019, 03:37:07 PM
This is exactly why stablecoins like USDT, TUSD, DAI, Libra, etc. won't gain much popularity.

it depends on your definition of popularity!
for example Tether is already very popular if you believe the daily trading volume of it and define popularity by how much people are using it. or for example Libra is something that has a big name (Facebook) behind it and it automatically is being advertised and is ahead in popularity.

but it is important to know that you can not compare things that are not in the same category! for example all these centralized coins should be compared with banks, paypal,... not with bitcoin.
1746  Bitcoin / Development & Technical Discussion / Re: Generating a paper wallet securely on: November 26, 2019, 03:25:02 PM
Quote
CAUTION: Paper wallets carry MANY RISKS and should only be used for SMALL AMOUNTS.

Why do they say that? Paper wallets are almost always offline cold storage. The risk is you can lose it. There is no risk of it getting stolen or hacked unless the actual paper wallet is stolen from you. Or there are risks which you can mitigate.

it is probably because they are SELLING an alternative to paper wallets and if they tell people that you can store your bitcoins in a paper wallet in a way that could be just as safe as their product, nobody would buy it anymore!

the fact is, if you create the paper wallet correctly (offline and encrypted) then it is a lot more secure than a hardware wallet since the hardware wallet can still contain bugs that could be exploited whereas to break the encryption of your paper wallet they have to break something like AES256
1747  Economy / Speculation / Re: Bizarre crash! What cause bitcoin crash?? on: November 26, 2019, 03:08:11 PM
the only bizarre thing that i see here is your being about 1 week late to talk about the "crash" that has already happened and ended and we are already in the recovery mode.
not to mention that there are dozens of topics already talking about the crash starting when it actually happened.
1748  Bitcoin / Development & Technical Discussion / Re: Are BTC Private Keys evenly distributed in 256bit space? on: November 26, 2019, 02:59:10 PM
this is not a question that you can ever answer without actually computing all hashes and count the collisions to see how evenly they are distributed. because of pseudo-randomness of the result you may get more collisions on one value and less on another and so on.

since 2^256 is too big you can test it with a smaller value. for example i tested with 2^16 and 2^8 or in other words take 2 bytes and hash them to and put it inside 1 byte (truncate the hash digest). it is not the same as using the whole space but it should give you the idea. here is a couple of collisions:
0x00 is repeated 231 times
0x01 is repeated 261 times
0x02 is repeated 248 times
0x03 is repeated 267 times
0x04 is repeated 243 times
...
as the space becomes bigger (<2^256 to 2^80) these collisions distribute more evenly so the numbers should become closer but there still is no guarantee for them to be equal.

so the only answer you can come up with is that there is a chance that when you convert each private keys to address using the 160 bit hash you get an uneven distribution.
1749  Bitcoin / Bitcoin Discussion / Re: Paypal CEO Is a HODLr, but Only Owns Bitcoin on: November 26, 2019, 02:30:17 PM
at this day and age you have to be seriously blind not to see the big potential that something like bitcoin has. it is innovative, one of a kind and it is offering something new and well needed which is a decentralized payment system that we had the need for many years.
with that said everyone should buy at least a small amount of bitcoin while we are still in adoption stage. even if it is $20 worth of it, it is still a good idea to get in at the ground floor.
1750  Other / Meta / Re: Newbie member not participated any Vote on: November 26, 2019, 06:50:57 AM
it is not a good idea because letting low rank accounts like newbies that anybody can create increases the chances of the vote result being manipulated.
if you want to create a poll that anybody can participate in then you can use sites that let you create such things and include the link in the topic.
1751  Other / Beginners & Help / Re: Are stable coins solving the problem of providing stability to our funds? on: November 25, 2019, 05:39:24 PM
funny thing about stable coins is that they are created mainly for exchanges convenience not the users! it may sound odd but if you think about it the only one that is benefitting here is exchanges.
if a trader is presented with two options, fiat and an stable coin and if both have the same options (same fee, volume, price and KYC requirement) they will never choose the stable coin over fiat!
so why do exchanges don't add fiat markets? it is simply because they don't want the risk of using a bank (the bank may close their account, block their funds,...) and want to have more flexibility when it comes to KYC. so they are benefiting from this not users.
1752  Economy / Speculation / Re: It's a BUY flag on: November 25, 2019, 05:22:26 PM
whenever bitcoin price is dropping, everyone says it is manipulation but at the same time they don't believe it themselves which is why they panic sell instead of happily buying at that discount they are getting out of pure luck.
there probably are people who see past the manipulation, like OP maybe, but when we look at the market we can see that panic sellers at this point are dominating in numbers and they don't want to see past the manipulation until it is too late and price has recovered.
1753  Bitcoin / Bitcoin Discussion / Re: Would it be realistic for the world to run on cryptocurrencies? on: November 25, 2019, 07:23:04 AM
cryptocurrencies are just currencies and like any other form of money they only can be used as a medium of exchange so the world can't run on them. all we can hope for is more adoption so that you can see it accepted in enough places so that you can have the choice to freely spend your bitcoin anywhere you go. this would specifically be beneficial for when you travel like for tourism to another country. in that case you won't have to exchange your money to their local currency, you simply use bitcoin aka the global currency.
1754  Bitcoin / Bitcoin Discussion / Re: A whale transfers $310 millions worth bitcoins for a ridiculously low fee!!! on: November 25, 2019, 07:13:09 AM
I think this is not the first time that we have heard whale transferring huge amount with ridiculous low fee:
exactly! people usually don't hear about it unless some drama starts (mostly involving price) and hear about it in news sites. otherwise big transfers aren't as rare as some people may think.
you can always use a block explorer like blockchair.com that allows you to sort transactions based on value to see all the gigantic transfers!

Quote
Maybe those whales doesn't care if there could be delayed in transactions as long as they know that the BTC are going to their wallet anyways that's why the fees are so low. As compare to us mere mortals here who always pay high amounts because we are eager to see it goes into our wallet in less than an hour.
the fees nowadays are low so it shouldn't take that long to confirm and most 1 satoshi/byte transactions are being confirmed in the next block (so right away). and most of these big transfers are from big services consolidating inputs so they don't care about how long it could take.
1755  Other / Meta / Re: How to earn merit in 4 EASY steps! on: November 25, 2019, 05:40:23 AM
the moment people stop worrying about earning merit and just post normally is the moment they start actually earning merit.
=> 1 easy step: don't worry too much about it!
1756  Alternate cryptocurrencies / Altcoin Discussion / Re: Are you currently holding stablecoins(USDT, TUSD, etc)? Think again. on: November 24, 2019, 04:20:47 PM
Personally in the short short term, I'd go with centralized stablecoins like TUSD(because Tether is just too shady).

one of the problems with these other stable coins is their lack of liquidity and sometimes adoption by exchanges. since one of the usages of the stable coins is for moving funds between exchanges, using Tether is the only option in most cases since the other exchange may not even have anything else. so eventually everyone sticks with the shady option.
1757  Bitcoin / Project Development / Re: Crypto prices, trades & volume in realtime excluding fake volume on: November 24, 2019, 04:08:45 PM
Quote
But pundits know that trading volume is an unreliable metric. Almost every cryptocurrency exchange reports larger trading volumes than what they actually have.

On the other hand, order book data is significantly more trustworthy.


with that logic orderbook data is also equally untrustworthy since exchanges can easily fake that too. you can check out Yobit exchange for a live manipulation of literary everything. their orderbooks are also filled with orders that you can never fill even if you succeed in reaching them!

the thing is when it comes to analysis, you should use all these data together and also analyze the changes. then in the end know that your analysis is only a guideline to the most possible outcome not a prediction of future.
1758  Bitcoin / Bitcoin Technical Support / Re: MultiSig address based on the same repeated public key on: November 24, 2019, 11:31:55 AM
I have just tested with 1/2 multisig wallet and signed the outgoing tx with 2 signatures (more than required 1), and this transaction was not accepted with the same error as described in OP:

you can't test what achow said by "broadcasting" the transaction because when you broadcast it, your transaction is subjected to standard rules and as he explained this is a non-standard tx and will be rejected.

to test whether it was right or not, you have to "mine" the transaction and see if the block that contains the tx is rejected or not.
you can probably do it in testnet or regtest.
1759  Bitcoin / Bitcoin Discussion / Re: Bitcoin's Ups and Downs over the last 10 years on: November 24, 2019, 10:59:18 AM
2010! The birth of coinbase!!!! First crypto exchange

there were at least a dozen other exchanges before coinbase. in fact Coinbase didn't even exist back in 2010, it was created 2 years later in 2012.
by the way the first bitcoin exchange was called bitcoinmarket.com which is no longer around.

Most expensive dinner ever!

it wasn't expensive since back then 10k bitcoin was worth around the same value as Pizzas. it is like saying 0.002BTC is too expensive today because bitcoin will some day be worth $1 million.
1760  Bitcoin / Bitcoin Discussion / Re: It’s dying for the 378th time, so when’s the 379th? on: November 24, 2019, 10:26:40 AM
It’s like we’re playing a Playstation “Bitcoin” game with Gameshark cheat codes enabling “Unlimited lives for Bitcoin”.

it actually is more like a mountain climber that people cheer on as long as it is climbing the mountain but as soon as he stops to catch his breath everyone starts posting obituaries about how he died under an avalanche...
Pages: « 1 ... 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 [88] 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 ... 285 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!