Omniscia Steer Protocol Audit

Compilation

Compilation

The project utilizes hardhat as its development pipeline tool, containing an array of tests and scripts coded in TypeScript.

To compile the project, the compile command needs to be issued via the npx CLI tool to hardhat:

npx hardhat compile

The hardhat tool automatically selects Solidity versions 0.8.11, 0.8.12, or 0.7.6 based on the version specified within the hardhat.config.ts file as well as the pragma statement of the contract being compiled at a given point.

The project contains discrepancies with regards to the Solidity version used, however, they are solely contained in dependencies and can thus be safely ignored.

All contracts have been locked to their respective pragma versions, the same versions we utilized for our static analysis as well as optimizational review of the codebase.

During compilation with the hardhat pipeline, no errors were identified that relate to the syntax or bytecode size of the contracts.