8bcdfb82cf
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.10 to 4.17.14. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.10...4.17.14) Signed-off-by: dependabot[bot] <support@github.com> |
||
---|---|---|
.. | ||
scripts | ||
src | ||
.babelrc | ||
.editorconfig | ||
.env.test.example | ||
.env.test.jenkins | ||
.gitignore | ||
.prettierignore | ||
.prettierrc | ||
README.md | ||
package.json | ||
tsconfig.json | ||
tslint.json | ||
webpack.e2e.test.config.js | ||
yarn.lock |
README.md
@rramos notes
This project in particular requires yarn, and also a specific version of loom for plasma. Again, I only made it able to run the first demo (demo.ts).
The process is as follows:
- nodejs must have been installed with
nvm
- Install yarn
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update && sudo apt-get install --no-install-recommends yarn
- Install plasma-loom
wget https://private.delegatecall.com/loom/linux/build-246/loom
chmod +x loom
-
Create a loom.yml in the same directory that contains the line:
PlasmaCashEnabled: true
. This file may need additional information if youre going to use multiple nodes -
Execute
./loom init
. In this step you may configure the genesis.json files for multiple nodes. -
In separate terminal, or as a background process, go to the
contracts
repo root folder, and executeembark simulator
, andembark run
to deploy the contracts -
Execute
./loom run
to start the loom process. This might require more options if using multiple nodes. Can be launched as a background process too. -
Build and launch the demo.
yarn install
yarn build
yarn copy-contracts
yarn tape
This will execute the demo. If you want to execute it more than once, You need to start the simulator from scratch, because this demo assumes a specific chain state in ganache.
Loom.js Plasma Cash E2E Tests
NodeJS & browser tests for Loom Plama Cash implementation.
Development
The e2e test environment can be configured by changing .env.test
(see .env.test.example
for
default values).
# build for NodeJS
yarn build
# build for Browser (TBD!)
yarn build:browser
# run e2e tests using NodeJS
yarn test
# auto-format source files
yarn format