Set Protocol is a specification for tokenized asset management strategies on the ethereum blockchain written in the Solidity programming language. We use Hardhat as a development environment for compiling, testing, and deploying our contracts.
To use console.log during Solidity development, follow the guides.
yarn chain
yarn compile
To speed up compilation, install solc 0.6.10 natively with the following command.
brew install https://raw.githubusercontent.com/ethereum/homebrew-ethereum/06d13a8499801dc3ea4f19b2d24ed2eeb3072ebb/solidity.rb
yarn build
yarn test
to run compiled contracts
OR yarn test:clean
if contracts have been typings need to be updated
yarn coverage
We publish our contracts as well as hardhat and typechain compilation artifacts to npm.
npm install @setprotocol/set-protocol-v2
The distribution also comes with fixtures for mocking and testing SetProtocol's interactions with
other protocols including Uniswap, Balancer, Compound (and many more.) To use these you'll need to install the peer dependencies listed in package.json
.
import { PerpV2Fixture } from "@setprotocol/set-protocol-v2/dist/utils/fixtures/PerpV2Fixture";
import { getPerpV2Fixture } from "@setprotocol/set-protocol-v2/dist/utils/test";
let perpSetup: PerpV2Fixture;
perpSetup = getPerpV2Fixture(...);
This repository uses semantic-release to automatically publish in CI on merge to master. To trigger a release, use the following naming convention in your PR description (or in your squash & merge commit description):
- patch release (e.g 1.0.1 -> 1.0.2):
fix(topic): description
- example:
fix(perpV2Viewer): return uint256 instead of int256
- example:
- feature release (e.g 1.1.0 -> 1.2.0):
feat(feature_name): description
- example:
feat(PerpV2BasisTrading): Add PerpV2 Basis Trading Module
- example:
We highly encourage participation from the community to help shape the development of Set. If you are interested in developing on top of Set Protocol or have any questions, please ping us on Discord.
All smart contracts are tested and have 100% line and branch coverage.
The disclosure of security vulnerabilities helps us ensure the security of our users.
How to report a security vulnerability?
If you believe you’ve found a security vulnerability in one of our contracts or platforms, send it to us by emailing [email protected]. Please include the following details with your report:
-
A description of the location and potential impact of the vulnerability.
-
A detailed description of the steps required to reproduce the vulnerability.
Scope
Any vulnerability not previously disclosed by us or our independent auditors in their reports.
Guidelines
We require that all reporters:
-
Make every effort to avoid privacy violations, degradation of user experience, disruption to production systems, and destruction of data during security testing.
-
Use the identified communication channels to report vulnerability information to us.
-
Keep information about any vulnerabilities you’ve discovered confidential between yourself and Set until we’ve had 30 days to resolve the issue.
If you follow these guidelines when reporting an issue to us, we commit to:
-
Not pursue or support any legal action related to your findings.
-
Work with you to understand and resolve the issue quickly (including an initial confirmation of your report within 72 hours of submission).
-
Grant a monetary reward based on the OWASP risk assessment methodology.