This repo houses a sample React Native app which uses bbs-signatures
from MATTR Global. It is using the asm.js
fallback as WASM is unsupported in React Native currently.
yarn
Run the metro bundler with additional memory because the asm.js
dependency is large and will result in Javascript Out-Of-Memory under the default settings.
Linux/MacOS
NODE_OPTIONS=--max_old_space_size=8192 yarn start
Windows
set NODE_OPTIONS="--max-old-space-size=8192" && yarn start
This WILL take some time the first time because of the large dependancy size, so go take a break.