EO principles respected here Managed by Zerocracy DevOps By Rultor.com We recommend RubyMine

Build Status Build status PDD status Gem Version Test Coverage

Dependency Status Maintainability

NOTICE: It's an experiment and a very early draft! Please, feel free to submit your ideas or pull requests.

How to Use

Install Ruby 2.2+, Rubygems, and then run:

$ sudo apt-get install ruby-dev rubygems zlib1g-dev
$ gem install zold

Then, either run it as a node:

$ zold node

For more options and commands just run:

$ zold --help

You will need PGP keys in ~/.ssh. To generate them, if you don't have them yet, you can run:

$ ssh-keygen -t rsa -b 4096

Operations

Remote

Each node maintains a list of visible "remote" nodes. The gem is shipped together with a hard-coded list of a few of them.

  • remote update goes through the list of all remote nodes, checks their availability, and either removes them from the list or adds new nodes to the list.

  • remote add <IP> adds a new remote node to the list.

  • remote remove <IP> removes a remote node.

  • remote show prints the entire list of remote nodes.

The node always tries to make sure the summary of all scores in the list of remote nodes is right above the MSS, but not more.

Fetch

The node attempts to pull the wallet from the first remote. The remote returns the wallet, if it exists. Otherwise, rejects the request and returns the list of all remotes known to it.

The node stores the content of the wallet and the score of the remote to the local storage. The local storage doesn't keep all remote copies, but only their unique versions and summary scores for each version.

Fetching stops when:

  • Total score is above MSS or
  • There is only one version and the total score is above ½ MSS.

If not, the node attempts the next remote in the list.

Merge

The remote copy is accepted "as is" without verifications if:

  • All remote copies are identical and
  • Their summary score is above the MSS.

Otherwise, the node goes through the entire list of transactions visible in all remote copies and merges them one by one into the "head" copy. The decision is made per each transaction.

If a transaction exists in the head, it remains there.

Otherwise, if it's a positive transaction that increases the balance of the head copy, the signature is validated (in the paying wallet, which is pulled first) and it goes into the head. The transaction gets a new ID.

If it's a negative transaction, the decision is made between all copies. The one with the largest score goes first, if the balance of the wallet is big enough. Then, the next one in the line and so on. The transactions that negate the balance are rejected.

Pay

The node pulls both wallets. Then, say, the user makes a payment from the wallet 0123456789abcdef to the wallet 4567456745674567:

zold send 0123456789abcdef 4567456745674567 5

The content of both files get changed. An outgoing transaction with a negative amount gets added to the end of the paying wallet 0123456789abcdef:

500;2017-07-19T22:18:43Z;-83886080;4567456745674567;-;b6SKMPrVjLx...

The incoming transaction gets appended to the end of the receiving wallet 4567456745674567:

500;2017-07-19T22:18:43Z;83886080;0123456789abcdef;-

Push

The node sends a package of a few wallets to the biggest remote available (with the highest score). The package must also include a fee to the wallet that belongs to the remote.

The remote stores them as remote copies and performs pull.

The remote sends "pull requests" to all available nodes. They must pull from the node for free, if their scores are lower or equal to the score of the node.

RESTful API

The full list of RESTful resources:

  • / (GET): status page of the node, in JSON

  • /remotes (GET): load all known remotes in JSON

  • /wallet/<ID> (GET): fetch wallet in JSON

  • /wallet/<ID> (PUT): push wallet

Each HTTP response contains Content-type header.

Files

Each wallet is a text file with the name equal to the wallet ID, for example:

12345678abcdef
AAAAB3NzaC1yc2EAAAADAQABAAABAQCuLuVr4Tl2sXoN5Zb7b6SKMPrVjLxb...

34;2017-07-19T21:24:51Z;-560700;98bb82c81735c4ee;for services;SKMPrVjLxbM5oDm0IhniQQy3shF...
35;2017-07-19T21:25:07Z;-56990;98bb82c81735c4ee;;QCuLuVr4Tl2sXoN5Zb7b6SKMPrVjLxb...
134;2017-07-19T21:29:11Z;647388;18bb82dd1735b6e9;;
36;2017-07-19T22:18:43Z;-884733;38ab8fc8e735c4fc;for fun;2sXoN5Zb7b6SKMPrVjLxb7b6SKMPrVjLx...

Lines are separated by either CR or CRLF, doesn't matter. There is a header and a ledger, separated by an empty line. The header includes two lines:

  • Wallet ID, a 64-bit unsigned integer;
  • Public RSA key of the wallet owner.

The ledger includes transactions, one per line. Each transaction line contains fields separated by a semi-colon:

  • Transaction ID, an unsigned 16-bit integer;
  • Date and time, in ISO 8601;
  • Amount (integer);
  • Wallet ID of the beneficiary;
  • Details: /[a-zA-Z0-9 -.]{1,128}/;
  • RSA signature of the sender of "ID;amount;beneficiary;details" text.

Transactions with positive amount don't have RSA signatures. Their IDs point to ID fields of corresponding beneficiaries' wallets.

The combination "ID+Beneficiary" is unique in the entire wallet.

The directory .zold is automatically created and contains system data.

.zold/remotes is a comma-separated file with a list of remote nodes with these columns:

  • Address or IP;
  • TCP port (usually 4096);
  • Score (positive integer);
  • Time of score update, ISO 8601.

.zold/copies is a directory of directories, named after wallet IDs, each of which contains copies of wallets, named like 1, 2, 3, etc. Also, each sub-directory contains a comma-separated file scores with these columns:

  • The name of the copy, e.g. 1;
  • The address of the remote (host name or IP);
  • The TCP port number of the remote;
  • The score (positive integer);
  • The time of fetching, in ISO 8601.