Dynamic Proof of Stake

Overview

The DarkFi blockchain is based off proof of stake privacy focused Ouroboros Crypsinous, tunned with a discrete controller to achieve a stable supply.

Blockchain

Blockchain is a series of epochs: it's a tree of chains, , , , , the chain ending in a single leader per slot single finalization.

Crypsinous Blockchain is built on top of Zerocash sapling scheme, and Ouroboros Genesis blockchain. Each participant stores its own local view of the Blockchain . is a sequence of blocks (i>0), where each LEAD is a magic word, header is a metadata, and txs is a vector of transaction hash (see appendix). the Block's st is the block data, and h is the hash of that data. the commitment of the newly created coin is: , is slot timestamp, or index. is the coin's serial number revealed to spend the coin. is randomness from random oracle implemented as hash of previous epoch, id derived randomness from . is the NIZK proof of the LEAD statement.

st transactions

the blockchain view is a chain of blocks, each block , while being the merkle tree structure of the validated transactions received through the network, that include transfer, and public transactions.

LEAD statement

for , and for tuple iff:

  • .
  • . note here the nonce of the new coin is deterministically driven from the nonce of the old coin, this works as resistance mechanism to allow the same coin to be eligible for leadership more than once in the same epoch.
  • .
  • path is a valid Merkle tree path to in the tree with the root root.
  • is a valid path to a leaf at position in a tree with a root .
  • note that this process involves burning old coin , minting new of the same value + reward.

validation rules

validation of proposed lead proof as follows:

  • slot index is less than current slot index
  • proposal extend from valid fork chain
  • transactions doesn't exceed max limit
  • signature is valid based off producer public key
  • verify block hash
  • verify block header hash
  • public inputs , are hash of current consensus , and current slot
  • public inputs of target 2-term approximations , are valid given total network stake and controller parameters
  • the competing coin nullifier isn't published before to protect against double spending, before burning the coin.
  • verify block transactions

Epoch

An epoch is a vector of blocks. Some of the blocks might be empty if there is no winning leader. tokens in stake are constant during the epoch.

Leader selection

At the onset of each slot each stakeholder needs to verify if it's the weighted random leader for this slot.

check if the random y output is less than some threshold

This statement might hold true for zero or more stakeholders, thus we might end up with multiple leaders for a slot, and other times no leader. Also note that no node would know the leader identity or how many leaders are there for the slot, until it receives a signed block with a proof claiming to be a leader.

is random nonce generated from the blockchain, is block id

Note that , : the active slot coefficient is the probability that a party holding all the stake will be selected to be a leader. Stakeholder is selected as leader for slot j with probability , is relative stake.

see the appendix for absolute stake aggregation dependent leader selection family of functions.

automating f tuning

the stable consensus token supply is maintained by the help of discrete PID controller, that maintain stabilized occurrence of single leader per slot.

control lottery f tunning parameter

with , , , and e is the error function.

target T n-term approximation

target function is approximated to avoid use of power, and division in zk, since no function in the family of functions that have independent aggregation property achieve avoid it (see appendix).

target function

target fuction T: is relative stake. f is tuning parameter, or the probability of winning have all the stake L is field length

approximation

s is stake, and is total stake.

target T n term approximation

comparison of original target to approximation

approximation comparison to the original

Appendix

This section gives further details about the structures that will be used by the protocol.

Blockchain

FieldTypeDescription
blocksVec<Block>Series of blocks consisting the Blockchain
FieldTypeDescription
versionu8Version
previousblake3HashPrevious block hash
epochu64Epoch
slotu64Slot UID
timestampTimestampBlock creation timestamp
rootMerkleRootRoot of the transaction hashes merkle tree

Block

FieldTypeDescription
magicu8Magic bytes
headerblake3HashHeader hash
txsVec<blake3Hash>Transaction hashes
lead_infoLeadInfoBlock leader information

LeadInfo

FieldTypeDescription
signatureSignatureBlock owner signature
public_inputsVec<pallas::Base>Nizk proof public inputs
serial_numberpallas::Basecompeting coin's nullifier
eta[u8; 32]randomness from the previous epoch
proofVec<u8>Nizk Proof the stakeholder is the block owner
offsetu64Slot offset block producer used
leadersu64Block producer leaders count

