Metadata-Version: 2.1
Name: open-autonomy
Version: 0.1.0rc1
Summary: A framework for the creation of autonomous agent services.
Home-page: https://github.com/valory-xyz/open-autonomy.git
Author: Valory AG
License: Apache-2.0
Project-URL: Bug Reports, https://github.com/valory-xyz/open-autonomy/issues
Project-URL: Source, https://github.com/valory/open-autonomy
Keywords: aea open-aea autonomous-economic-agents agent-framework multi-agent-systems multi-agent cryptocurrency cryptocurrencies dezentralized dezentralized-network
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Communications
Classifier: Topic :: Internet
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development
Classifier: Topic :: System
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: cli
Provides-Extra: all
License-File: LICENSE
License-File: AUTHORS.md

# Open Autonomy

This repository contains the [Valory](https://www.valory.xyz/) stack, a set of 
distributed consensus technologies built on top of the 
[open AEA framework](https://github.com/valory-xyz/open-aea) to facilitate the 
creation of dynamic, decentralised applications that depend on off-chain components.

As opposed to traditional smart contracts, Valory apps go beyond simple, purely 
reactive applications and can show complex, proactive behaviours that contain 
off-chain logic without giving up on decentralization.


## Requirements

Ensure your machine satisfies the following requirements:

- Python `>= 3.7`
- Yarn `>=1.22.xx`
- Node `>=v12.xx`
- [Tendermint](https://docs.tendermint.com/master/introduction/install.html) `==0.34.11`
- [IPFS node](https://docs.ipfs.io/install/command-line/#official-distributions) `==v0.6.0`
- [Pipenv](https://pipenv.pypa.io/en/latest/install/) `>=2021.x.xx`


## Setting up for development & running examples

- Clone the repository, and recursively clone the submodules:

      git clone --recursive git@github.com:valory-xyz/open-autonomy.git

  Note: to update the Git submodules later:

      git submodule update --init --recursive

- Build the Hardhat projects:

      cd third_party/safe-contracts && yarn install
      cd ../..
      cd third_party/contracts-amm && yarn install
      cd ../..

- Create and launch a virtual environment. Also, run this during development, 
every time you need to re-create and launch the virtual environment and update 
the dependencies:

      make new_env && pipenv shell

## Getting started

Have a look at the 
[price estimation](https://github.com/valory-xyz/open-autonomy/tree/main/examples/price_estimation) 
example. You must have completed setting up and be inside a virtual environment
(`pipenv shell`) in order to run the examples.

