[Download] Mastering Bitcoin [PDF][Epub][Mobi] - By Andreas

⚡ Lightning Network Megathread ⚡

Last updated 2018-01-29
This post is a collaboration with the Bitcoin community to create a one-stop source for Lightning Network information.
There are still questions in the FAQ that are unanswered, if you know the answer and can provide a source please do so!

⚡What is the Lightning Network? ⚡

Explanations:

Image Explanations:

Specifications / White Papers

Videos

Lightning Network Experts on Reddit

  • starkbot - (Elizabeth Stark - Lightning Labs)
  • roasbeef - (Olaoluwa Osuntokun - Lightning Labs)
  • stile65 - (Alex Akselrod - Lightning Labs)
  • cfromknecht - (Conner Fromknecht - Lightning Labs)
  • RustyReddit - (Rusty Russell - Blockstream)
  • cdecker - (Christian Decker - Blockstream)
  • Dryja - (Tadge Dryja - Digital Currency Initiative)
  • josephpoon - (Joseph Poon)
  • fdrn - (Fabrice Drouin - ACINQ )
  • pmpadiou - (Pierre-Marie Padiou - ACINQ)

Lightning Network Experts on Twitter

  • @starkness - (Elizabeth Stark - Lightning Labs)
  • @roasbeef - (Olaoluwa Osuntokun - Lightning Labs)
  • @stile65 - (Alex Akselrod - Lightning Labs)
  • @bitconner - (Conner Fromknecht - Lightning Labs)
  • @johanth - (Johan Halseth - Lightning Labs)
  • @bvu - (Bryan Vu - Lightning Labs)
  • @rusty_twit - (Rusty Russell - Blockstream)
  • @snyke - (Christian Decker - Blockstream)
  • @JackMallers - (Jack Mallers - Zap)
  • @tdryja - (Tadge Dryja - Digital Currency Initiative)
  • @jcp - (Joseph Poon)
  • @alexbosworth - (Alex Bosworth - yalls.org)

Medium Posts

Learning Resources

Books

Desktop Interfaces

Web Interfaces

Tutorials and resources

Lightning on Testnet

Lightning Wallets

Place a testnet transaction

Altcoin Trading using Lightning

  • ZigZag - Disclaimer You must trust ZigZag to send to Target Address

Lightning on Mainnet

Warning - Testing should be done on Testnet

Atomic Swaps

Developer Documentation and Resources

Lightning implementations

  • LND - Lightning Network Daemon (Golang)
  • eclair - A Scala implementation of the Lightning Network (Scala)
  • c-lightning - A Lightning Network implementation in C
  • lit - Lightning Network node software (Golang)
  • lightning-onion - Onion Routed Micropayments for the Lightning Network (Golang)
  • lightning-integration - Lightning Integration Testing Framework
  • ptarmigan - C++ BOLT-Compliant Lightning Network Implementation [Incomplete]

Libraries

Lightning Network Visualizers/Explorers

Testnet

Mainnet

Payment Processors

  • BTCPay - Next stable version will include Lightning Network

Community

Slack

IRC

Slack Channel

Discord Channel

Miscellaneous

⚡ Lightning FAQs ⚡

If you can answer please PM me and include source if possible. Feel free to help keep these answers up to date and as brief but correct as possible
Is Lightning Bitcoin?
Yes. You pick a peer and after some setup, create a bitcoin transaction to fund the lightning channel; it’ll then take another transaction to close it and release your funds. You and your peer always hold a bitcoin transaction to get your funds whenever you want: just broadcast to the blockchain like normal. In other words, you and your peer create a shared account, and then use Lightning to securely negotiate who gets how much from that shared account, without waiting for the bitcoin blockchain.
Is the Lightning Network open source?
Yes, Lightning is open source. Anyone can review the code (in the same way as the bitcoin code)
Who owns and controls the Lightning Network?
Similar to the bitcoin network, no one will ever own or control the Lightning Network. The code is open source and free for anyone to download and review. Anyone can run a node and be part of the network.
I’ve heard that Lightning transactions are happening “off-chain”…Does that mean that my bitcoin will be removed from the blockchain?
No, your bitcoin will never leave the blockchain. Instead your bitcoin will be held in a multi-signature address as long as your channel stays open. When the channel is closed; the final transaction will be added to the blockchain. “Off-chain” is not a perfect term, but it is used due to the fact that the transfer of ownership is no longer reflected on the blockchain until the channel is closed.
Do I need a constant connection to run a lightning node?
Not necessarily,
Example: A and B have a channel. 1 BTC each. A sends B 0.5 BTC. B sends back 0.25 BTC. Balance should be A = 0.75, B = 1.25. If A gets disconnected, B can publish the first Tx where the balance was A = 0.5 and B = 1.5. If the node B does in fact attempt to cheat by publishing an old state (such as the A=0.5 and B=1.5 state), this cheat can then be detected on-chain and used to steal the cheaters funds, i.e., A can see the closing transaction, notice it's an old one and grab all funds in the channel (A=2, B=0). The time that A has in order to react to the cheating counterparty is given by the CheckLockTimeVerify (CLTV) in the cheating transaction, which is adjustable. So if A foresees that it'll be able to check in about once every 24 hours it'll require that the CLTV is at least that large, if it's once a week then that's fine too. You definitely do not need to be online and watching the chain 24/7, just make sure to check in once in a while before the CLTV expires. Alternatively you can outsource the watch duties, in order to keep the CLTV timeouts low. This can be achieved both with trusted third parties or untrusted ones (watchtowers). In the case of a unilateral close, e.g., you just go offline and never come back, the other endpoint will have to wait for that timeout to expire to get its funds back. So peers might not accept channels with extremely high CLTV timeouts. -- Source
What Are Lightning’s Advantages?
Tiny payments are possible: since fees are proportional to the payment amount, you can pay a fraction of a cent; accounting is even done in thousandths of a satoshi. Payments are settled instantly: the money is sent in the time it takes to cross the network to your destination and back, typically a fraction of a second.
Does Lightning require Segregated Witness?
Yes, but not in theory. You could make a poorer lightning network without it, which has higher risks when establishing channels (you might have to wait a month if things go wrong!), has limited channel lifetime, longer minimum payment expiry times on each hop, is less efficient and has less robust outsourcing. The entire spec as written today assumes segregated witness, as it solves all these problems.
Can I Send Funds From Lightning to a Normal Bitcoin Address?
No, for now. For the first version of the protocol, if you wanted to send a normal bitcoin transaction using your channel, you have to close it, send the funds, then reopen the channel (3 transactions). In future versions, you and your peer would agree to spend out of your lightning channel funds just like a normal bitcoin payment, allowing you to use your lightning wallet like a normal bitcoin wallet.
Can I Make Money Running a Lightning Node?
Not really. Anyone can set up a node, and so it’s a race to the bottom on fees. In practice, we may see the network use a nominal fee and not change very much, which only provides an incremental incentive to route on a node you’re going to use yourself, and not enough to run one merely for fees. Having clients use criteria other than fees (e.g. randomness, diversity) in route selection will also help this.
What is the release date for Lightning on Mainnet?
Lightning is already being tested on the Mainnet Twitter Link but as for a specific date, Jameson Lopp says it best
Would there be any KYC/AML issues with certain nodes?
Nope, because there is no custody ever involved. It's just like forwarding packets. -- Source
What is the delay time for the recipient of a transaction receiving confirmation?
Furthermore, the Lightning Network scales not with the transaction throughput of the underlying blockchain, but with modern data processing and latency limits - payments can be made nearly as quickly as packets can be sent. -- Source
How does the lightning network prevent centralization?
Bitcoin Stack Exchange Answer
What are Channel Factories and how do they work?
Bitcoin Stack Exchange Answer
How does the Lightning network work in simple terms?
Bitcoin Stack Exchange Answer
How are paths found in Lightning Network?
Bitcoin Stack Exchange Answer
How would the lightning network work between exchanges?
Each exchange will get to decide and need to implement the software into their system, but some ideas have been outlined here: Google Doc - Lightning Exchanges
Note that by virtue of the usual benefits of cost-less, instantaneous transactions, lightning will make arbitrage between exchanges much more efficient and thus lead to consistent pricing across exchange that adopt it. -- Source
How do lightning nodes find other lightning nodes?
Stack Exchange Answer
Does every user need to store the state of the complete Lightning Network?
According to Rusty's calculations we should be able to store 1 million nodes in about 100 MB, so that should work even for mobile phones. Beyond that we have some proposals ready to lighten the load on endpoints, but we'll cross that bridge when we get there. -- Source
Would I need to download the complete state every time I open the App and make a payment?
No you'd remember the information from the last time you started the app and only sync the differences. This is not yet implemented, but it shouldn't be too hard to get a preliminary protocol working if that turns out to be a problem. -- Source
What needs to happen for the Lightning Network to be deployed and what can I do as a user to help?
Lightning is based on participants in the network running lightning node software that enables them to interact with other nodes. This does not require being a full bitcoin node, but you will have to run "lnd", "eclair", or one of the other node softwares listed above.
All lightning wallets have node software integrated into them, because that is necessary to create payment channels and conduct payments on the network, but you can also intentionally run lnd or similar for public benefit - e.g. you can hold open payment channels or channels with higher volume, than you need for your own transactions. You would be compensated in modest fees by those who transact across your node with multi-hop payments. -- Source
Is there anyway for someone who isn't a developer to meaningfully contribute?
Sure, you can help write up educational material. You can learn and read more about the tech at http://dev.lightning.community/resources. You can test the various desktop and mobile apps out there (Lightning Desktop, Zap, Eclair apps). -- Source
Do I need to be a miner to be a Lightning Network node?
No -- Source
Do I need to run a full Bitcoin node to run a lightning node?
lit doesn't depend on having your own full node -- it automatically connects to full nodes on the network. -- Source
LND uses a light client mode, so it doesn't require a full node. The name of the light client it uses is called neutrino
How does the lightning network stop "Cheating" (Someone broadcasting an old transaction)?
Upon opening a channel, the two endpoints first agree on a reserve value, below which the channel balance may not drop. This is to make sure that both endpoints always have some skin in the game as rustyreddit puts it :-)
For a cheat to become worth it, the opponent has to be absolutely sure that you cannot retaliate against him during the timeout. So he has to make sure you never ever get network connectivity during that time. Having someone else also watching for channel closures and notifying you, or releasing a canned retaliation, makes this even harder for the attacker. This is because if he misjudged you being truly offline you can retaliate by grabbing all of its funds. Spotty connections, DDoS, and similar will not provide the attacker the necessary guarantees to make cheating worthwhile. Any form of uncertainty about your online status acts as a deterrent to the other endpoint. -- Source
How many times would someone need to open and close their lightning channels?
You typically want to have more than one channel open at any given time for redundancy's sake. And we imagine open and close will probably be automated for the most part. In fact we already have a feature in LND called autopilot that can automatically open channels for a user.
Frequency will depend whether the funds are needed on-chain or more useful on LN. -- Source
Will the lightning network reduce BTC Liquidity due to "locking-up" funds in channels?
Stack Exchange Answer
Can the Lightning Network work on any other cryptocurrency? How?
Stack Exchange Answer
When setting up a Lightning Network Node are fees set for the entire node, or each channel when opened?
You don't really set up a "node" in the sense that anyone with more than one channel can automatically be a node and route payments. Fees on LN can be set by the node, and can change dynamically on the network. -- Source
Can Lightning routing fees be changed dynamically, without closing channels?
Yes but it has to be implemented in the Lightning software being used. -- Source
How can you make sure that there will be routes with large enough balances to handle transactions?
You won't have to do anything. With autopilot enabled, it'll automatically open and close channels based on the availability of the network. -- Source
How does the Lightning Network stop flooding nodes (DDoS) with micro transactions? Is this even an issue?
Stack Exchange Answer

