Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 986 Bytes

README.md

File metadata and controls

47 lines (33 loc) · 986 Bytes

Cocol Proof of Work

weekly

Bitcoin style Proof of Work lib written in Crystal

Docs: https://cocol-project.github.io/ccl-pow

Installation

  1. Add the dependency to your shard.yml:
dependencies:
  btcpow:
    github: cocol-project/ccl-pow
  1. Run shards install

Usage

require "ccl-pow"

Mining

CCL::Pow.mine(difficulty: "1d00ffff", for: "my_block_data")

Calculate target based on difficulty bits

CCL::Pow::Utils.calculate_target(from: "1d00ffff")

Contributing

  1. Fork it (https://github.com/cocol-project/ccl-pow/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors