Difference between revisions of "How to create your own cryptocurrency"

From CoinWiki
Jump to: navigation, search
(Creating your Seed Nodes)
(Creating your Seed Nodes)
Line 5: Line 5:
 
This section only applies if you are creating your own blockchain, not if you will only be mining an existing blockchain. Before you can create your blockchain you're going to need seed nodes, basically the place where all other nodes are going to look so that they can update their own chain and find other [[peers]]. You'll need a minimum to two seed nodes to start. For our purposes, we're going to be using $5 / month instances on [https://lightsail.aws.amazon.com/ Amazon Lightsail].  
 
This section only applies if you are creating your own blockchain, not if you will only be mining an existing blockchain. Before you can create your blockchain you're going to need seed nodes, basically the place where all other nodes are going to look so that they can update their own chain and find other [[peers]]. You'll need a minimum to two seed nodes to start. For our purposes, we're going to be using $5 / month instances on [https://lightsail.aws.amazon.com/ Amazon Lightsail].  
  
=== Create Your Instances===
+
=== Create Your Instances ===
 
*Go to [https://lightsail.aws.amazon.com Amazon's Lightsail], if you do not have an account you'll need to create one.
 
*Go to [https://lightsail.aws.amazon.com Amazon's Lightsail], if you do not have an account you'll need to create one.
 
*Click on the "Create Instance" button.
 
*Click on the "Create Instance" button.
Line 17: Line 17:
 
*Now do the exact same thing to your other instance.  
 
*Now do the exact same thing to your other instance.  
 
*Make a note of the two static IP addresses because we will be needing those for our configuration file. You might also need to download your private key from the connect section of your instance because we will use that to login. You can also use the "Connect using SSH" button from the connect section if you'd rather not mess around with keys, SSH apps, etc.
 
*Make a note of the two static IP addresses because we will be needing those for our configuration file. You might also need to download your private key from the connect section of your instance because we will use that to login. You can also use the "Connect using SSH" button from the connect section if you'd rather not mess around with keys, SSH apps, etc.
 +
 +
=== Create Your Configuration File ===
 +
Forknote uses a configuration file that must be the same on all nodes. Creating a configuration file is easy when you use the [http://forknote.net/create/#/ online config file creator].
 +
*'''Blockchain Name:''' Be unique and creative. Your blockchain name should be all lowercase.
 +
*'''Address Prefix:''' All of your coins public addresses will start with this. It's not that important.
 +
*'''Money Supply:''' This number in conjunction with "Coin Decimal Point" will determine how many coins can exist on your blockchain. 18446744073709551615 is the maximum value allowed.
 +
*'''Coin Decimal Point:''' The number of decimal points your coin is allowed to have.
 +
*'''Percent of Premined Coins:''' The percentage of coins that will issued upon mining the genesis block.
 +
*'''Emission Speed Factor:''' CryptoNote rewards smaller and smaller rewards with each block mined. This value defines the emission curve slope.
 +
*'''Difficulty Target:''' This is the ideal amount of time that should go by between mined blocks. If blocks are being mined quicker, difficulty will go up. Transaction confirmation and emission speed both go up when this value is increased. The lower this number is the higher the orphan rate will be.
 +
*'''Genesis Coinbase Transaction Hex:''' Leave this blank, it will be generated for you.
 +
*''''Seed Nodes:''' Add the two IP addresses along with the port number we opened up for the two seed nodes that were created using Lightsail. The format should be IP:PORT, 192.168.1.1:2222 for example.
  
 
== Setting Up Your [[Local Node]] ==
 
== Setting Up Your [[Local Node]] ==

Revision as of 01:17, 8 January 2018

Getting Started

One of the easiest ways to get your own blockchain up and running is with ForkNote, a CryptoNote blockchain fork with easy to setup configuration files. In this tutorial I make a few assumptions; mostly that you are comfortable on the Linux command line, know how to use tools like SSH, and have a basic understanding of networking and computing terminology.

Creating your Seed Nodes

This section only applies if you are creating your own blockchain, not if you will only be mining an existing blockchain. Before you can create your blockchain you're going to need seed nodes, basically the place where all other nodes are going to look so that they can update their own chain and find other peers. You'll need a minimum to two seed nodes to start. For our purposes, we're going to be using $5 / month instances on Amazon Lightsail.

Create Your Instances

  • Go to Amazon's Lightsail, if you do not have an account you'll need to create one.
  • Click on the "Create Instance" button.

Screen Shot 2018-01-05 at 7.57.44 PM.png

  • Select "OS Only", name your instances something meaningful, and create two them.

Screen Shot 2018-01-05 at 8.01.44 PM.png

  • Now we'll need to configure some network options like opening up the ports our nodes will use and adding static IP addresses. Click on your first instance and create a static IP for it.

Screen Shot 2018-01-05 at 8.20.30 PM.png

  • Go back to your home screen, select the same instance, and go into networking. Open TCP port 57575. You can use whatever port you want but for this tutorial this is what we'll be using

Screen Shot 2018-01-05 at 8.24.15 PM.png

  • Now do the exact same thing to your other instance.
  • Make a note of the two static IP addresses because we will be needing those for our configuration file. You might also need to download your private key from the connect section of your instance because we will use that to login. You can also use the "Connect using SSH" button from the connect section if you'd rather not mess around with keys, SSH apps, etc.

Create Your Configuration File

Forknote uses a configuration file that must be the same on all nodes. Creating a configuration file is easy when you use the online config file creator.

  • Blockchain Name: Be unique and creative. Your blockchain name should be all lowercase.
  • Address Prefix: All of your coins public addresses will start with this. It's not that important.
  • Money Supply: This number in conjunction with "Coin Decimal Point" will determine how many coins can exist on your blockchain. 18446744073709551615 is the maximum value allowed.
  • Coin Decimal Point: The number of decimal points your coin is allowed to have.
  • Percent of Premined Coins: The percentage of coins that will issued upon mining the genesis block.
  • Emission Speed Factor: CryptoNote rewards smaller and smaller rewards with each block mined. This value defines the emission curve slope.
  • Difficulty Target: This is the ideal amount of time that should go by between mined blocks. If blocks are being mined quicker, difficulty will go up. Transaction confirmation and emission speed both go up when this value is increased. The lower this number is the higher the orphan rate will be.
  • Genesis Coinbase Transaction Hex: Leave this blank, it will be generated for you.
  • 'Seed Nodes: Add the two IP addresses along with the port number we opened up for the two seed nodes that were created using Lightsail. The format should be IP:PORT, 192.168.1.1:2222 for example.

Setting Up Your Local Node

Creating your local node is exactly the same as setting up your seed nodes, except this is where we will also be creating our wallet and doing our mining.

Creating Your Wallet

Mining

Creating a Mining Pool