Unanswered Questions

How do on-chain fees work when opening and closing channels? Who pays the fee?
How does the Lightning Network work for mobile users?
What are the best practices for securing a lightning node?
What is a lightning "hub"?
How does lightning handle cross chain (Atomic) swaps?

Special Thanks and Notes

  • Many links found from awesome-lightning-network github
  • Everyone who submitted a question or concern!
  • I'm continuing to format for an easier Mobile experience!
submitted by codedaway to Bitcoin [link] [comments]

/r/Bitcoin FAQ - Newcomers please read

Welcome to the /Bitcoin Sticky FAQ

You've probably been hearing a lot about Bitcoin recently and are wondering what's the big deal? Most of your questions should be answered by the resources below but if you have additional questions feel free to ask them in the comments.
The following videos are a good starting point for understanding how bitcoin works and a little about its long term potential:
For some more great introductory videos check out Andreas Antonopoulos's YouTube playlists, he is probably the best bitcoin educator out there today. Also have to give mention to James D'Angelo's Bitcoin 101 Blackboard series. Lots of additional video resources can be found at the videos wiki page or /BitcoinTV.
Key properties of bitcoin
Some excellent writing on Bitcoin's value proposition and future can be found here. Bitcoin statistics can be found here, here and here. Developer resources can be found here and here. Peer-reviewed research papers can be found here. The number of times Bitcoin was declared dead by the media can be found here. Scaling resources here, and of course the whitepaper that started it all.

Where can I buy bitcoins?

BuyBitcoinWorldwide.com and Howtobuybitcoin.io are helpful sites for beginners. You can buy or sell any amount of bitcoin and there are several easy methods to purchase bitcoin with cash, credit card or bank transfer. Some of the more popular resources are below, also, check out the bitcoinity exchange resources for a larger list of options for purchases.
Bank Transfer Credit / Debit card Cash
Coinbase Coinbase LocalBitcoins
Gemini Bitstamp LibertyX
GDAX Bitit Mycelium LocalTrader
Bitstamp Cex.io BitQuick
Kraken CoinMama WallofCoins
Xapo BitcoinOTC
Cex.io
itBit
Bitit
Bitsquare
Here is a listing of local ATMs. If you would like your paycheck automatically converted to bitcoin use Cashila or Bitwage.
Note: Bitcoins are valued at whatever market price people are willing to pay for them in balancing act of supply vs demand. Unlike traditional markets, bitcoin markets operate 24 hours per day, 365 days per year. Preev is a useful site that that shows how much various denominations of bitcoin are worth in different currencies. Alternatively you can just Google "1 bitcoin in (your local currency)".

Securing your bitcoins

With bitcoin you can "Be your own bank" and personally secure your bitcoins OR you can use third party companies aka "Bitcoin banks" which will hold the bitcoins for you.
Android iOs Desktop
Mycelium BreadWallet Electrum
CoPay AirBitz Armory
Another interesting use case for physical storage/transfer is the Opendime. Opendime is a small USB stick that allows you to spend Bitcoin by physically passing it along so it's anonymous and tangible like cash.
Note: For increased security, use Two Factor Authentication (2FA) everywhere it is offered, including email!
2FA requires a second confirmation code to access your account, usually from a text message or app, making it much harder for thieves to gain access. Google Authenticator and Authy are the two most popular 2FA services, download links are below. Make sure you create backups of your 2FA codes.
Google Auth Authy
Android Android
iOS iOS

Where can I spend bitcoins?

A more comprehensive list can be found at the Trade FAQ but some more commons ones are below.
Store Product
Gyft Gift cards for hundreds of retailers including Amazon, Target, Walmart, Starbucks, Whole Foods, CVS, Lowes, Home Depot, iTunes, Best Buy, Sears, Kohls, eBay, GameStop, etc.
Steam, HumbleBundle, Games Planet, itch.io, g2g and kinguin For when you need to get your game on
Microsoft Xbox games, phone apps and software
Spendabit, The Bitcoin Shop, Overstock, DuoSearch, The Bitcoin Directory and BazaarBay Retail shopping with millions of results
ShakePay Generate one time use Visa cards in seconds
NewEgg and Dell For all your electronics needs
Cashila, Bitwa.la, Coinbills, Piixpay, Bitbill.eu, Bylls, Coins.ph, Bitrefill, Pey.de, LivingRoomofSatoshi, Hyphen.to, Coinsfer, GetPaidinBitcoin, Coins.co.th, More #1, #2 Bill payment
Foodler, Menufy, Takeaway, Thuisbezorgd NL, Pizza For Coins Takeout delivered to your door!
Expedia, Cheapair, Lot, Destinia, BTCTrip, Abitsky, SkyTours, Fluege the Travel category on Gyft and 9flats For when you need to get away
BoltVM, BitHost VPS service
Cryptostorm, Mullvad, and PIA VPN services
Namecheap, Porkbun For new domain name registration
Stampnik and GetUSPS Discounted USPS Priority, Express, First-Class mail postage
Reddit Gold Premium membership which can be gifted to others
Coinmap, 99Bitcoins and AirBitz are helpful to find local businesses accepting bitcoins. A good resource for UK residents is at wheretospendbitcoins.co.uk.
There are also lots of charities which accept bitcoin donations, such as Wikipedia, Red Cross, Amnesty International, United Way, ACLU and the EFF. You can find a longer list here.

Merchant Resources

There are several benefits to accepting bitcoin as a payment option if you are a merchant;
If you are interested in accepting bitcoin as a payment method, there are several options available;

Can I mine bitcoin?

Mining bitcoins can be a fun learning experience, but be aware that you will most likely operate at a loss. Newcomers are often advised to stay away from mining unless they are only interested in it as a hobby similar to folding at home. If you want to learn more about mining you can read more here. Still have mining questions? The crew at /BitcoinMining would be happy to help you out.
If you want to contribute to the bitcoin network by hosting the blockchain and propagating transactions you can run a full node using this setup guide. Bitseed is an easy option for getting set up. You can view the global node distribution here.

Earning bitcoins

Just like any other form of money, you can also earn bitcoins by being paid to do a job.
Site Description
WorkingForBitcoins, Bitwage, XBTfreelancer, Cryptogrind, Bitlancerr, Coinality, Bitgigs, /Jobs4Bitcoins, Rein Project Freelancing
OpenBazaar, Purse.io, Bitify, /Bitmarket, 21 Market Marketplaces
Watchmybit, Streamium.io, OTika.tv, XOtika.tv NSFW, /GirlsGoneBitcoin NSFW Video Streaming
Bitasker, BitforTip, WillPayCoin Tasks
Supload.com, SatoshiBox, JoyStream, File Army File/Image Sharing
CoinAd, A-ads, Coinzilla.io Advertising
You can also earn bitcoins by participating as a market maker on JoinMarket by allowing users to perform CoinJoin transactions with your bitcoins for a small fee (requires you to already have some bitcoins)

Bitcoin Projects

The following is a short list of ongoing projects that might be worth taking a look at if you are interested in current development in the bitcoin space.
Project Description
Lightning Network, Amiko Pay, and Strawpay Payment channels for network scaling
Blockstream and Drivechain Sidechains
21, Inc. Open source library for the machine payable web
ShapeShift.io Trade between bitcoins and altcoins easily
Open Transactions, Counterparty, Omni, Open Assets, Symbiont and Chain Financial asset platforms
Hivemind and Augur Prediction markets
Mirror Smart contracts
Mediachain Decentralized media library
Tierion and Factom Records & Titles on the blockchain
BitMarkets, DropZone, Beaver and Open Bazaar Decentralized markets
Samourai and Dark Wallet - abandoned Privacy-enhancing wallets
JoinMarket CoinJoin implementation (Increase privacy and/or Earn interest on bitcoin holdings)
Coinffeine and Bitsquare Decentralized bitcoin exchanges
Keybase and Bitrated Identity & Reputation management
Bitmesh and Telehash Mesh networking
JoyStream BitTorrent client with paid seeding
MORPHiS Decentralized, encrypted internet
Storj and Sia Decentralized file storage
Streamium and Faradam Pay in real time for on-demand services
Abra Global P2P money transmitter network
bitSIM PIN secure hardware token between SIM & Phone
Identifi Decentralized address book w/ ratings system
Coinometrics Institutional-level Bitcoin Data & Research
Blocktrail and BitGo Multisig bitcoin API
Bitcore Open source Bitcoin javascript library
Insight Open source blockchain API
Leet Kill your friends and take their money ;)

Bitcoin Units

One Bitcoin is quite large (hundreds of £/$/€) so people often deal in smaller units. The most common subunits are listed below:
Unit Symbol Value Info
millibitcoin mBTC 1,000 per bitcoin SI unit for milli i.e. millilitre (mL) or millimetre (mm)
microbitcoin μBTC 1,000,000 per bitcoin SI unit for micro i.e microlitre (μL) or micrometre (μm)
bit bit 1,000,000 per bitcoin Colloquial "slang" term for microbitcoin
satoshi sat 100,000,000 per bitcoin Smallest unit in bitcoin, named after the inventor
For example, assuming an arbitrary exchange rate of $500 for one Bitcoin, a $10 meal would equal:
For more information check out the Bitcoin units wiki.
Still have questions? Feel free to ask in the comments below or stick around for our weekly Mentor Monday thread. If you decide to post a question in /Bitcoin, please use the search bar to see if it has been answered before, and remember to follow the community rules outlined on the sidebar to receive a better response. The mods are busy helping manage our community so please do not message them unless you notice problems with the functionality of the subreddit. A complete list of bitcoin related subreddits can be found here
Note: This is a community created FAQ. If you notice anything missing from the FAQ or that requires clarification you can edit it here and it will be included in the next revision pending approval.
Welcome to the Bitcoin community and the new decentralized economy!
submitted by BinaryResult to Bitcoin [link] [comments]

I wrote a 30,000 ft. "executive summary" intro document for cryptos. Not for you, for your non-technical parents or friends.

This document was originally written for my dad, an intelligent guy who was utterly baffled about the cryptocurrency world. The aim was to be extremely concise, giving a broad overview of the industry and some popular coins while staying non-technical. For many of you there will be nothing new here, but recognize that you are in the 0.001% of the population heavily into crypto technology.
I've reproduced it for Reddit below, or you can find the original post here on my website. Download the PDF there or hit the direct link: .PDF version.
Donations happily accepted:
ETH: 0x4e03Bf5CCE3eec4Ddae4d3d6aAD46ca4f198AeD6 BTC: 1GqWMZRRygRJJWYYTWHkAVoRcgyQHjgBMZ XMR: 42Y1S1KBoPk381kc7hA68zaiC78BxMoCADjLrFcTdWiE7ejhZc49s1t9i7P2EmTnHsLDiKoSUiogCbLVHXRJxjrCT4WG8ic XRB: xrb_1bpzh745s9kzk8ymfnks3jtdi65ayumdstokzd4yw4ohu3fopxmiocjcntcu 

Background

This document is purely informational. At the time of writing there are over 1000 cryptocurrencies (“cryptos”) in a highly volatile, high risk market. Many of the smaller “altcoins” require significant technical knowledge to store and transact safely. I advise you to carefully scrutinize each crypto’s flavor of blockchain, potential utility, team of developers, and guiding philosophy, before making any investment [1] decisions. With that out of the way, what follows are brief, extremely high-level summaries of some cryptos which have my interest, listed in current market cap order. But first, some info:
Each crypto is a different implementation of a blockchain network. Originally developed as decentralized digital cash, these technologies have evolved into much broader platforms, powering the future of decentralized applications across every industry in the global economy. Without getting into the weeds, [2] most cryptos work on similar principles:
Distributed Ledgers Each node on a blockchain network has a copy of every transaction, which enables a network of trust that eliminates fraud. [3]
Decentralized “Miners” comprise the infrastructure of a blockchain network. [4] They are monetarily incentivized to add computing power to the network, simultaneously securing and processing each transaction. [5]
Peer-to-peer Cryptos act like digital cash-- they require no third party to transact and are relatively untraceable. Unlike cash, you can back them up.
Global Transactions are processed cheaply and instantly, anywhere on Earth. Using cryptos, an African peasant and a San Francisco engineer have the same access to capital, markets, and network services.
Secure Blockchains are predicated on the same cryptographic technology that secures your sensitive data and government secrets. They have passed seven years of real-world penetration testing with no failures. [6]

