Skip to content

Latest commit

 

History

History
78 lines (47 loc) · 2.05 KB

README.md

File metadata and controls

78 lines (47 loc) · 2.05 KB

Transactional Cryptocurrency Network

Transactional Cryptocurrency Network, TCN, is a simple blockchain and cryptocurrency implemented in Go. TCN supports wallets, block mining, transactions and a distributed network.

Motivation

I decided to start this project as a way to gain a better understanding for blockchain technology. It is a living research project that has loosely implements the bitcoin specification. Anyone interested in building anything stable upon TCN is encouraged to fork it first, since given the reseach project status, backwards breaking changes are likely.

Getting Started

These instructions will help you get TCN installed and gat the initial blockchain created and mine the Genesis block.

Installing

There are 2 methods to install TCN:

Install with go get

go get -u github.com/jplesperance/tcn

Clone the reop and install

cd $GOPATH/src/github.com/jplesperance
git clone https://github.com/jplesperance/tcn
cd tcn
go install -v

Usage

Create the blockchain

When creating the blockchain, you must specify an address, that address will recieve credit(coins) for the mining of the Genesis block

tcn createblockchain -address <wallet-address>

Getting the balance of a wallet

tcn getbalance -address <wallet-address>

Send coins to another wallet

tcn send -to <destination-wallet> -from <source-wallet> -amount <amount of coins to send>

Print all the blocks of the blockchain

tcn printchain

Slack Channel for TCH

TCN Platform Official Slack

Built With

  • BoltDB - BoltDB: embedded k/v database for Go

Contributing

Please read CONTRIBUTING.md

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors