Install and Build WAX RNG
To install WAX RNG from GitHub:
From the command line, clone the Git repository.
shellgit clone https://github.com/worldwide-asset-exchange/wax-orng.git
Build the WAX RNG Smart Contract and Unit Tests
The WAX RNG GitHub repository includes WAX RNG source code and various unit tests.
- src RNG smart contract code.
- tests: Unit test source code.
To build these smart contracts with our Docker image and make scripts:
From the command line, change the directory to wax-orng.
shellcd wax-orng
Start the development docker.
shellmake dev-docker-start
Next, you have two options.
Build the smart contracts and unit tests.
shellmake build
Run tests
shellmake test
Optional, build and test.
shellmake all
Clean all and exit.
shellmake clean
shellexit