Bitcoin (BTC)

The first cryptocurrency. As with first movers in any technology, there are associated pros and cons. Bitcoin has by far the strongest brand recognition and deepest market penetration, and it is the only crypto which can be used directly as a currency at over 100,000 physical and web stores around the world. In Venezuela and Zimbabwe, where geopolitical events have created hyperinflation in the centralized fiat currency, citizens have moved to Bitcoin as a de facto transaction standard. [7]
However, Bitcoin unveiled a number of issues that have been solved by subsequent cryptos. It is experiencing significant scaling issues, resulting in high fees and long confirmation times. The argument over potential solutions created a rift in the Bitcoin developer community, who “forked” the network into two separate blockchains amidst drama and politicking in October 2017. Potential solutions to these issues abound, with some already in place, and others nearing deployment.
Bitcoin currently has the highest market cap, and since it is easy to buy with fiat currency, the price of many smaller cryptos (“altcoins”) are loosely pegged to its price. This will change in the coming year(s).

Ethereum (ETH)

Where Bitcoin is a currency, Ethereum is a platform, designed as a foundational protocol on which to develop decentralized applications (“Dapps”). Anyone can write code and deploy their program on the global network for extremely low fees. Just like Twitter wouldn’t exist without the open platform of the internet, the next world-changing Dapp can’t exist without Ethereum.
Current Dapps include a global market for idle computing power and storage, peer-to-peer real estate transactions (no trusted third party for escrow), identity networks for governments and corporations (think digital Social Security card), and monetization strategies for the internet which replace advertising. Think back 10 years to the advent of smartphones, and then to our culture today-- Ethereum could have a similar network effect on humanity.
Ethereum is currently the #2 market cap crypto below Bitcoin, and many believe it will surpass it in 2018. It has a large, active group of developers working to solve scaling issues, [8] maintain security, and create entirely new programming conventions. If successful, platforms like Ethereum may well be the foundation of the decentralized internet of the future.

Ripple (XRP)

Ripple is significantly more centralized than most crypto networks, designed as a backbone for the global banking and financial technology (“fintech”) industries. It is a network for exchanging between fiat currencies and other asset classes instantly and cheaply, especially when transacting cross-border and between separate institutions. It uses large banks and remittance companies as “anchors” to allow trading between any asset on the network, and big names like Bank of America, American Express, RBC, and UBS are partners. The utility of this network is global and massive in scale.
It is extremely important to note that not all cryptos have the same number of tokens. Ripple has 100 Billion tokens compared to Bitcoin’s 21 Million. Do not directly compare price between cryptos. XRP will likely never reach $1k, [9] but the price will rise commensurate with its utility as a financial tool.
In some sense, Ripple is anathema to the original philosophical vision of this technology space. And while I agree with the cyberpunk notion of decentralized currencies, separation of money and state, this is the natural progression of the crypto world. The internet was an incredible decentralized wild west of Usenet groups and listservs before Eternal September and the dot-com boom, but its maturation affected every part of global society.

Cardano (ADA)

Cardano’s main claim to fame: it is the only crypto developed using academic methodologies by a global collective of engineers and researchers, built on a foundation of industry-leading, peer-reviewed cryptographic research. The network was designed from first-principles to allow scalability, system upgrades, and to balance the privacy of its users with the security needs of regulators.
One part of this ecosystem is the Cardano Foundation, a Swiss non-profit founded to work proactively with governments and regulatory bodies to institute legal frameworks around the crypto industry. Detractors of Cardano claim that it doesn’t do anything innovative, but supporters see the academic backing and focus on regulation development as uniquely valuable.

Stellar Lumens (XLM)

Stellar Lumens and Ripple were founded by the same person. They initially shared the same code, but today the two are distinct in their technical back-end as well as their guiding philosophy and development goals. Ripple is closed-source, for-profit, deflationary, and intended for use by large financial institutions. Stellar is open-source, non-profit, inflationary, and intended to promote international wealth distribution. As such, they are not direct competitors.
IBM is a major partner to Stellar. Their network is already processing live transactions in 12 currency corridors across the South Pacific, with plans to process 60% of all cross-border payments in the South Pacific’s retail foreign exchange corridor by Q2 2018.
Beyond its utility as a financial tool, the Stellar network may become a competitor to Ethereum as a platform for application development and Initial Coin Offerings (“ICOs”). The theoretical maximum throughput for the network is higher, and it takes less computational power to run. The Stellar development team is highly active, has written extensive documentation for third-party developers, and has an impressive list of advisors, including Patrick Collison (Stripe), Sam Altman (Y Combinator), and other giants in the software development community.

Iota (IOT)

Iota was developed as the infrastructure backbone for the Internet of Things (IoT), sometimes called the machine economy. As the world of inanimate objects is networked together, their need to communicate grows exponentially. Fridges, thermostats, self-driving cars, printers, planes, and industrial sensors all need a secure protocol with which to transact information.
Iota uses a “Tangle” instead of a traditional blockchain, and this is the main innovation driving the crypto’s value. Each device that sends a transaction confirms two other transactions in the Tanlge. This removes the need for miners, and enables unique features like zero fees and infinite scalability. The supply of tokens is fixed forever at 2.8*1015, a staggeringly large number (almost three thousand trillion), and the price you see reported is technically “MIOT”, or the price for a million tokens.

Monero (XMR)

The most successful privacy-focused cryptocurrency. In Bitcoin and most other cryptos, anyone can examine the public ledger and trace specific coins through the network. If your identity can be attached to a public address on that network, an accurate picture of your transaction history can be built-- who, what, and when. Monero builds anonymity into the system using strong cryptographic principles, which makes it functionally impossible to trace coins, [10] attach names to wallets, or extract metadata from transactions. The development team actively publishes in the cryptography research community.
Anonymous transactions are not new-- we call it cash. Only in the past two decades has anonymity grown scarce in the first-world with the rise of credit cards and ubiquitous digital records. Personal data is becoming the most valuable resource on Earth, and there are many legitimate reasons for law-abiding citizens to want digital privacy, but it is true that with anonymity comes bad actors-- Monero is the currency of choice for the majority of black market (“darknet”) transactions. Similarly, US Dollars are the main vehicle for the $320B annual drug trade. An investment here should be based on the underlying cryptographic research and technology behind this coin, as well as competitors like Zcash. [11]

RaiBlocks (XRB)

Zero fees and instantaneous transfer make RaiBlocks extremely attractive for exchange of value, in many senses outperforming Bitcoin at its original intended purpose. This crypto has seen an explosion in price and exposure over the past month, and it may become the network of choice for transferring value within and between crypto exchanges.
Just in the first week of 2018: the CEO of Ledger (makers of the most popular hardware wallet on the market) waived the $50k code review fee to get RaiBlocks on his product, and XRB got listed on Binance and Kucoin, two of the largest altcoin exchanges globally. This is one to watch for 2018. [12]

VeChain (VEN)

Developed as a single answer to the problem of supply-chain logistics, VeChain is knocking on the door of a fast-growing $8 trillion industry. Every shipping container and packaged product in the world requires constant tracking and verification. A smart economy for logistics built on the blockchain promises greater efficiency and lower cost through the entire process flow.
Don’t take my word for it-- VeChain has investment from PwC (5th largest US corporation), Groupe Renault, Kuehne & Nagel (world’s largest freight company), and DIG (China’s largest wine importer). The Chinese government has mandated VeChain to serve as blockchain technology partner to the city of Gui’an, a special economic zone and testbed for China’s smart city of the future. This crypto has some of the strongest commercial partnerships in the industry, and a large active development team.
  1. “Investment” is a misnomer. Cryptos are traded like securities, but grant you no equity (like trading currency).
  2. The weeds for Bitcoin: basic intro (1:36), non-technical explanation (5:24), Bitcoin 101 – Andreas Antonopoulos (23:51).
  3. It is impossible to double-spend or create a fake transaction, as each ledger is confirmed against every other ledger.
  4. Some utility token blockchains use DAG networks or similar non-linear networks which don’t require mining.
  5. In practice, these are giant warehouses full of specialized computers constantly processing transactions. Miners locate to the cheapest electricity source, and the bulk of mining currently occurs in China.
  6. Centralized second-layer exchange websites have been hacked, but the core technology is untouched.
  7. This effect has been termed "bitcoinization".
  8. The Ethereum roadmap shows moving from a Proof of Work (PoW) to Proof of Stake (PoS) consensus model.
  9. At $2.62 per XRP token, Ripple already commands a $100B market cap.
  10. After a January 2017 update.
  11. Monero uses ring signatures while Zcash uses ZK-SNARKs to create anonymity. Both have pros and cons.
  12. Note: all signs point to this crypto being renamed “Nano” in the coming weeks: nano.co.
submitted by jhchawk to CryptoCurrency [link] [comments]

/r/Bitcoin FAQ - Newcomers please read

Welcome to the /Bitcoin Sticky FAQ

You've probably been hearing a lot about Bitcoin recently and are wondering what's the big deal? Most of your questions should be answered by the resources below but if you have additional questions feel free to ask them in the comments.
Some great introductions for new users are My first bitcoin, Bitcoin explained and ELI5 Bitcoin. Also, the following videos are a good starting point for understanding how bitcoin works and a little about its long term potential:
Also have to give mention to Lopp.net, the Princeton crypto series and James D'Angelo's Bitcoin 101 Blackboard series. Some excellent writing on Bitcoin's value proposition and future can be found at the Satoshi Nakamoto Institute. Bitcoin statistics can be found here, here and here. Developer resources can be found here, here and here. Peer-reviewed research papers can be found here. Potential upcoming protocol improvements here. Scaling resources here. The number of times Bitcoin was declared dead by the media can be found here (LOL!), and of course Satoshi Nakamoto's whitepaper that started it all! :)
Key properties of bitcoin

Where can I buy bitcoins?

Bitcoin.org, BuyBitcoinWorldwide.com and Howtobuybitcoin.io are helpful sites for beginners. You can buy or sell any amount of bitcoin and there are several easy methods to purchase bitcoin with cash, credit card or bank transfer. Some of the more popular resources are below, also, check out the bitcoinity exchange resources for a larger list of options for purchases.
Bank Transfer Credit / Debit card Cash
Gemini Bitstamp LocalBitcoins
Bitstamp Bitit Mycelium LocalTrader
BitFinex Cex.io LibertyX
Cex.io CoinMama WallofCoins
Xapo Spectrocoin BitcoinOTC
Kraken Luno BitQuick
itBit
HitBTC
Bitit
Bisq (decentralized)
Luno
Spectrocoin
Here is a listing of local ATMs. If you would like your paycheck automatically converted to bitcoin use Bitwage.
Note: Bitcoins are valued at whatever market price people are willing to pay for them in balancing act of supply vs demand. Unlike traditional markets, bitcoin markets operate 24 hours per day, 365 days per year. Preev is a useful site that that shows how much various denominations of bitcoin are worth in different currencies. Alternatively you can just Google "1 bitcoin in (your local currency)".

Securing your bitcoins

