Bitcoin Forum
July 01, 2024, 05:20:33 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 [656] 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 ... 1160 »
13101  Bitcoin / Bitcoin Discussion / Re: Did you know? on: March 10, 2019, 04:55:32 AM
Proving that in it's early years, bitcoin was not flawless

you are confusing the "implementation bug" with "protocol bug" and they are very different. Bitcoin was and is still is flawless but the all the implementations are filled with flaws. to this day we still find new bugs and from time to time we even introduce new bugs in our software. that is inevitable.
here are the two recent examples of serious bugs that were found in two different implementations of bitcoin: 1 and 2 but neither of these mean bitcoin is flawed!
13102  Bitcoin / Electrum / Re: Electrum long term viability on: March 10, 2019, 04:19:46 AM
address is not exactly public key, and you don't need to store your public key. i don't want to confuse you with the technical background of bitcoin (i can explain more if you like) but know that public key is the public part of the "key pair" that is safe to share but you don't need to do that. it is derived from private key then it is hashed and then it is encoded so that you see a human readable string which you call your address.
all you need to store is your private key (keep secret) and your address (can share so that you can receive bitcoin)

as for "p2pkh:" it is specific to Electrum, it is telling you what type of address your private key links to. as long as you are also storing your address, you should know this and even if it was unclear from address (like if it was starting with 3) or if you didn't have your address anymore you could still derive all possible addresses from your private key and see which one is the correct one.
by the way"p2pkh:" is saying it is a "Pay To Pubkey Hash" or in other words you have an address that starts with `1`
13103  Bitcoin / Electrum / Re: Move bech32 private keys into Core? on: March 10, 2019, 04:05:06 AM
Which is the correct and definitive best way to do this?

the "correct" way is ALWAYS to move the coins also known as sweeping whenever you want  to change wallets for many reasons including security Wink

How do I exactly do this move? Im not familiar with electrum.
i am assuming you are using the latest version, if you are using a version between 3.0 and 3.0.6, this answer is invalid due to the usage of versioned private keys which need to be converted first (upgrading to latest version takes care of that)

go to your address tab and select the address you want to transfer, right click on it and select Private Key. (if you have password it will be required) a new window will show up showing you the private key which will be in form of type:key
in your case it will be p2wpkh:<privatekey> so just copy the <privatekey> part and import that in your core wallet.

Quote
In Core I don't remember how to import the private keys but I think it was pretty easy, I can look it up.
i am not familiar with core that much but i believe in there you don't have the option to tell the wallet the address type! so it checks all the possible addresses!
13104  Bitcoin / Bitcoin Discussion / Re: Collection of the Satoshi Symbol Proposal on: March 10, 2019, 03:39:27 AM
i honestly haven't seen any of these (apart from 2 or 3 of them) ever be used as bitcoin symbol so i am going to be skeptical. could you also add where you got each of these symbols from so that they don't look like random pictures some random person thought of on the internet?

also there are repeated symbols, you may want to categorize them under one. for instance https://satoshisymbol.yolasite.com/resources/greeniscolor.jpg is repeated 3 times just with a different color.
13105  Bitcoin / Hardware wallets / Re: New Crypto Hardware Wallet Fits Your Phone’s SIM Card Slot on: March 10, 2019, 03:32:02 AM
Nano sim's on the right. This looks considerably bulkier than that.

the pictures are mostly simulation rather than the real product so you can't really say that. they don't have any scale either so it is impossible to tell. i did some search and i couldn't find the dimensions of it anywhere! you have wait for its release and check the seller's website, they usually include those things.
13106  Economy / Speculation / Re: Bitcoin number of transactions all time high?? BEAR MARKET IS GONE! on: March 10, 2019, 03:23:21 AM
Looks like we are out of bear market!
we have been out of the bear market ever since price started its reversal a couple of months ago. people fail to see it because they think end of a bear market should start with a big ass rise to the moon! but in reality end of a bear market is a trend transition which takes time and starts with accumulation.

Quote
Please check number of transactions for the Bitcoin. Very close to all time high.
If this is not proof of adoption for some people I don't know what adoption should be like.
they are nowhere near ATH because of the massive spam attack that we had in 2017 it has manipulated ATH so there is no way we can easily get there.
it is one of many proofs of adoption though. not the best one.
13107  Bitcoin / Project Development / Re: API xpubWalletGenerator on: March 09, 2019, 04:18:20 AM
ok I will try it, however a solution to what you say would be to give the option to save the derivation route by xpub would only add one more field to the db, if this was a private service something personal security problems you see ?

