We're implementing Minimum Viable Plasma
This is the Rootchain contract repository for Blockchain @ Berkeley's Plasma team.
Plasma is a layer 2 scaling solution which conducts transaction processing off chain and allows for only merkle roots of each block to be reported to a root chain. This allows for users to benefit from off chain scaling while still relying on decentralized security.
The root contract of a Plasma child chain represents an intermediary who can resolve any disputes. The root contract is responsible for maintaining a mapping from block number to merkle root, processing deposits, and processing withdrawals.
A transaction is encoded in the following form:
[Blknum1, TxIndex1, Oindex1, DepositNonce1, Amount1, ConfirmSig1
Blknum2, TxIndex2, Oindex2, DepositNonce2, Amount2, ConfirmSig2
NewOwner, Denom1, NewOwner, Denom2, Fee]
See our documentation for a more detailed description of the smart contract functions.
git clone https://github.com/fourthstate/plasma-mvp-rootchain
cd plasma-mvp-rootchain
npm install
npm install -g truffle ganache-cli
// if not installed alreadyganache-cli
// run as a background processnpm test
The first migration file 1_initial_migration
deploys the PriorityQueue
library and links it to the RootChain
contract, while the second one 2_deploy_rootchain
finally makes the deployment. Ethereum requires libraries to already be deployed prior to be used by other contracts.
If you encounter problems, make sure your local test rpc (e.g. ganache) has the same network id as the contract's json from the build
folder.
See our contribution guidelines. Join our Discord Server.