The Tokenization Protocol is an Ethereum smart contract for tokenizing real assets.
To run, pull the repository from GitHub and install its dependencies. You will need npm installed.
git clone https://github.com/konkrete-protocols/tokenization-protocol
cd tokenization-protocol
`npm install`
You can then compile the contracts with:
npm run compile
Note: this project use truffle. The command above is the best way to compile contracts.
Mocha contract tests are defined under the test directory. To run the tests run:
npm run test
Assertions used in our tests are provided by ChaiJS.
To run code coverage, run:
npm run coverage
To lint the code, run:
npm run lint