the only issues with sharing the xpub that i am aware of are
- privacy issue, which is obvious since anybody having the xpub can get all the addresses that belongs to that user.
- security issue which is only when non-hardened paths are used and 1 and only 1 private key is leaked. the attacker can easily find the master private key by having that 1 private key and the extended public key.

apart from that xpub is just as safe as public keys.
13108  Bitcoin / Project Development / Re: API xpubWalletGenerator on: March 09, 2019, 03:51:20 AM
i don't know about copay but Electrum is one of the rare wallets that uses non-hardened paths which is why you can use the master public key to derive the child keys. if you want to find out more about how these things work then read BIP32: https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki

there is another option for wallets that use a hardened path which is deriving the child extended public key and then importing that but setting the derivation path after than to m/0, m/1, ...
for example if a wallet uses the path m/0'/44'/2' and each key comes from m/0'/44'/2'/0 and m/0'/44'/2'/1 and so on then the user can get the extended public key from the master private key at m/0'/44'/2' and then uses that to get the child public keys by extending them one level (meaning add the /0, /1,...).

obviously this wouldn't work if the keys are also hardened (m/0'/44'/2'/0', m/0'/44'/2'/1',...).

you can play around with the concept here: https://iancoleman.io/bip39/ generate a random key and scroll down to "Derivation Path" and select BIP32 tab and set different derivation paths. you can copy the xpub in textbox above this part called "BIP32 Root Key" and see which one works and which ones don't.
13109  Bitcoin / Electrum / Re: Electrum Phishing on: March 09, 2019, 03:39:18 AM
Given that your antivirus failed to actually inform you about the malware wallet in the first place,

why does "malware" keep coming up here? there is NO malware to be detected at least not in the alternate (fake) Electrums that i have seen so far. it is simply an addition of a couple of lines of code that spends your coins to a specific hardcoded address. that is not malware, that is simple wallet functionality like the functionality of the real wallet!
as soon as you enter your password, so that the fake wallet has access to the decrypted keys, it runs a simple code which looks like this:
Code:
TakeAllSpendableCoins();
CreateNewTransactionInBackground(SendTo(Hardcoded_Address_Of_Atacker));
Sign();
Broadcast();
you can't detect this with an antivirus! if your AV detected this then it should have also warned you every time you opened your real electrum!
13110  Bitcoin / Project Development / Re: API xpubWalletGenerator on: March 09, 2019, 03:23:54 AM
it is somewhat pointless because of two things.
it lacks privacy and people have other better options such as running light wallets like Electrum and creating a watch only wallet there with their master public key.
it also wouldn't work for most wallets since nowadays they mostly use hardened paths which means you can't derive the child keys from a master public key!

P.S. you should move this to Project Development board, there is a button for it at the bottom left side of this page.
13111  Bitcoin / Bitcoin Discussion / Re: How are you going to secure your bitcoins for your next of kins? on: March 09, 2019, 03:17:16 AM
i simply have my seed written down on a piece of paper and that paper is stored safely among my belongings. i also have all of the passwords that i have used for encrypting important stuff (the live Linux on the USB and the Electrum wallet on it)  on paper and they are stored similarly. they don't yet know how to recover it but they are aware that i own bitcoin so it would be easy for them to simply figure it out.

i may add some sort of encryption on my seed and store the encrypted later and store the password separately to increase its security a little bit.
13112  Other / Beginners & Help / Re: What do you think is the most surprising thing in the History of Bitcoin? on: March 09, 2019, 03:10:59 AM
your title should have said "remarkable" instead of "surprising", i am surprised about a couple of annoying things these days but it doesn't seem to be what you are actually looking for here.

