Skip to content

valory-xyz/autonolas-staking-programmes

Repository files navigation

Autonolas Staking Programmes

Introduction

This repository contains the Autonolas Staking Programmes set of contracts. It is built on top of a core service staking functionality of autonolas-registries.

Development

Prerequisites

  • This repository follows the standard Hardhat development process.
  • The code is written on 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/npm 10.1.0 and node v18.17.0).

Install the dependencies

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

Core components

The contracts, deployment scripts and tests are located in the following folders respectively:

contracts
scripts
test

Compile the code and run

Compile the code:

npx hardhat compile

Run the tests:

npx hardhat test

Run tests with forge:

forge test --hh -vvv

Linters

  • ESLint is used for JS code.
  • solhint is used for Solidity linting.

Github Workflows

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

Deployment

The list of contract addresses for gnosis mainnet and a staking program configuration can be found 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.

Audits

The audit is provided as development matures. The latest audit report can be found here: audits.

Acknowledgements

The staking programmes contracts were inspired and based on the following sources: