Skip to content

Latest commit

 

History

History
60 lines (44 loc) · 2.83 KB

README.md

File metadata and controls

60 lines (44 loc) · 2.83 KB

mitum-currency

CircleCI Documentation GoDoc Go Report Card codecov Total alerts

mitum-currency is the cryptocurrency case of mitum model, based on mitum. This project was started for creating the first model case of mitum, but it can be used for simple cryptocurrency blockchain network (at your own risk).

This repository is for fixed network.

For more details, see the documentation.

Features,

  • account: account address and keypair is not same.
  • simple transaction: creating account, transfer balance.
  • supports multiple keypairs: btc, ethereum, stellar keypairs.
  • mongodb: as mitum does, mongodb is the primary storage.
  • supports multiple currencies

Installation

NOTE: at this time, mitum and mitum-currency is actively developed, so before building mitum-currency, you will be better with building the latest mitum source. $ git clone https://github.com/spikeekips/mitum

and then, add replace github.com/spikeekips/mitum => <your mitum source directory> to go.mod of mitum-currency.

Build it from source

$ cd mitum-currency
$ go build -ldflags="-X 'main.Version=v0.0.1'" -o ./mc ./main.go

Run

At the first time, you can simply start node with example configuration.

To start, you need to run mongodb on localhost(port, 27017).

$ ./mc node init ./standalone.yml
$ ./mc node run ./standalone.yml

Please check $ ./mc --help for detailed usage.

Test

$ go clean -testcache; time go test -race -tags 'test' -v -timeout 20m ./... -run .