This repository contains the Autonolas Staking Programmes set of contracts. It is built on top of a core service staking functionality of autonolas-registries.
- This repository follows the standard
Hardhat
development process. - The code is written starting from Solidity
0.8.21
. - The standard versions of Node.js along with Yarn are required to proceed further (confirmed to work with Yarn
1.22.19
and npx/npm10.1.0
and nodev18.17.0
).
The project has submodules to get the dependencies. Make sure you run git clone --recursive
or init the submodules yourself.
The dependency list is managed by the package.json
file, and the setup parameters are stored in the hardhat.config.js
file.
Simply run the following command to install the project:
yarn install
The contracts, deployment scripts and tests are located in the following folders respectively:
contracts
scripts
test
Compile the code:
npx hardhat compile
Run the tests:
npx hardhat test
Run tests with forge:
forge test --hh -vvv
The PR process is managed by github workflows, where the code undergoes several steps in order to be verified. Those include:
- code installation
- running linters
- running tests
The list of contract addresses for different networks and corresponding staking program configurations can be found in JSON files here: contracts.
The deployment of contracts to the test- and main-net is split into step-by-step series of scripts for more control and checkpoint convenience. The description of deployment procedure can be found here: deployment.
The finalized contract ABIs for deployment and their number of optimization passes are located here: ABIs. Each folder there contains contracts compiled with the solidity version before their deployment.
The audit is provided as development matures. The latest audit report can be found here: audits.
---
title: Contribute Architecture
---
flowchart LR
DAO -- changeManager --> ContributorsProxy
DAO -- setContributeServiceStatuses --> ContributorsProxy
DAO -- changeOwner --> ContributorsProxy
User -- createAndStake --> ContributeManager
User -- stake --> ContributeManager
User -- unstake --> ContributeManager
User -- claim --> ContributeManager
ContributeService -- checkpoint --> StakingInstance -- getNonces --> ContributeActivityChecker
User -- approve --> OLAS
ContributeManager -- create --> StakingRegistryL2
StakingRegistryL2 -- mint --> ERC721
ContributeManager -- stake --> StakingInstance
ContributeManager -- unstake --> StakingInstance
ContributeManager -- claim --> StakingInstance
subgraph Service registry contracts
StakingInstance
StakingRegistryL2
end
subgraph Contribute contracts
ContributeService -- increaseActivity --> ContributorsProxy
ContributorsProxy -- delegatecall --> Contributors
ContributeManager -- setServiceInfoForId --> ContributorsProxy
ContributeActivityChecker -- mapMutisigActivities --> ContributorsProxy
end
The staking programmes contracts were inspired and based on the following sources: