Skip to content

Latest commit

 

History

History
41 lines (25 loc) · 974 Bytes

README.md

File metadata and controls

41 lines (25 loc) · 974 Bytes

Tokenization Protocol

The Tokenization Protocol is an Ethereum smart contract for tokenizing real assets.

Installation

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.

Testing

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.

Code Coverage

To run code coverage, run:

npm run coverage

Linting

To lint the code, run:

npm run lint