Minimal Serenity beacon chain implementation compiled to WebAssembly
npm install eth2This library compiles the beacon crate into WebAssembly, exposes it with a
Javascript interface, and thus allow it to run in a browser.
Add eth2 to your dependency. After that, run:
````
const beacon = import('eth2');
beacon.then(m => m.execute_minimal(block, state));