With bitcoin you can "Be your own bank" and personally secure your bitcoins OR you can use third party companies aka "Bitcoin banks" which will hold the bitcoins for you.
Android iOs Desktop
Samouari BreadWallet Electrum
Another interesting use case for physical storage/transfer is the Opendime. Opendime is a small USB stick that allows you to spend Bitcoin by physically passing it along so it's anonymous and tangible like cash.
Note: For increased security, use Two Factor Authentication (2FA) everywhere it is offered, including email!
2FA requires a second confirmation code to access your account, usually from a text message or app, making it much harder for thieves to gain access. Google Authenticator and Authy are the two most popular 2FA services, download links are below. Make sure you create backups of your 2FA codes.
Google Auth Authy
Android Android
iOS iOS

Where can I spend bitcoins?

Check out spendabit or bitcoin directory for some good options, some of the more commons ones are listed below.
Store Product
Gyft Gift cards for hundreds of retailers including Amazon, Target, Walmart, Starbucks, Whole Foods, CVS, Lowes, Home Depot, iTunes, Best Buy, Sears, Kohls, eBay, GameStop, etc.
Steam, HumbleBundle, Games Planet, itch.io, g2g and kinguin For when you need to get your game on
Microsoft Xbox games, phone apps and software
Spendabit, Overstock, The Bitcoin Directory and BazaarBay Retail shopping with millions of results
ShakePay Generate one time use Visa cards in seconds
NewEgg and Dell For all your electronics needs
Bitwa.la, Coinbills, Piixpay, Bitbill.eu, Bylls, Coins.ph, Bitrefill, LivingRoomofSatoshi, Hyphen.to, Coinsfer, More #1, #2 Bill payment
Menufy, Takeaway, Thuisbezorgd NL, Pizza For Coins Takeout delivered to your door!
Expedia, Cheapair, Lot, Destinia, BTCTrip, Abitsky, SkyTours, Fluege the Travel category on Gyft and 9flats For when you need to get away
BitHost VPS service
Cryptostorm, Mullvad, and PIA VPN services
Namecheap, Porkbun For new domain name registration
Stampnik Discounted USPS Priority, Express, First-Class mail postage
Reddit Gold Premium membership which can be gifted to others
Coinmap and AirBitz are helpful to find local businesses accepting bitcoins. A good resource for UK residents is at wheretospendbitcoins.co.uk.
There are also lots of charities which accept bitcoin donations, such as Wikipedia, United Way, ACLU and the EFF. You can find a longer list here.

Merchant Resources

There are several benefits to accepting bitcoin as a payment option if you are a merchant;
If you are interested in accepting bitcoin as a payment method, there are several options available;

Can I mine bitcoin?

Mining bitcoins can be a fun learning experience, but be aware that you will most likely operate at a loss. Newcomers are often advised to stay away from mining unless they are only interested in it as a hobby similar to folding at home. If you want to learn more about mining you can read more here. Still have mining questions? The crew at /BitcoinMining would be happy to help you out.
If you want to contribute to the bitcoin network by hosting the blockchain and propagating transactions you can run a full node using this setup guide. Bitseed is an easy option for getting set up. You can view the global node distribution here.

Earning bitcoins

Just like any other form of money, you can also earn bitcoins by being paid to do a job.
Site Description
WorkingForBitcoins, Bitwage, XBTfreelancer, Cryptogrind, Bitlancerr, Coinality, Bitgigs, /Jobs4Bitcoins, Rein Project Freelancing
OpenBazaar, Purse.io, Bitify, /Bitmarket, 21 Market Marketplaces
Streamium.io, XOtika.tv NSFW, /GirlsGoneBitcoin NSFW Video Streaming
Bitasker, BitforTip Tasks
Supload.com, SatoshiBox, JoyStream, File Army File/Image Sharing
CoinAd, A-ads, Coinzilla.io Advertising
You can also earn bitcoins by participating as a market maker on JoinMarket by allowing users to perform CoinJoin transactions with your bitcoins for a small fee (requires you to already have some bitcoins)

Bitcoin Projects

The following is a short list of ongoing projects that might be worth taking a look at if you are interested in current development in the bitcoin space.
Project Description
Lightning Network, Amiko Pay, and Strawpay Payment channels for network scaling
Blockstream, Rootstock and Drivechain Sidechains
21, Inc. Open source library for the machine payable web
ShapeShift.io Trade between bitcoins and altcoins easily
Open Transactions, Counterparty, Omni, Open Assets, Symbiont and Chain Financial asset platforms
Hivemind and Augur Prediction markets
Mediachain Decentralized media library
Tierion and Factom Records & Titles on the blockchain
BitMarkets, DropZone, Beaver and Open Bazaar Decentralized markets
Samourai and Dark Wallet - abandoned Privacy-enhancing wallets
JoinMarket CoinJoin implementation (Increase privacy and/or Earn interest on bitcoin holdings)
Coinffeine and Bisq Decentralized bitcoin exchanges
Keybase and Bitrated Identity & Reputation management
Telehash Mesh networking
JoyStream BitTorrent client with paid seeding
MORPHiS Decentralized, encrypted internet
Storj and Sia Decentralized file storage
Streamium Pay in real time for on-demand services
Abra Global P2P money transmitter network
bitSIM PIN secure hardware token between SIM & Phone
Identifi Decentralized address book w/ ratings system
BitGo Multisig bitcoin API
Bitcore Open source Bitcoin javascript library
Insight Open source blockchain API
Leet Kill your friends and take their money ;)

Bitcoin Units

One Bitcoin is quite large (hundreds of £/$/€) so people often deal in smaller units. The most common subunits are listed below:
Unit Symbol Value Info
millibitcoin mBTC 1,000 per bitcoin SI unit for milli i.e. millilitre (mL) or millimetre (mm)
microbitcoin μBTC 1,000,000 per bitcoin SI unit for micro i.e microlitre (μL) or micrometre (μm)
bit bit 1,000,000 per bitcoin Colloquial "slang" term for microbitcoin
satoshi sat 100,000,000 per bitcoin Smallest unit in bitcoin, named after the inventor
For example, assuming an arbitrary exchange rate of $10000 for one Bitcoin, a $10 meal would equal:
For more information check out the Bitcoin units wiki.
Still have questions? Feel free to ask in the comments below or stick around for our weekly Mentor Monday thread. If you decide to post a question in /Bitcoin, please use the search bar to see if it has been answered before, and remember to follow the community rules outlined on the sidebar to receive a better response. The mods are busy helping manage our community so please do not message them unless you notice problems with the functionality of the subreddit. A complete list of bitcoin related subreddits can be found here
Note: This is a community created FAQ. If you notice anything missing from the FAQ or that requires clarification you can edit it here and it will be included in the next revision pending approval.
Welcome to the Bitcoin community and the new decentralized economy!
submitted by BinaryResult to Bitcoin [link] [comments]

PSA: Neutrino (BIP 157 block filtering protocol) VS. Neutrino (Coinbase acquired hacking team company)

There is an open PR to merge the BIP 157 aka Neutrino light client block filter protocol
tldr; Neutrino block filtering protocol will allow mobile non-custodial LN wallets to exist because it can shrink the disk space required to fully validate on-chain tx to only 3.8 GB (variable but small number < 1gb) which can sync to the tip of the blockchain in under an hour! This is means even years old mobile phones can easily handle client side verification. This is VERY GOOD.
Do not get it confused with the Neutrino Company coinbase recently acquired and the whole hacking team fiasco.
The important Neutrino to remember is BIP 157 neutrino.
edit: as dr_win pointed out the 3.8gb is actually what is required for bitcoin full nodes to support neutrino clients. Neutrino clients will actually require some variable storage space much less than 3.8gb number. The # of wallets and txs for those wallets on the device running neutrino client will impact the amount of data that needs storing.
This made it to the front page so...
Bonus Content:
Andreas Antonopoulos Discusses Neutrino on LTB
https://letstalkbitcoin.com/blog/post/lets-talk-bitcoin-389-revisiting-lightning-part-1
Adam B. Levine: Andreas, have you looked into neutrino much?
Andreas Antonopoulos: Yeah, I've actually been running neutrino as well for a while. This is a really amazing development. It's a massive improvement over the old model - the model isn't really the SPV that's described in the Bitcoin whitepaper. Basically what it does is it allows you to send a compressed set that describes the transactions that are in a block, send that to a light client, so that it can request to receive any blocks that have transactions of interest to it. It can download the full block or the full transaction set only for those things that it's interested in, while not telling the nodes that it's connected to what it's interested in. That's a massive increase in privacy. This is not just for Lightning, that's important to understand. Neutrino can be used as a light client for on-chain Bitcoin transactions to massively increase the privacy of mobile wallets. Of course, it can be used so that you can have a Lightning wallet that's not necessarily connected to your own lightning node, but also doesn't break your privacy.
Adam B. Levine: The entire Bitcoin blockchain can get summarized down to 40 Megs?
Andreas Antonopoulos: Yes, that's for the initial sync. After that, it can continue to get updated summaries that are even smaller (in the kilobyte size) in order to maintain synchronization. So it's doing full validation without having a full copy of the block. Of course, all of this depends on having full nodes that are willing to publish Golomb coded sets to feed to neutrino clients. We still need a lot of people to run full nodes, but the bandwidth burden on those nodes to serve neutrino clients obviously drastically reduced. A single full node can serve a lot of neutrino clients very efficiently.
Lightning Labs Explains Neutrino: https://blog.lightning.engineering/posts/2018/10/17/neutrino.html
submitted by CONTROLurKEYS to Bitcoin [link] [comments]

Two possible solutions to decentralizing mining? Let's discuss

