This commit is contained in:
Shannon Appelcline 2017-03-23 14:02:19 -07:00 committed by GitHub
parent 1e5431f802
commit 38412cc219
2 changed files with 27 additions and 14 deletions

View File

@ -1,14 +0,0 @@
# Section Three: Playing with Bitcoin Using bitcoin-cli
This section explains how to begin using Bitcoin from the command line, using bitcoin-cli.
* [Part One: Verifying Your bitcoin-cli Setup](3_1_Verifying_Your_Bitcoin-CLI_Setup.md)
* [Part Two: Setting Up Your Wallet](3_2_Setting_Up_Your_Wallet.md)
* [Part Three: Receiving a Transaction](3_3_Receiving_a_Transaction.md)
* [Interlude: Sending Coins the Easy Way](3_3__Interlude_Sending_Coins_The_Easy_Way.md)
* [Part Four: Sending a Raw Transaction to a P2PKH](3_4_Sending_a_Raw_Transaction_to_a_P2PKH.md)
* [Interlude: Using JQ for Better Parsing](3_4__Interlude_Using_JQ_for_Better_Parsing.md)
* [Interlude: Writing a Raw Transaction the Easy Way](3_4__Interlude_Writing_a_Raw_Transaction_The_Easy_Way.md)
* [Part Five: Sending a Raw Transaction to an OP_RETURN](3_5_Sending_a_Raw_Transaction_to_an_OP_RETURN.md)
This section presumes that you have a VPS with bitcoin installed, running bitcoind. It also presumes that you are connected to testnet, allowing for access to bitcoins without using real funds. You can either do this by hand, per [2.1: Setting up a Bitcoin-Core VPS by Hand](./2_1_Setting_Up_a_Bitcoin-Core_VPS_by_Hand.md), or do it with a Linode StackScript at Linode.com, per [2.2: Setting up a Bitcoin-Core VPS with StackScript](./2_2_Setting_Up_a_Bitcoin-Core_VPS_with_StackScript.md).

View File

@ -0,0 +1,27 @@
# Section Three: Understanding Your Bitcoin Setup
This section lays out the basics of understanding your bitcoin setup and how to use its wallet features.
It presumes that you have a VPS with bitcoin installed, running bitcoind. It also presumes that you are connected to testnet, allowing for access to bitcoins without using real funds. You can either do this by hand, per [2.1: Setting up a Bitcoin-Core VPS by Hand](./2_1_Setting_Up_a_Bitcoin-Core_VPS_by_Hand.md), or do it with a Linode StackScript at Linode.com, per [2.2: Setting up a Bitcoin-Core VPS with StackScript](./2_2_Setting_Up_a_Bitcoin-Core_VPS_with_StackScript.md).
## Objectives for This Section
After working through this section, a developer will be able to:
* Demonstrate that Their Bitcoin Node is Installed and Up-to-date
* Create an Address to Receive Bitcoin funds
* Use Basic Wallet Commands
Supporting objectives include the ability to:
* Understand the Basic Bitcoin File Layout
* Use Basic Informational Commands
* Understand What a Bitcoin Address Is
* Understand What a Wallet Is
## Table of Contents
* [Part One: Verifying Your bitcoin-cli Setup](3_1_Verifying_Your_Bitcoin-CLI_Setup.md)
* [Part Two: Setting Up Your Wallet](3_2_Setting_Up_Your_Wallet.md)
* [Part Three: Receiving a Transaction](3_3_Receiving_a_Transaction.md)