Public Inputs

FieldTypeDescription
pkpallas::Baseburnt coin public key
c1_cm_xpallas::Baseburnt coin commitment x coordinate
c1_cm_ypallas::Baseburnt coin commitment y coordinate
c2_cm_xpallas::Baseminted coin commitment x coordinate
c2_cm_ypallas::Baseminted coin commitment y coordinate
cm1_rootpallas::Baseroot of burnt coin commitment in burnt merkle tree
c1_sk_rootpallas::Baseburn coin secret key
snpallas::Baseburnt coin spending nullifier
y_mupallas::Baserandom seed base from blockchain
ypallas::Basehash of random seed, and y_mu, used in lottery
rho_mupallas::Baserandom seed base from blockchain
rhopallas::Basehash of random seed and rho_mu to constrain lottery
sigma1pallas::Basefirst term in 2-terms target approximation.
sigma2pallas::Basesecond term in 2-terms target approximation.

Linear family functions

In the previous leader selection function, it has the unique property of independent aggregation of the stakes, meaning the property of a leader winning leadership with stakes is independent of whether the stakeholder would act as a pool of stakes, or distributed stakes on competing coins. "one minus the probability" of winning leadership with aggregated stakes is , the joint "one minus probability" of all the stakes (each with probability winning aggregated winning the leadership thus:

A non-exponential linear leader selection can be:

Dependent aggregation

Linear leader selection has the dependent aggregation property, meaning it's favorable to compete in pools with sum of the stakes over aggregated stakes of distributed stakes:

let's assume the stakes are divided to stakes of value for , note that , thus competing with single coin of the sum of stakes held by the stakeholder is favorable.

Scalar linear aggregation dependent leader selection

A target function T with scalar coefficients can be formalized as let's assume , and then: then the lead statement is for example for a group order or l= 24 bits, and maximum value of , then lead statement:

Competing max value coins

For a stakeholder with absolute stake, it's advantageous for the stakeholder to distribute stakes on competing coins.

Inverse functions

Inverse lead selection functions doesn't require maximum stake, most suitable for absolute stake, it has the disadvantage that it's inflating with increasing rate as time goes on, but it can be function of the inverse of the slot to control the increasing frequency of winning leadership.

Leader selection without maximum stake upper limit

The inverse leader selection without maximum stake value can be and inversely proportional with probability of winning leadership, let it be called leadership coefficient.

Decaying linear leader selection

As the time goes one, and stakes increase, this means the combined stakes of all stakeholders increases the probability of winning leadership in next slots leading to more leaders at a single slot, to maintain, or to be more general to control this frequency of leaders per slot, c (the leadership coefficient) need to be function of the slot , i.e where is epoch size (number of slots in epoch).

Pairing leader selection independent aggregation function

The only family of functions that are isomorphic to summation on multiplication (having the independent aggregation property) is the exponential function, and since it's impossible to implement in plonk, a re-formalization of the lead statement using pairing that is isomorphic to summation on multiplication is an option.

Let's assume is isomorphic function between multiplication and addition, , thus: then the only family of functions satisfying this is the exponential function

no solution for the lead statement parameters, and constants defined over group of integers.

assume there is a solution for the lead statement parameters and constants defined over group of integers. for the statement , such that S where is the maximum stake value being , following from the previous proof that the family of function having independent aggregation property is the exponential function , and , the smallest value satisfying f is , then note that since thus , contradiction.

Leaky non-resettable beacon

Built on top of globally synchronized clock, that leaks the nonce of the next epoch a head of time (thus called leaky), non-resettable in the sense that the random nonce is deterministic at slot s, while assuring security against adversary controlling some stakeholders.

For an epoch j, the nonce is calculated by hash function H, as:

v is the concatenation of the value in all blocks from the beginning of epoch to the slot with timestamp up to , note that k is a persistence security parameter, R is the epoch length in terms of slots.

toward better decentralization in ouroboros

the randomization of the leader selection at each slot is hinged on the random , , , those three values are derived from , and root of the secret keys, the root of the secret keys for each stakeholder can be sampled, and derived beforehand, but is a response to global random oracle query, so it's security is hinged on .

solution

to break this centralization, a decentralized emulation of functionality for calculation of: note that first transaction in the block, is the proof transaction.