Scope of this post: I am a true believer of Bitcoin. I don't care too much about the price - but I do care, a lot, about the potential it has to change the world for the better. I've got a Bachelor's Degree in Software Development, and a Master's Degree in Cyber Security. I only got into Bitcoin a few months ago, but I'll try utilize my knowledge in this field by trying to contribute as much as I can to the community.
The problem I'll describe and my proposed solutions are simply something I'd like to discuss. I am still new to the cryptoworld, and there is a lot I still don't understand or even know about. I have not yet read the Bitcoin whitepaper in full, but I plan on doing so, in addition to the "Mastering Bitcoin" book authored by Andreas M. Antonopoulos. I know that the problem I mention is far from the only problem we yet need to address with Bitcoin - but I'd really like to zoom-in onto this problem, and this alone. I have no problem with discussing related problems though, and won't see it as an attempt of hijacking this thread.
If your intentions are good and the posts you make are beneficial to the community (and within this subreddit's rules), I'd be happy with anything you post. If anything I've said is false or inaccurate, or you find my ideas to be bad ones, please refrain from just bashing or flaming, and explain why you believe that is the case. I don't think that my ideas here will lead to any changes to Bitcoin Core (I wish I could make that much of a difference!) - but at least let's allow this to be a learning opportunity to learn more about this technology that is still in its infancy. Let's have a serious and mature conversation on this subject, please.
The Problem: To my knowledge, a miner must first download the entire blockchain (140,000 MB (approximately 137 GB) at the time of this writing) and then run the hashing algorithm on each block to verify its integrity. Once this has been done, the miner is then able to receive new transactions on the Network and try to mine the next block. This process requires a minimum of 137 GB of disk space, which will only continue to grow larger as more transactions happen on the blockchain. Large block sizes and the large number of blocks means large quantities of data. Large quantities of data means requiring large disk storage space. Large disk storage space makes it expensive and more difficult for regular users to use regular hardware to mine. This causes the problem where miners are centralized - something we're experiencing at present times.
Proposed Solution #1: Rather than downloading the entire blockchain and holding on to it, the idea is to download data and use it for verification instantly, and then dump that data and re-iterate. Once you have verified the hash up to a certain block, the data itself is not required for mining purposes (it would of course be required for other purposes, such as needing to search for some transaction that took place). If this is indeed doable, then you could utilize as many, or little, disk space as you wish. For instance, if you only have 10 GB of disk space which you'd like to utilize for mining, one could download the first 10 GBs of the blockchain data, generate the hash up until that point, dump the 10 GB of data (while retaining the hash, of course), and re-iterate: put the hashing on hold for a minute, download the next 10 GB of blockchain data, calculate the hash until then (equivalent to running the hash up until the first 20 GBs of data), and again, re-iterate indefinitely, until you've reached the currently last block in the blockchain. All you need, and will ever need, is any fixed amount of data (in this example, 10 GBs). The blockchain can grow as big as it wants without miners requiring to have large amounts of disk space sitting on their hardware. This of course does not solve the problem that a lot of bandwidth is required to download the entire blockchain.
In all honesty, I do not know where the entire blockchain data is being stored. I admit that I have to do more research on this and learn more about it - but, if someone could give a brief explanation / confirmation of this, it would very much be appreciated. Of course, it cannot be stored somewhere central in order to retain its integrity. My assumption is that the miners on the network distribute this data to other miners, apart from verifying new transactions. If this is the case, then you could potentially split the job that miners do into two - A) sharing of blockchain data, and B) verification of transactions. Of course, any miner can do just either one of those tasks, or both. A miner with a lot of bandwidth and storage space can contribute solely to "A", a miner with a lot of computational power but not much bandwidth and/or disk space can contribute solely to "B", while a huge corporatation with a lot of everything (bandwidth, disk space and computational power) can contribute to both "A" and "B" (as is the only current option to mining to date, I believe). Needless to say, the Bitcoin Protocol would need to modified to be capable of rewarding the miners accordingly.
Seperatation of the tasks that miners do ("A" and "B" described previously) helps decentralization. Right now, miners must perform both tasks "A" and "B", and have no option to contribute to the network but performing just one of those two tasks. It's either all or nothing. Seperation of these tasks, however, would allow new miners to join in, and only contribute to "A" or "B" alone if they're unable to participate in both. It opens new opportunities. For instance, for me, electricity in my home country is too expensive to mine Bitcoin, and I don't have ASIC hardware, rendering mining infeasible. I would love to have a small mining rig to be able to participate to the network, but I'd be better off financially by just buying Bitcoins, than mining them. This is a common problem and is true in many countries around the world too. However, if I am able to simply share Blockchain data (uploading it to other miners) at the cost of bandwidth and little electricity (I could leave the client running in the background just when I'm using my PC - no need to have it turned on 24/7), then I would. I would become a miner participating solely in task "A". Right now I cannot do this, as the technology / protocol does not permit me to do so. Yes, I know that the blockchain data would only be downloaded by new miners, so it may be impractible splitting the mining job into two seperate tasks, and running a "Blockchain data sharing client" may be impractible. The 'reward' in BTC can be based on the bandwidth contributed. In the same way that the mining difficulty adjusts automatically depending on the HashPower on the network, maybe it would be needed to adjust the reward depending on available bandwidth for this task.
Proposed Solution #2: Downloading and verifying the entire blockchain is required for integrity - to ensure that the entire blockchain has not, in any way, been tampered with. If one validates the blockchain up until 'Block X', then one can trust all of the data until that point. If one stopped mining today and deleted the blockchain data, and then decided to continue mining a year later, to my understanding, in theory that person wouldn't need to redownload the entire blockchain and validate it from the very beginning. Instead, if the hash up until Block X was known (and stored that value somewhere secure that I could trust hasn't been modified), then one could simply continue off from there.
What if the Bitcoin Protocol was modified in such a way that at certain block intervals (say, every 100,000 blocks), the miner, in addition to validating the transactions and adding the new 50 BTCs to the ledger, would also post the Hash of the blockchain up until that point. However, at such 'milestones', rather than 6 verifications being required, then maybe say 100 or 200 validations would be required for the confirmation of the blockchain data.
New miners could simply find the last 'milestone' that has been validated by A LOT of miners on the network, and continue mining from there - TRUSTING that the Hash up until that milestone is correct, and therefore that all of the transactional information is trustworthy. If the miner does not want to trust the Hash in that milestone, they are always free to download the entire blockchain data and validate the blocks themselves. This is not a replacement of how things are done, but simply an alternative / option.
A Word Of Caution - Security vs Usability / Efficiency: The more we add to the software that the Bitcoin Protocol operates on, and the more complexity we add, the greater the chances of vulnerabilities and the more attack vectors we introduce. A trade-off between security and usability always needs to be found. If my proposed solutions introduce serious risks, then I would be against my own ideas. I'd rather have a secure protocol that we can trust, than one that operates quickly but insecurely. I don't think this thinking needs any debate, and I hope that we all agree on this last note.
Donations? I would love to someday own one full BTC. If you'd like to help me get there, no matter how small your contribution may be, I would very much appreciate it. Send me a private message for my Bitcoin wallet address. I will keep hodling, trying to educate people, or get them to educate themselves on Bitcoin, and will continue to try contribute to the community in the ways I can.
submitted by BitcoinHobbyist to btc [link] [comments]

11 Books about Ethereum/Solidity/Blockchain/Trading.

Greets, everyone.. So I made a list of the best books out there about Ethereum/Solidity/Trading and a few about Blockchain in general to the people that want to get involved deeper and perhaps develop any Dapp or get better at Day trading.
Hope you like it.
Ethereum: Blockchains, Digital Assets, Smart Contracts, Decentralized Autonomous Organizations • by CreateSpace Independent Publishing Platform
Amazon Link
Book Picture
The book aims to help you get your head around blockchains in general and around Ethereum specifically. Since Ethereum is currently the pre-imminent blockchain, it makes sense as reference point. The essential stuff is the same for any blockchain. This text was written for people with a fast grasp, who are not programmers. Reading this should give you the basics to cut through the hype and to identify blockchain opportunities in your professional domain. There are tiny bits of code, which can be admired and skipped.
Introducing Ethereum and Solidity: Foundations of Cryptocurrency and Blockchain Programming for Beginners • by Apress
Amazon Link
Book Picture
Learn how to use Solidity and the Ethereum project – second only to Bitcoin in market capitalization. Blockchain protocols are taking the world by storm, and the Ethereum project, with its Turing-complete scripting language Solidity, has rapidly become a front-runner. This book presents the blockchain phenomenon in context; then situates Ethereum in a world pioneered by Bitcoin.
Mastering Ethereum: Building Smart Contracts and Dapps 1st Edition (Pre Order)
• by Andreas M. Antonopoulos (Author), Gavin Wood (Author)
Amazon Link
Book Picture
With this practical guide, you’ll learn how to create markets, store registries of debts or promises, move funds in accordance with instructions given long in the past (like a will or a futures contract), and many other things that have not been invented yet, all without a middle man or counterparty risk.
Ethereum Programming – August 4, 2017
• by Alex Leverington (Author)
Amazon Link
Book Picture
This book shows you how to build decentralized, resilient, unstoppable apps with Ethereum. We'll start with the basics, what ether is and how to acquire and use it, what DApps are and how they're relevant for developers and businesses of all sizes. Then we dive straight into examples that explore the concepts. Moving on, we'll design and build powerful, unstoppable applications that use Ethereum for their state storage. Finally, you'll see how to test and launch your app to provide resilient, unstoppable, reliable services to your users.
Blockchain Revolution: How the Technology Behind Bitcoin Is Changing Money, Business, and the World • by Don Tapscott , Alex Tapscott ( No1 Best Seller Money & Monetary Policy & Digital Currencies)
Amazon Link
Book Picture
Blockchain is the ingeniously simple, revolution­ary protocol that allows transactions to be simul­taneously anonymous and secure by maintaining a tamperproof public ledger of value. Though it’s the technology that drives bitcoin and other digital cur­rencies, the underlying framework has the potential to go far beyond these and record virtually everything of value to humankind, from birth and death certifi­cates to insurance claims and even votes.
The Business Blockchain: Promise, Practice, and Application of the Next Internet Technology • by William Mougayar (Author), Vitalik Buterin (Foreword)
Amazon Link
Book Picture
The Business Blockchain charts new territory in advancing our understanding of the blockchain by unpacking its elements like no other before. William Mougayar anticipates a future that consists of thousands, if not millions of blockchains that will enable not only frictionless value exchange, but also a new flow of value, redefining roles, relationships, power and governance. In this book, Mougayar makes two other strategic assertions.
Blockchain: Blockchain, Smart Contracts, Investing in Ethereum, FinTech • by Jeff Reed
Amazon Link
Book Picture
Learn About the Emerging World of Financial Technology, and What They Won't Teach You In School.. Jeff Reed has packaged four of his best-selling book so you can learn everything you need to know about financial technology in the 21st Century. By purchasing this book you're getting Blockchain, Smart Contracts, Investing in Ethereum, and Smart Contracts...a sweet 4-in-1 bundle deal (which Jeff considers a steal)!
Investing in Ethereum: The Ultimate Guide to Learning--and Profiting from--Cryptocurrencies • by Oscar Flyn
Amazon Link
Book Picture
Ethereum is now one of the hottest platforms to trade cryptocurrency on today. It’s growing by leaps and bounds every day, and it offers a different range of services that Bitcoin just doesn’t deliver. It’s also fairly simple to understand and is a low to no cost system to start on. Now, in this book, you’ll get the inside look at this new and virtually untapped network--. You’ll learn all about Ethereum, it’s amazing benefits, its relationship to bitcoin, its decentralized nature, and the potential pitfalls to watch out for.
The Internet of Money • by Andreas M. Antonopoulos
Amazon Link
Book Picture
Andreas goes beyond exploring the technical functioning of the bitcoin network by illuminating bitcoin’s philosophical, social, and historical implications. As the internet has essentially transformed how people around the world interact and has permanently impacted our lives in ways we never could have imagined, bitcoin -- the internet of money -- is fundamentally changing our approach to solving social, political, and economic problems through decentralized technology.
Ethereum: A look into the world of Ethereum and how to trade and invest this cryptocurrency! • by Ben Abner
Amazon Link
Book Picture
You’re about to discover how to... I want to thank you for downloading the book, Ethereum Trade and Investment. This book contains all the information that you need to know about Ethereum in a compact and to the point format. The book is targeted toward people who love to learn about investing, trade and new money making opportunities.
Mastering Bitcoin: Unlocking Digital Cryptocurrencies 1st Edition • by Andreas M. Antonopoulos
Amazon Link
Book Picture
Mastering Bitcoin is essential reading for everyone interested in learning about bitcoin basics, the technical operation of bitcoin, or if you're building the next great bitcoin killer app or business. From using a bitcoin wallet to buy a cup of coffee, to running a bitcoin marketplace with hundreds of thousands of transactions, or collaboratively building new financial innovations that will transform our understanding of currency and credit, this book will help you engineer money. You're about to unlock the API to a new economy. This book is your key.
Edit: 1 Book added Suggested by: scarpoochi
Digital Gold: Bitcoin and the Inside Story of the Misfits and Millionaires Trying to Reinvent Money • by Nathaniel Popper
Amazon Link
Book Picture
Bitcoin, the landmark digital money and financial technology, has spawned a global social movement with utopian ambitions. The notion of a new currency, maintained by the computers of users around the world, has been the butt of many jokes, but that has not stopped it from growing into a technology worth billions of dollars, supported by the hordes of followers who have come to view it as the most important new idea since the creation of the Internet.
Msg me if you want me to add another book (affiliate links)
submitted by bjarkespades to ethtrader [link] [comments]

Should Bitcoin be with "Free Software" or "The Meme Hustler" (I mean O'Reilly)?

Edit3:
Let's lobby Andreas to ditch O'Reilly. He should publish it on his website for download and invite bitcoin donation instead of this association with O'Reilly!
Edit2:
  1. Andreas Antonopoulos who is loved in the Bitcoin community has published a bitcoin book with O'Reilly.
  2. Bitcoin as such is a free software.
  3. O'Reilly is known to be against free software.
  4. Hence kind of opposing Andreas Antonopoulos, in favour of Richard Stallman and Satoshi Nakamoto.
Edit1: I used to love Andreas though now a bit skeptical of his views (sounds like mtgox in the making)! See http://www.reddit.com/Bitcoin/comments/21qh6t/who_are_the_most_reputable_leaders_within_the/cgfjljy
Original:
Considering the posts:
http://thebaffler.com/past/the_meme_hustler
TL;DR: http://www.reddit.com/Bitcoin/comments/21o9ci/mastering_bitcoin_oreilly_media/cgf9atk
and
http://www.reddit.com/Bitcoin/comments/21o9ci/mastering_bitcoin_oreilly_media/
I am currently for "Richard Stallman" and "Satoshi Nakamoto" eventhough Bitcoin is released under MIT and not GPL (license)!
submitted by ajvw to Bitcoin [link] [comments]

Subreddit Stats: Bitcoin top posts from 2017-10-15 to 2018-10-14 18:01 PDT

Period: 364.20 days
Submissions Comments
Total 1000 265073
Rate (per day) 2.75 722.33
Unique Redditors 812 63529
Combined Score 3662639 3145604

Top Submitters' Top Submissions

  1. 74796 points, 2 submissions: Tricky_Troll
    1. The last 3 months in 47 seconds. (48474 points, 790 comments)
    2. Bitcoin Doesn't Give a Fuck. (26322 points, 1505 comments)
  2. 50907 points, 3 submissions: LeeWallis
    1. It's official! 1 Bitcoin = $10,000 USD (48506 points, 4587 comments)
    2. It's official! 1 Bitcoin = $10,000 USD (again) (1233 points, 123 comments)
    3. Bitcoin just reached $7,000 USD on GDAX! (1168 points, 359 comments)
  3. 49298 points, 2 submissions: chronic_nervosa
    1. Working Hard or Hardly Working? (25721 points, 326 comments)
    2. Investing Tips from a Pro (23577 points, 598 comments)
  4. 44144 points, 2 submissions: wolfwolfz
    1. It's over 9000!!! (42429 points, 3170 comments)
    2. Mtgox caused 2013 and 2018 crash (1715 points, 425 comments)
  5. 42048 points, 1 submission: buttockpain
    1. Everyone who's trading BTC right now (42048 points, 804 comments)
  6. 41614 points, 3 submissions: PineappleFund
    1. I'm donating 5057 BTC to charitable causes! Introducing The Pineapple Fund (20020 points, 2927 comments)
    2. Farewell from the Pineapple Fund (10944 points, 610 comments)
    3. 🍍 $4mil will fund MDMA trials for PTSD; marked 'Breakthrough Therapy' by FDA. Pineapple Fund is matching MAPS donations 1:1. Reddit, let's make history by crowdfunding an incredible treatment for PTSD, in bitcoin! (10650 points, 558 comments)
  7. 41269 points, 4 submissions: Xtreme110
    1. Bitcoin.. The King (28328 points, 1178 comments)
    2. So here's what actually happened Today. (8542 points, 301 comments)
    3. So Yeah This Happened .. (2330 points, 215 comments)
    4. Did someone Asked for Support levels... (2069 points, 224 comments)
  8. 29323 points, 1 submission: KINNAHZ
    1. I hope James is doing well (29323 points, 1242 comments)
  9. 29123 points, 1 submission: trance929
    1. Weeeeeeee! (29123 points, 1530 comments)
  10. 28063 points, 1 submission: benjaminikuta
    1. Nothing can increase by that much and still be a good investment. (28063 points, 1318 comments)
  11. 27600 points, 5 submissions: Suberg
    1. Rabobank Fined $369M for Money Laundering After Calling Bitcoin a Risk for Money Laundering (14264 points, 312 comments)
    2. Ellen DeGeneres Just Introduced Bitcoin to Her 3 Million US Viewers (7893 points, 619 comments)
    3. Evidence Emerges of CNBC Collusion with Roger Ver, BCash (2665 points, 526 comments)
    4. Reminder: Encrypt and store your bitcoin offline - U.S. Congress Quietly Passes CLOUD Act to Increase Gov't Access to Online Info (1688 points, 277 comments)
    5. 600+ Bitcoin Users Seek Lawsuit Against Bitcoin.com & CEO Roger Ver for Fraud (1090 points, 298 comments)
  12. 26949 points, 1 submission: Kittstar123
    1. This is why I want bitcoin to hit $10,000 (26949 points, 918 comments)
  13. 24897 points, 2 submissions: sunilross
    1. What he would be wishing now? 😂 (22418 points, 954 comments)
    2. Just a few months ago Bitcoin going to $10,000 was a huge celebration Now Bitcoin is at $10,000 and its like the end of the world. What an irony!! (2479 points, 1016 comments)
  14. 24555 points, 8 submissions: TheGreatMuffin
    1. This Bitcoin chart is insane! Oh, wait… that’s actually a chart of US dollar money printing. (8202 points, 1165 comments)
    2. Coinbase Hit With Class Action Claiming Insiders Benefited From 'Bitcoin Cash' Launch (5370 points, 493 comments)
    3. "Anonymous bitcoin donor rains $56 million on stunned nonprofits" (story about The Pinapple Fund) (3331 points, 199 comments)
    4. Odds of winning Powerball (Lottery) vs guessing one bitcoin private key (by @Coinguybri) (2008 points, 260 comments)
    5. Andreas Antonopoulos' depiction of the day he became aware of the donations that made him a millionaire (1878 points, 214 comments)
    6. McAfee doubles down on his promise: "I now predict Bitcoin at $1 million by the end of 2020. I will still eat my dick if wrong." (1387 points, 329 comments)
    7. Federal courts now accepting cryptocurrency for bail (1288 points, 62 comments)
    8. The first Stable version of BTCPay is out: BTCPayServer 1.0.1.1 and NBXplorer 1.0.1.3. Next stable version will include Lightning Network. (by Nicolas Dorier) (1091 points, 103 comments)
  15. 23962 points, 6 submissions: Mobilenewsflash
    1. Difference between New and Experienced Trader (11900 points, 181 comments)
    2. Did you know? I didn't. (4127 points, 294 comments)
    3. Altcoin Master (3555 points, 145 comments)
    4. All we need is this kind of bull run! (2125 points, 122 comments)
    5. Bitcoin isn't the bubble, it's the pin (1199 points, 310 comments)
    6. Simple answer, the right one (1056 points, 230 comments)
  16. 23651 points, 3 submissions: UniqueUsername642
    1. Cheers! (17238 points, 510 comments)
    2. This is Cryptocurrency (5072 points, 371 comments)
    3. Bitcoin Investors be like (1341 points, 335 comments)
  17. 23082 points, 1 submission: jrs0080
    1. Whoever put this up deserves a medal (23082 points, 319 comments)
  18. 23066 points, 1 submission: vindico_silenti
    1. BTC dropping due to lack of quality 11k memes. Closest support line is at 9k Vegeta memes. (23066 points, 820 comments)
  19. 22856 points, 1 submission: danielwilson666
    1. Bitcoin today (22856 points, 1940 comments)
  20. 22657 points, 1 submission: byte_coder
    1. 2018: lets run for office (22657 points, 991 comments)
  21. 22193 points, 1 submission: Hync
    1. Lily Allen turned down 200K in Bitcoins for a gig in 2009 which is worth $1,426,199,000 as of this writing (22193 points, 1293 comments)
  22. 21505 points, 1 submission: paperraincoat
    1. Eleven! (21505 points, 575 comments)
  23. 21044 points, 1 submission: SotakuKun
    1. How To Invest In Bitcoin (21044 points, 634 comments)
  24. 20817 points, 1 submission: MichKOG
    1. Almost everyone now is an Investor (20817 points, 554 comments)
  25. 20647 points, 10 submissions: Bastiat
    1. Day 2: I will repost this guide daily until available solutions like Segwit & order batching are adopted, the mempool is empty once again, and transaction fees are low. You can help. Take action today (5145 points, 766 comments)
    2. Pierre Rochard: "Until your altcoin successfully defeats a coordinated attack like NYA/S2X, with 90% of the hashrate and major businesses trying to force a hard fork, its immutability is untested and its monetary policy is suspect. Bitcoin has earned its keep, its immutability is beyond question" (2249 points, 345 comments)
    3. Day 9: I will post this guide regularly until available solutions like SegWit, order batching, and Lightning payment channels are mass adopted, the mempool is empty once again, and tx fees are low. Have you done your part? (2070 points, 190 comments)
    4. Day 5: I will post this guide regularly until available solutions like SegWit & order batching are mass adopted, the mempool is empty once again, and transaction fees are low. User demand from this community can help lead to some big changes. Have you joined the /Bitcoin SegWit effort? (2017 points, 268 comments)
    5. Day 7: I will post this guide regularly until available solutions like SegWit & order batching are mass adopted, the mempool is empty once again, and tx fees are low. Do you want low tx fees, because this is how you get low tx fees (1959 points, 166 comments)
    6. Day 3: I will repost this guide daily until available solutions like SegWit & order batching are mass adopted, the mempool is empty once again, and transaction fees are low. ARE YOU PART OF THE SOLUTION? News: Unconfirmed TX's @ 274K, more exchanges adding SegWit, Core prioritizes SegWit GUI (1758 points, 220 comments)
    7. Coinbase's short-sighted money grab is @Gemini.com's gain. Trust is the number one concern for new adopters and nobody can trust CONBASE after today (1689 points, 383 comments)
    8. Day 8: I will post this guide regularly until available solutions like SegWit, order batching, and Lightning payment channels are mass adopted, the mempool is empty once again, and tx fees are low. BTC Core SegWit GUI coming May 1, Coinbase incompetence exposed, more exchanges deploy SegWit (1454 points, 177 comments)
    9. Day 6: I will post this guide regularly until available solutions like SegWit & order batching are mass adopted, the mempool is empty once again, and tx fees are low. Refer a friend to SegWit today. There's no $10 referral offer, but you'll both get lower fees and help strengthen the BTC protocol (1193 points, 99 comments)
    10. If every Bitcoin tx was a SegWit tx today, we'd have 8,000 tx blocks & the tx backlog would disappear. Tx fees would be almost non-existent once again. THE NEXT BITCOIN TX YOU MAKE, MAKE IT A SEGWIT TX. DOWNLOAD A SEGWIT COMPATIBLE WALLET AND OPEN A SEGWIT COMPATIBLE EXCHANGE ACCOUNT RIGHT NOW (1113 points, 228 comments)
  26. 20159 points, 1 submission: swahlgren
    1. Danish Bitcoin billionaire new sponsor of professional Danish ice hockey team. Stadium to be renamed "Bitcoin Arena" and get a huge Bitcoin logo in the middle of the ice! (20159 points, 1018 comments)
  27. 20119 points, 4 submissions: bitchari
    1. Value is always in the eyes of the beholder (10999 points, 542 comments)
    2. We did it!! BTC ✌️ (4335 points, 333 comments)
    3. Uncomfortable truths!! (3228 points, 451 comments)
    4. "rat poison" returns!! (1557 points, 234 comments)
  28. 19767 points, 1 submission: Active2017
    1. $7,900+!! (am i doing this right?) (19767 points, 493 comments)
  29. 18709 points, 1 submission: JonathanMauri
    1. Sold some bitcoin to buy my new best bud 🤗 (18709 points, 1752 comments)
  30. 17979 points, 1 submission: crlxzzz
    1. Localbitcoins.com is illegally holding my 9.3 bitcoin on "escrow" since may 2015 (17979 points, 802 comments)
  31. 17806 points, 6 submissions: domelane
    1. FORBES: "South Korea Is Not Banning Bitcoin Trade, Financial Regulators Clarify". (8349 points, 245 comments)
    2. Banks vs Bitcoin (2370 points, 311 comments)
    3. Arizona Senate Votes to Accept Tax Payments in Bitcoin (2363 points, 134 comments)
    4. Visa confirms Coinbase wasn’t at fault for overcharging users (1854 points, 92 comments)
    5. Finally! Coinbase: "Our engineering team has finished testing of SegWit for Bitcoin on Coinbase. We will be starting a phased launch to customers over the next few days and are targeting a 100% launch to all customers by mid next week". (1501 points, 112 comments)
    6. For all the newbies posting: "Bitcoin will crash on Monday! Wall Street is buying to short it to hell!", watch Andreas (Member of the Oversight Board of the CME Futures) to calm your tits. (1369 points, 322 comments)
  32. 17749 points, 2 submissions: BluntLord
    1. possibly the worst thing about this crash... (11631 points, 2540 comments)
    2. Reasons why these price increases are NOT a good thing. no FUD, all facts. (6118 points, 394 comments)
  33. 17228 points, 1 submission: ma_Name_Is_Jefffff
    1. To the new guys, let's see how tough you really are (17228 points, 1371 comments)
  34. 17117 points, 4 submissions: ayanamirs
    1. Don't be this guy (11774 points, 728 comments)
    2. Satoshi Nakamoto about bitcoin.com (2337 points, 313 comments)
    3. SegWit transactions are now 30.71%! (1892 points, 198 comments)
    4. SegWit, Lightning Network, and Schnorr are way more important than the current price. (1114 points, 166 comments)
  35. 16889 points, 1 submission: bitnext
    1. There are 180 different scenarios where bitcoin go. If any one thing happens remember me i am the first one to predict this (16889 points, 452 comments)
  36. 16350 points, 1 submission: YetAnotherCryptoFan
    1. Warren Buffet: (16350 points, 990 comments)
  37. 16128 points, 1 submission: lewjc
    1. Quick analysis of the markets this month (16128 points, 349 comments)
  38. 15721 points, 1 submission: bitiegg
    1. Guys... I'm out... (15721 points, 814 comments)
  39. 15216 points, 1 submission: CryptoCurrencyFreak
    1. The Free Software Foundation has received a 91.45 Bitcoin donation from the Pineapple Fund. Valued at $1 Million USD. (15216 points, 423 comments)
  40. 15144 points, 4 submissions: StoneHammers
    1. exceedingly efficient (7954 points, 205 comments)
    2. Behold my 20 Bitcoin lawnmower bought mid 2012 (4214 points, 289 comments)
    3. This could change everything (1900 points, 68 comments)
    4. Bitcoin today (1076 points, 114 comments)
  41. 14847 points, 1 submission: cryptograffiti
    1. Upvote to get this to the top search result for "Bitcoin CEO." (14847 points, 265 comments)
  42. 14823 points, 6 submissions: Bitzone4
    1. Mood Currently. (6084 points, 448 comments)
    2. Hodlers currently (2882 points, 314 comments)
    3. Lets goooo yes bitcoin (2362 points, 280 comments)
    4. Holders Power (1444 points, 160 comments)
    5. Meanwhile when there's blood in the street. (1032 points, 106 comments)
    6. Who else took the discount opportunity? (1019 points, 209 comments)
  43. 14808 points, 1 submission: ltc-
    1. What a time to be alive! (14808 points, 467 comments)
  44. 14807 points, 1 submission: nrckprth
    1. When you are trying to buy the dip (14807 points, 660 comments)
  45. 14761 points, 2 submissions: zackwong97
    1. Quick grab the offer! (12316 points, 835 comments)
    2. 100 years has past and a new currency was discovered. I believe cryptocurrency can save the world. (2445 points, 221 comments)
  46. 14624 points, 1 submission: lawmaster99
    1. Microsoft joins Steam and stops accepting Bitcoin payments (14624 points, 2163 comments)
  47. 14236 points, 1 submission: kixxaxxas
    1. Yeah! Bitcoin! (14236 points, 496 comments)
  48. 13950 points, 1 submission: EaFaer
    1. Us Senate Bill S.1241 to criminalize concealed ownership of Bitcoin (13950 points, 1621 comments)
  49. 13929 points, 7 submissions: finalhedge
    1. Apple co-founder Steve Wozniak: “Bitcoin is mathematical. I am a mathematician. There are only 21 million. It is more legitimate than other systems” (3984 points, 487 comments)
    2. Mum knows best (2474 points, 149 comments)
    3. Wall Street Journal has gone from worrying that Bitcoin is a bubble that will crash, to worrying that it's not (2432 points, 440 comments)
    4. Hedge Fund Manager Mark Yusko: "Only gamble was whether Bitcoin would make if from $0 to $100-- that was the real miracle. Going from $4,000 to $400,000 is easy" (1755 points, 272 comments)
    5. Those who scoffed at the thought of $1,000 BTC are scoffing at $10,000 BTC and will scoff at $100,000 BTC (1163 points, 342 comments)
    6. Barry Silbert could make Bitcoin soar to $7,000+ & his own Assets Under Management to $1.5B+ with 1 tweet: call off SegWit2X & uncertainty will be out of the market. (1074 points, 189 comments)
    7. Google gets it. (1047 points, 46 comments)
  50. 13912 points, 4 submissions: readish
    1. Bitcoin is going to do to banks what email did the post office and Amazon did to retail. (7194 points, 1137 comments)
    2. ... hey, Coinbase... (3293 points, 492 comments)
    3. Yes, please! (2342 points, 325 comments)
    4. Calling Bitcoin Cash the "real" Bitcoin is straightforward fraud, and will financially wreck many new investors entering the ecosystem by buying a fake coin. So, exposing frauds is a nice thing to do for other people to prevent them from falling for those scams. (1083 points, 400 comments)
  51. 13876 points, 1 submission: theymos
    1. Don't invest recklessly (13876 points, 1972 comments)
  52. 13839 points, 1 submission: virtualwoman0
    1. Thank you Coinbase!! For taking sooo long to validate my identity, my account, and my bank transfers...your endless delays prevented me from investing in the crypto market before the crash! (13839 points, 556 comments)
  53. 13817 points, 2 submissions: xcryptogurux
    1. Don't be like Greg (9887 points, 370 comments)
    2. Lesson - History of Bitcoin crashes (3930 points, 1676 comments)
  54. 13546 points, 2 submissions: D3M0Sthenes
    1. Can you feel the Pumpening? (12469 points, 436 comments)
    2. There's always that guy at the party (1077 points, 61 comments)
  55. 13507 points, 2 submissions: pc_to_mac_user
    1. Keeping Coinbase on their toes - Robinhood adds no-fee crypto trading! (12040 points, 909 comments)
    2. Coinbase CEO: In the next 3–5 years, you will see countries going into economic crisis and could see the organic adoption of cryptocurrencies (1467 points, 363 comments)
  56. 13489 points, 3 submissions: Godfreee
    1. It was a sad day when we had to retire this meme from our wall after 3.5 years. Next one will have an added zero! (10196 points, 237 comments)
    2. Back in 2013, a single subway sandwich shop accepting Bitcoin got airtime on CNBC, and we were all jumping for joy. Nowadays we get full TV features about Bitcoin and people are like " yawn, could be better". (2020 points, 110 comments)
    3. This magazine cover came out exactly 30 years ago - same day Bitcoin was released 9 years ago. Was Satoshi that meta? 2018 is gonna be a helluva ride. (1273 points, 301 comments)
  57. 13293 points, 2 submissions: ccjunkiemonkey
    1. Sixty free lectures from Princeton on bitcoin and cryptocurrencies. Total time 13hr 20min. Links in post. (12259 points, 206 comments)
    2. Don't panic, just learn. Sixty free lectures from Princeton on bitcoin and cryptocurrencies. Total time 13hr 20min. Links in post. (1034 points, 97 comments)
  58. 12875 points, 1 submission: DebtFreeMFers
    1. Guys, I am out (12875 points, 1572 comments)
  59. 12651 points, 1 submission: lriccardo
    1. I spent 3 months building one of the best apps to track cryptocurrencies. Exchanges API sync, wallet tracking and many other features. I am not 16 but I invested a lot of time into this, can I get some attention anyway or am I going to get randomly downvoted as always? The app is also free. (12651 points, 1563 comments)
  60. 12558 points, 3 submissions: agent9747
    1. How to transfer Bitcoin from Coinbase for free! (10322 points, 809 comments)
    2. Stop hating on Coinbase (1210 points, 563 comments)
    3. My Cryptocurrency app is starting to look good :D It will be available soon-ish (1026 points, 193 comments)
  61. 12489 points, 1 submission: tune_down
    1. Insider tip: BTC is going to skyrocket in the next 48 hours (12489 points, 741 comments)
  62. 12328 points, 1 submission: i_mash_shoryuken
    1. This month in Bitcoin. (12328 points, 371 comments)
  63. 12069 points, 1 submission: Ev1lyv35
    1. This hurts me in a different level. (12069 points, 593 comments)
  64. 11898 points, 4 submissions: tinaclark90
    1. I've made some free Bitcoin Icons (4747 points, 246 comments)
    2. Thought I might share this in here. No way Bitcoin is going to survive folks... (4657 points, 824 comments)
    3. New Free Bitcoin Icons (1285 points, 71 comments)
    4. Bitcoin Icons (100% Free) (1209 points, 64 comments)
  65. 11618 points, 1 submission: timbroddin
    1. 9 years ago block 0 was mined. Happy birthday Bitcoin! (11618 points, 455 comments)
  66. 11429 points, 1 submission: tomerux
    1. We waited for that... (11429 points, 186 comments)
  67. 11381 points, 1 submission: sykhlo
    1. And that's why we need limited supply. (11381 points, 803 comments)
  68. 11357 points, 2 submissions: sbrdx
    1. Bitcoiners be like 😂 (9418 points, 413 comments)
    2. When you HODL through a bear market (1939 points, 108 comments)
  69. 11339 points, 1 submission: CosmosKing98
    1. This is governments trying to regulate bitcoin. (11339 points, 549 comments)
  70. 11198 points, 1 submission: Ryamgram
    1. <---- Number of Hodlers with Strong Hands (11198 points, 1127 comments)
  71. 11079 points, 2 submissions: ForeverDutch92
    1. Dutch national newspaper urges people to sell all their Bitcoins as it undermines the government, could destabilise the economy and reduces the power of central banks. Sounds like a reason to buy to me 🤔 (9843 points, 986 comments)
    2. We really need to start pushing for SegWit support. Stop waiting for the Lightning Network to fix everything. (1236 points, 318 comments)
  72. 11063 points, 5 submissions: amorpisseur
    1. South Korean gov't "shocked" at the number of citizens requesting the removal of Justice Minister and Finance Minister for market manipulation (4015 points, 236 comments)
    2. BREAKING: TD Ameritrade to allow bitcoin futures trading Monday (2571 points, 234 comments)
    3. "Microsoft and Starbucks signed on to use the new platform for payments and accept BTC" (2190 points, 330 comments)
    4. We found who's spamming the mempool (1162 points, 207 comments)
    5. Lightning Network progress: 72 out of 75 tests pass! (1125 points, 562 comments)
  73. 11010 points, 1 submission: Sam767679
    1. Legendary story by John McAfee (11010 points, 472 comments)
  74. 10959 points, 1 submission: InteractiveLedger
    1. This is NOT OK. Upvote for visibility (10959 points, 1505 comments)
  75. 10750 points, 1 submission: singularityissonear
    1. Time to invest! (10750 points, 329 comments)
  76. 10749 points, 1 submission: broscientologist
    1. I made a decision tree for everyone panic selling. (10749 points, 896 comments)
  77. 10688 points, 1 submission: K_owar_D
    1. They never told me that buying the lambo would be the easy part... (10688 points, 495 comments)
  78. 10626 points, 1 submission: bigbenxx
    1. Checking the Bitcoin price at work: (10626 points, 328 comments)
  79. 10419 points, 1 submission: EMC2_trooper
    1. I see it every day. (10419 points, 289 comments)
  80. 10330 points, 1 submission: LAH92
    1. The latecomer’s BTC journey (10330 points, 271 comments)
  81. 10324 points, 1 submission: old-man-blorp
    1. It would be so easy then (10324 points, 222 comments)
  82. 10187 points, 1 submission: mrtambourineman89
    1. BTC Grandpa already doubled his profit. (10187 points, 597 comments)
  83. 10027 points, 2 submissions: David3692
    1. Looking at the price when you invested only what you can afford to lose (7560 points, 744 comments)
    2. Trying to explain to the wife why we should buy more now (2467 points, 260 comments)

Top Commenters

  1. viper2097 (11931 points, 7 comments)
  2. TarAldarion (6814 points, 3 comments)
  3. gonzobon (6174 points, 95 comments)
  4. cxr303 (5782 points, 29 comments)
  5. Annu_Naki (5537 points, 1 comment)
  6. nightspy1309 (5501 points, 1 comment)
  7. stevoli (5476 points, 4 comments)
  8. PineappleFund (5450 points, 45 comments)
  9. gregschoen (5426 points, 21 comments)
  10. gkikoria (5353 points, 1 comment)
  11. StarfighterF104gv2 (5320 points, 2 comments)
  12. devonthed00d (5228 points, 47 comments)
  13. typtyphus (5186 points, 174 comments)
  14. LeeWallis (4989 points, 19 comments)
  15. Graphesium (4956 points, 1 comment)
  16. SirBastian (4640 points, 2 comments)
  17. zomgitsduke (4617 points, 176 comments)
  18. bluethunder1985 (4586 points, 133 comments)
  19. anumoshsad (4494 points, 3 comments)
  20. MagicalTux (4480 points, 111 comments)
  21. Mateo113 (4456 points, 3 comments)
  22. dolan_trumpf (4398 points, 3 comments)
  23. domelane (4157 points, 44 comments)
  24. walloon5 (4143 points, 307 comments)
  25. prelsidente (4088 points, 91 comments)
  26. gozaamaya (4029 points, 5 comments)
  27. maaku7 (3976 points, 63 comments)
  28. basmith7 (3950 points, 1 comment)
  29. Agastopia (3869 points, 6 comments)
  30. toxonaut (3756 points, 1 comment)
  31. Speaking-of-segues (3707 points, 117 comments)
  32. PuckFoloniex (3701 points, 37 comments)
  33. isoldmywifeonEbay (3676 points, 100 comments)
  34. mpbh (3558 points, 14 comments)
  35. tranceology3 (3513 points, 252 comments)
  36. Opfailicon (3493 points, 2 comments)
  37. hallizh (3448 points, 3 comments)
  38. 1Bitcoinco (3446 points, 22 comments)
  39. overtoke (3446 points, 14 comments)
  40. coinx-ltc (3401 points, 3 comments)
  41. Shmeh-Shmeh (3365 points, 3 comments)
  42. SternerCrow (3301 points, 22 comments)
  43. Active2017 (3263 points, 35 comments)
  44. mr_li_jr (3204 points, 29 comments)
  45. abolishpmo (3050 points, 19 comments)
  46. Redcrux (3042 points, 10 comments)
  47. lucky_rabbit_foot (3035 points, 41 comments)
  48. FDisk80 (3027 points, 10 comments)
  49. TheGreatMuffin (3009 points, 189 comments)
  50. HazyPeanut (3000 points, 3 comments)
  51. LegendsRoom (2992 points, 58 comments)
  52. 2Panik (2964 points, 5 comments)
  53. fellesh (2952 points, 3 comments)
  54. GenghisKhanSpermShot (2933 points, 171 comments)
  55. suninabox (2929 points, 466 comments)
  56. BlatantConservative (2896 points, 28 comments)
  57. tyrael98 (2891 points, 2 comments)
  58. mbrochh (2890 points, 100 comments)
  59. hungry4donutz (2866 points, 3 comments)
  60. WhoNeedsFacts (2809 points, 2 comments)
  61. greatbawlsofire (2792 points, 2 comments)
  62. pg3crypto (2791 points, 67 comments)
  63. Anon7216 (2791 points, 13 comments)
  64. togetherwem0m0 (2789 points, 64 comments)
  65. StrictlyOffTheRecord (2787 points, 4 comments)
  66. jonivaio (2777 points, 3 comments)
  67. BTCChampion (2752 points, 11 comments)
  68. yung_yas (2752 points, 3 comments)
  69. Chowdahhhh (2744 points, 4 comments)
  70. ADustedEwok (2723 points, 8 comments)
  71. CONTROLurKEYS (2715 points, 303 comments)
  72. strange_fate (2671 points, 36 comments)
  73. Downvotesohoy (2664 points, 6 comments)
  74. daghanerdonmez (2646 points, 5 comments)
  75. Saschb2b (2633 points, 1 comment)
  76. ebaley (2627 points, 1008 comments)
  77. catVdog123 (2619 points, 67 comments)
  78. ducksauce88 (2593 points, 280 comments)
  79. leroyyrogers (2593 points, 39 comments)
  80. PM_UR_UGLY_SWEATERS (2582 points, 9 comments)
  81. Cryptolution (2575 points, 310 comments)
  82. CryptoBobs (2530 points, 3 comments)
  83. Beckneard (2527 points, 39 comments)
  84. gbitg (2515 points, 85 comments)
  85. Kooriki (2511 points, 220 comments)
  86. ILikeToSayHi (2475 points, 24 comments)
  87. SPOKANARCHY (2472 points, 1 comment)
  88. letterboxmind (2469 points, 102 comments)
  89. lawmaster99 (2447 points, 30 comments)
  90. Reverend_James (2445 points, 74 comments)
  91. time_wasted504 (2439 points, 88 comments)
  92. TheBoyChris (2432 points, 4 comments)
  93. Frogolocalypse (2409 points, 518 comments)
  94. lriccardo (2388 points, 119 comments)
  95. __Vet__ (2372 points, 53 comments)
  96. ep1939 (2358 points, 133 comments)
  97. BBA935 (2339 points, 22 comments)
  98. Marcion_Sinope (2333 points, 210 comments)
  99. beamybeams (2323 points, 12 comments)
  100. Sawyeee (2309 points, 2 comments)

Top Submissions

  1. It's official! 1 Bitcoin = $10,000 USD by LeeWallis (48506 points, 4587 comments)
  2. The last 3 months in 47 seconds. by Tricky_Troll (48474 points, 790 comments)
  3. It's over 9000!!! by wolfwolfz (42429 points, 3170 comments)
  4. Everyone who's trading BTC right now by buttockpain (42048 points, 804 comments)
  5. I hope James is doing well by KINNAHZ (29323 points, 1242 comments)
  6. Weeeeeeee! by trance929 (29123 points, 1530 comments)
  7. Bitcoin.. The King by Xtreme110 (28328 points, 1178 comments)
  8. Nothing can increase by that much and still be a good investment. by benjaminikuta (28063 points, 1318 comments)
  9. This is why I want bitcoin to hit $10,000 by Kittstar123 (26949 points, 918 comments)
  10. Bitcoin Doesn't Give a Fuck. by Tricky_Troll (26322 points, 1505 comments)

Top Comments

  1. 11914 points: viper2097's comment in I hope James is doing well
  2. 9195 points: deleted's comment in possibly the worst thing about this crash...
  3. 6799 points: TarAldarion's comment in It's official! 1 Bitcoin = $10,000 USD
  4. 6589 points: deleted's comment in Nothing can increase by that much and still be a good investment.
  5. 6158 points: deleted's comment in My brother killed himself because of BTC
  6. 5537 points: Annu_Naki's comment in What he would be wishing now? 😂
  7. 5501 points: nightspy1309's comment in BTC dropping due to lack of quality 11k memes. Closest support line is at 9k Vegeta memes.
  8. 5410 points: stevoli's comment in Insider tip: BTC is going to skyrocket in the next 48 hours
  9. 5353 points: gkikoria's comment in Weeeeeeee!
  10. 5325 points: cxr303's comment in Guys, I am out
Generated with BBoe's Subreddit Stats
submitted by subreddit_stats to subreddit_stats [link] [comments]

Andreas Antonopoulos: Bitcoin 2020 Halving, Crisis and #1 DeFi Project Why We Need Bitcoin  Andreas M. Antonopoulos Andreas M Antonopoulos - What Makes Bitcoin So Unstoppable Bitcoin is Dead - Andreas M. Antonopoulos Andreas Antonopoulos - Dealing with Bitcoin Haters

“Mastering Bitcoin is the best technical reference available on bitcoin today. And bitcoin is likely to be seen in retrospect as the most important technology of this decade. As such, this book is an absolute must-have for any developer, especially those interested in building applications with the bitcoin protocol. Highly recommended.” Mastering Bitcoin by Andreas M. Antonopoulos is a freely-available book on Bitcoin published in 2015 by O'Reilly Media.. Mastering Bitcoin is a digital currency best seller and has been translated by volunteers into more than 10 languages.The second edition added 30% more content covering topics such as SegWit, SIGHASH types and the Lightning Network (Chapters 6 and 7). Download Mastering Bitcoin: Programming the Open Blockchain 2nd Edition by Andreas M. Antonopoulos free epub PDF ** Ardbark is currently replacing all links on the site with direct downloads. Andreas M. Antonopoulos The bitcoin and open blockchain expert. About. Videos. Audio. Unscrypted. Let’s Talk Bitcoin. Books. Events. ... Will the Drop in Oil Prices Impact Bitcoin Mining? 07:25. 38. Bitcoin Q&A: Why Can't Bitcoin Mining Difficulty Adjust a Little Quicker? ... Why I'm writing 'Mastering Ethereum' 08:35. 21. Ethereum Q&A: Gas ... Mastering Bitcoin: Programming the Open Blockchain (2nd ed.) by Andreas M. Antonopoulos. ... To download and read this eBook on a PC or Mac: Adobe Digital Editions (This is a free app specially developed for eBooks. It's not the same as Adobe Reader, which you probably already have on your computer.)

[index] [49884] [51794] [51449] [67174] [41966] [48308] [8881] [59195] [55254] [57865]

Andreas Antonopoulos: Bitcoin 2020 Halving, Crisis and #1 DeFi Project

Andreas is the author of three books: “Mastering Bitcoin,” published by O’Reilly Media and considered the best technical guide to bitcoin, “Mastering Ethereum: Building Smart Contracts and ... Andreas M Antonopoulos - What Makes Bitcoin So Unstoppable Today I am joined by the legendary Andreas M Antonopoulos. We discuss everything you need to know about Bitcoin, Ethereum, open ... Andreas Antonopoulos, one of the leading and most inspiring figures in the space. ... Mastering Bitcoin and Mastering Ethereum, he also published a series of books called: The Internet of Money ... In this interview, I talk to Andreas M. Antonopoulos to find out. Andreas is a speaker and the best selling author of Mastering Bitcoin and The Internet of Money and is unrivalled in evangelising ... Andreas is the author of three books: “Mastering Bitcoin,” published by O’Reilly Media and considered the best technical guide to bitcoin, “Mastering Ethereum: Building Smart Contracts and ...

https://forex-korea.peoplegoldmining.pw