On this page
Solidity
Environment
Qualified supports Solidity version 0.4.19, using the Truffle framework for compiling contracts.
From the solution, the setup can be imported using an import statement (import "./setup.sol";
). Both will be compiled as seperate contract files through Truffle.
OpenZeppelin Library
OpenZeppelin is provided as library for writing smart contracts. It can be imported using import statements (e.g. import 'zeppelin-solidity/contracts/ownership/Ownable.sol';
)
For more information on OpenZepplin see the documentation on Github
Testing
Our Solidity environment supports testing in JavaScript through the Truffle Framework with Mocha.