From 38412cc2195e4cffdfb557dcd03c82d0ab81713b Mon Sep 17 00:00:00 2001 From: Shannon Appelcline Date: Thu, 23 Mar 2017 14:02:19 -0700 Subject: [PATCH] Added --- 3_0_Playing_with_Bitcoin-CLI.md | 14 ------------- 3_0_Understanding_Your_Bitcoin_Setup.md | 27 +++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 14 deletions(-) delete mode 100644 3_0_Playing_with_Bitcoin-CLI.md create mode 100644 3_0_Understanding_Your_Bitcoin_Setup.md diff --git a/3_0_Playing_with_Bitcoin-CLI.md b/3_0_Playing_with_Bitcoin-CLI.md deleted file mode 100644 index 804c150..0000000 --- a/3_0_Playing_with_Bitcoin-CLI.md +++ /dev/null @@ -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). diff --git a/3_0_Understanding_Your_Bitcoin_Setup.md b/3_0_Understanding_Your_Bitcoin_Setup.md new file mode 100644 index 0000000..737e51c --- /dev/null +++ b/3_0_Understanding_Your_Bitcoin_Setup.md @@ -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) +