Playing Satoshi - Our kickstarters on a Perl6 self-written Blockchain

in #cryptocurrency7 years ago

Introducing HON - our EscrowChain solution solver cryptocurrency

We are currently doing deep research in order to build our own blockchain. In a previous post we explained the main idea behind HON, a cryptocurrency we wish to create that incentivizes dispute solutions.

Here's the link: https://steemit.com/blockchain/@bitworkers/escrowchain-an-idea-to-build-an-escrow-blockchain-with-arbitration-currency

Right now, we are playing with creation of a genesis block for HON. Here's a draft
Screenshot_20170523_094531.png

And a very, very, very early draft of the code:

unit class Core::Genesis;
use Digest::SHA;

subset Version of Str where * > 0;

class Block {
  has Version $.version = "1.0";
  has $.prev-block = 0;
  has $.merkle-root = 0x3becdcce98e8;
  has $.timestamp = 78787878678;
  has $.bits = 786788989;
  has $.nonce = 877567682019838;
  has $.number-of-transactions = 1;
  has $.input;
  has $.previous-output;
  has $.script-length;
  has $.script-signature;
  has $.sequence;
  has $.outputs;
  has $.value;
  has $.pk-script-length;
  has $.pk-script;
  has $.locktime;

  method say-hello-from-genesis {
    print "Hello, from Genesis. My version is $.version\n";
  }

  method create-genesis {
    if "blocks/bl000000.dat".IO.e { return True; }
    else {
      my $fh = open "blocks/bl000000.dat", :w, :bin;
      my $data = "test data";
      my Blob $sha256 = sha256 $data.encode: 'ascii';
      $fh.write( $sha256 );
      $fh.close;
      return False;
    }
  }
}

#`{ BLOCK COMMENTS
  01000000 - version
  0000000000000000000000000000000000000000000000000000000000000000 - prev block
  3BA3EDFD7A7B12B27AC72C3E67768F617FC81BC3888A51323A9FB8AA4B1E5E4A - merkle root
  29AB5F49 - timestamp
  FFFF001D - bits
  1DAC2B7C - nonce
  01 - number of transactions
  01000000 - version
  01 - input
  0000000000000000000000000000000000000000000000000000000000000000FFFFFFFF - prev output
  4D - script length
  04FFFF001D0104455468652054696D65732030332F4A616E2F32303039204368616E63656C6C6F72206F6E206272696E6B206F66207365636F6E64206261696C6F757420666F722062616E6B73 - scriptsig
  FFFFFFFF - sequence
  01 - outputs
  00F2052A01000000 - 50 BTC
  43 - pk_script length
  4104678AFDB0FE5548271967F1A67130B7105CD6A828E03909A67962E0EA1F61DEB649F6BC3F4CEF38C4F35504E51EC112DE5C384DF7BA0B8D578A4C702B6BF11D5FAC - pk_script
  00000000 - lock time
}

Keep following for further news! And don't forget to subscribe!


EDUARDO CAPANEMA
@bitworkers

Coin Marketplace

STEEM 0.19
TRX 0.15
JST 0.029
BTC 62890.35
ETH 2544.51
USDT 1.00
SBD 2.94