A plasma like chain is described that in the happy case requires constant gas per state transition regardless of the number of transactions included. The operator is heavily constrained by a snark that limits their ability to update the state. The only attacks they can perform are to censor transactions or make data unavailable. In the former case, the users can exit their coins. In the latter, they may also exit and/or the operator can be replaced. In the happy case there is no need for the users to monitor the chain for potential old state exits.
Each leaf in the merkle tree represents a single non-fungible token. Ownership of the token can be transferred from one person to another by updating the public key in the leaf.
Transactions are submitted to the operator, the operator cannot forge transactions as they are verified by the snark, the transactions change the ownership of leafs by providing a signature for the public key in the leaf.
batches multiple transactions into a single merkle root on chain update. Using a snark they prove the update was done correctly succinctly, a proof the smart contract will verify before accepting the new root.
To maintain data availablity, we use a hybrid approach. Firstly we have an on-chain "priority que", which the opperator must answer requests inside a given time limit. If they do not, we can therefore assume data is unavailable. We then disable the operator and begin rolling back the chain until either everyone has withdrawn or a new operator is selected.
address_bits
(leaf index) - uniquely identifies a leafTo be used as a reference, or to straight up borrow code from:
The 'Root' contract handles the following:
If the current operator fails to process the priority que inside the time limit they are slashed and we begin exiting users from processing the most recent states first.
Unlike plasma we know that each state is leagal. So we can process the previous state without any time limits. We can also resurect the chain from a previously known state with a different operator.
To do this we hold a reverse auction where at each block new opeartors can bid for the position the highest bit in the most recent block is selected as the operator.
Adding an item to the queue requires a fee, fees need to be burned so nobody can abuse the queue, if we have a fee and we pay it to the operator the operator can abuse the queue for free etc. Nobody has any advantage, anybody adding request to the list has to pay a certain amount.
Has the leaf been 'exited', once exited its value is zero, null, void etc.
function isLeafNullified(
uint32 address_bits
) returns (bool);
When the operator is compliant, a user can exit without challenge if the user proves ownership of an ethereum address in the leaf.
event ExitSuccessful(uint32 address_bits);
function userFastExit(
uint256 root,
uint32 address_bits,
uint256[] path
);
To make a 'quick exit', the user submits a transaction which proves ownership of the ethereum address in the leaf.
,-------^------,
| |
LHS RHS
,--------^---------,
| |
pubkey address(exiter)
When msg.sender == exiter
, the 'quick exit' is possible. This can be verified without checking the leaf signature.
Not going to zero out the leaf, will have the user 'fast exit', but there will be a delay window of 1 or 2 epochs before exits can happen.
The merkle root is never updated on-chain.
Add leaf to the exit queue, for the 'slow path', where the normal plasma challenge window applies.
event ExitRequested( uint256 root, uint32 leaf_address );
function userRequestExit(
uint256 root,
uint32 address_bits,
uint256[] path,
uint256[] leaf_pubkey_xy,
uint256 leaf_rhs
uint256 sig_S,
uint256 sig_R
) payable;
Emits ExitRequested
when arguments are validated.
The root
must be one the most recent root.
The address bits is used as the left/right for the path, and also uniquely identifies the leaf index.
This confirms that the user owns the leaf (via sig_S
and sig_R
), that the root
is a valid block, and that the leaf exists in that block.
This request is put into a queue. Only one exit request can exist for any one leaf, it must be for the tip of the tree.
function operatorPublish(
uint256 previous_root,
uint256 new_root );
Operator wants to stop being the operator, they want their bond back, and want another operator to gracefully take-over.
TODO: specify API for operator replacement / roll-up.
Cannot reduce the deposit for the operator, must be equal or greater.
From a starting merkle root, apply each transaction in a sequence determined by the operator, this results in a new merkle root:
Each transaction
RHS
H(LHS, RHS)
LHS = H(new_pubkey_x, new_pubkey_y)
RHS =
arbitrary data?Notes:
Talk about replay protection in future…
PhABC: shouldnt nonce be replaced by "epoch to be included in"?
HaRold The purpose is a Nonce, but I've outlined a few specific variants (see Questions section immediately below)
By providing the public key X/Y points and the old 'right hand side', we prove that we know the preimage to the leaf.
Then by providing the valid signature we authorise its value to be changed to a new one.
assert leaf == Hash(Hash(Tx.pub.x, Tx.pub.y), Tx.old_RHS)
msg = H(nonce, H(leaf, Tx.new_leaf))
assert eddsa_verify(Tx.pub, msg, Sig.R, Sig.S)
This is performed by the operator to create the merkle paths for each transaction.
Each transaction is applied in-sequence, to generate the merkle paths for the circuit to validate. These paths are provided as auxilliary input to the circuit.
tree = ...
nonce = ...
for T_i in T:
require( T_i.validate(nonce) )
T_i.path = tree.get_path(T_i.leaf_index)
T_i.root_before = tree.root()
new_root = tree.update( T_i.leaf, T_i.path, T_i.new_leaf )
T_i.root_after = tree.root()
TODO: update the leaf with ethereum address for cheap exit
LEAF
+----------------^----------------+
LHS RHS (arbitrary data)
+----------------+
| |
| Ethereum address
Public_key_x - public_key_y
The leaf is then injected into a merkle tree.
A transaction updates a single leaf in the merkle tree. A transaction takes the following form.
1. Public key x and y point
2. The message which is defined as the hash of the old leaf and the new leaf.
MESSAGE
+----------------^----------------+
OLD_LEAF NEW_LEAF
3. the point R and the integer S.
In order to update the merkle tree the prover needs to aggregate together X transactions. For each transaction they check
PhABC: isnt this solved by the nonce/epochToBeIncludedIn scheme?
HaRold See under 'zkSNARK components', the 'Operator Hint', which tells them which leaf. If the signature signs the 'address bits' then each signature is unique to that specific leaf even if the same public key and RHS are used twice in the tree.
The RHS
argument allows arbitrary data to be stored in the leaf, this could be a single value, or a merkle tree.
Priority queue
When data become unavailable, our first defense is the priority queue. Any user can enter the queue by calling the enter_priority_que
function in the smart contract.
void enter_priority_que(uint merkle_tree_address,
uint state,
bytes32[tree_depth] markle_proof,
bytes32 leaf,
bytes32 authorization_signature
bytes32 public_key_of_leaf,
bytes32 rhs_of_leaf)
This function …
state
now + deadline
Now the operator needs to respond to this request before the time reaches timeout. If they don't respond, we assume data is unavailable and we enter the rollback mechanism. See next example.
They do so by calling the clear_priority_que
void clear_priority_que(uint que_entry,
bytes32[tree_depth] merkle_proof,
)
que_entry
element from the priority que.priority_que[que_entry].leaf
and priority_que[que_entry].address
results in the current merkle root.If an element in the priority que has not been processed after its timeout has expired anyone can call the kill_operator(uint que_entry
function.
It checks that the time limit has elapsed on that request, slashes the current operator and activates the roll back mechanism.
HaRold This is very similar to what I described with
operatorAvailability
(being equivalent toclear_priority_queue
). However, you need the operator to provide both the public key and the RHS, all information that it knows, otherwise it can still make data unavailable - e.g. without the RHS - if you've forgotten it - then you can't possibly check if it's one of your public keys.
If the operator fails to process requests in the priority queue, the system is paused for a long period of time during which users can bid to become the new operator starting at some epoch in an open auction or submit exit requests.
The pre-rollback time period can be split into 2 phases:
During this phase, a user can request to be the new operator by calling
bid_new_operator( uint state, bytes32[tree_depth] markle_proof, bytes32 leaf )
They pass state
which is the state that they want to start operating from as well as a deposit.
They must also provide a valid proof of knowledge of the data that resulted in the previuos operator being slashed.
PhABC: should be clarified. Also, why do we need a zk-proof? Surely this is something the smart-contract can handle?
For each request we check wether the state is newer than the current higest bid and that their bid is higher than the current highest bid. If either is true we replace the current highest bidder with them.
PhABC: These should be bigger or equal. Higher bid on same state is a valid new bid, same goes to same bid on a higher epoch.
At the end of this phase all users should know the epoch that a rollback will end and use that information to determine whether or not they want to submit an exit request in the subsequent phase (if a user knows that the rollback will end before an epoch at whith it received a leaf then perhaps the user chooses not to submit an exit request at all).
During this phase, a user can submit an exit request by calling
roll_back_exit(uint merkle_tree_address, uint state, bytes32[tree_depth] markle_proof, bytes32 leaf, bytes32 authorization_signature bytes32 public_key_of_leaf, bytes32 rhs_of_leaf )
Then we start to roll back the chain. We step back the state to the previous one. We then
We continue this until we either have a new operator or roll the state back to state zero.