Important
This repository is deprecated. The source has moved to the nxp-contracts monorepo. Please use that repository for the latest code, issues, and updates. This repository is kept read-only for historical reference, including the commit(s) covered by past security audits.
- node 16.18.*
- npm 8.19.*
- solidity 0.8.*
npm install
Compile
npm run compileRun test code
npm testMeasure coverage after all test files are run
npm run coveragehttps://docs.soliditylang.org/en/v0.8.13/style-guide.html
- Pragma statements
- Import statements
- Interfaces
- Libraries
- Contracts
- Type declarations
- State variables
- Events
- Modifies
- Functions
- constructor
- receive function (if exists)
- fallback function (if exists)
- external
- public
- internal
- private