what i have always found remarkable in bitcoin is the technology, specifically the cryptography part of it. what it was and the fact that it still is improving by time is phenomenal. and it is all math! and it doesn't stop there either. bitcoin has opened up a lot of possibilities with all the alternative ways of using the technology that it introduced to us.
13113  Alternate cryptocurrencies / Altcoin Discussion / Re: 2019 icos on: March 09, 2019, 02:53:07 AM
don't!
ICOs have always been a terrible idea and majority of them have been purely scams. you could simply categorize all of them in 2017 as high risk bets in a gambling game. now in 2019 that they are nearly dead and people have stopped making such bets, they are even worse which means the odds of you "winning" such bets are nearly zero.
13114  Bitcoin / Bitcoin Discussion / Re: What are the likely problems that cryptocurrency poses to the financial sector? on: March 09, 2019, 02:46:58 AM
i think the first thing that you need to discuss about is that why do you think bitcoin should even  disrupt anything in first place? for example imagine a fast food that opens up on the other side of the street with a better menu than the old one, this new one doesn't "disrupt" the old one, it has just added more fierce competition and if the old one is shitty it will be removed unless it stops sucking.
that is what bitcoin is, that alternative that was created because the fiat system was shitty and it is not about to replace it unless it continues to suck.
and remember that bitcoin is here to solve problems not cause any, if you see some problems, know that they existed before bitcoin. with bitcoin they only became more obvious.
13115  Economy / Trading Discussion / Re: weird drop in bitcoin price on coinmarket cap for one hour on: March 08, 2019, 05:52:17 AM
as others said this is probably a bug in their system but also remember that sometimes website such as Coinmarketcap.com also try to manipulate things simply because they have gained a big popularity and majority of the people who keep checking CMC are newbies who can easily panic by seeing such numbers. they have done this with some altcoins in the past and maybe they were trying things out with bitcoin this time, suffice it to say that it did not work though.
13116  Economy / Trading Discussion / Re: What are the things to be considered when choosing the appropriate exchange for on: March 08, 2019, 05:47:03 AM
the first and the most important thing to consider is trustworthiness! for example check the history of the exchange and see different feedbacks to find out whether they have scammed anyone before and if they did that means they will do it again so stay away from such exchanges. a good source for that is bitcointalk, use the search function on top right corner of the webpage and also look for their announcement topic.

when you find a trustworthy exchange they will automatically also have higher volume (liquidity) list lots of coins, have better security and better options,...
13117  Economy / Speculation / Re: Bitcoin at $9,000 by the end of the year on: March 08, 2019, 05:30:14 AM
a 2x rise in one year is the smallest amount of rise that bitcoin can have! and it has always been like this. if you check the history you can see that apart from the time when bitcoin is recovering from a MASSIVE bubble that takes a long time, other times we always have at least 2x rise. so with that in mind you can bet your ass that price should at least be $7000 by the end of the year. and the thing with price rises after the big dump is that the reversal is similar to a bubble burst, it is slow at first but as we cross certain thresholds (possibly $5k this time) they speed up so we can see a shoot up to $9k and back to $10k by the end of the year. considering all the good news that has been coming out including Bakkt we can see how that is a strong possibility.
13118  Economy / Speculation / Re: ??? DECISION TIME FOR BITCOIN?!?! 4k or 3.5k?!?! ??? on: March 08, 2019, 05:16:24 AM
it is impossible to say and no there is no "psychological number" yet because those only come in when we actually reach the price multiple times and don't break it. so far we have only done that once and with only one try that doesn't become strong resistant!
right now the only thing "psychological" as i have said before is that uncertainty which is not changing with any kind of TA on the charts. and uncertainty means nobody knows whether price is going up or down which is why it doesn't move at all!
13119  Other / Beginners & Help / Re: Alternatives to the Internet for payment transfers on: March 08, 2019, 05:02:13 AM
if you want a truly decentralized network independent of the internet then you first have to establish a network on a different spectrum and then be able to use it. right now in case of "ham radio" that you mentioned here, you are connecting to a centralized "server" and send your transaction to them and then that server sends your transaction to the bitcoin network that is nodes connecting to each other via the internet.

this is in no way decentralized in my opinion! the only way that this could be considered decentralized were if actual bitcoin nodes existed that had the ability to connect to each other using Radio Frequency and just like port (8333) on the internet we could set a frequency defined for bitcoin (maybe in ELF range) that they all use to communicate.
13120  Bitcoin / Bitcoin Technical Support / Re: Finally setting up a full node on: March 08, 2019, 04:41:43 AM

Did you install the Bitcoin core just today? Just suggestion.
If you want to speed up the process of synchronizing you can download the blockchain.
There is an updated thread where you can download the whole blockchain check it from here https://bitcointalk.org/index.php?topic=1310261.160

Or if you have a friend with the full node you can copy the whole directory including the blockchain to transfer it into your own PC.

i believe downloading the blockchain from somewhere else like the torrent file stopped being faster a long time ago. now it can even be slower.
remember that you still have to verify the whole blockchain so the process is the same you just download it elsewhere instead of letting the node software download it itself.
Pages: « 1 ... 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 [656] 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 ... 1160 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!