├── .dockerignore ├── .firebaserc ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── feature-request.yml ├── PULL_REQUEST_TEMPLATE │ └── release.md ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── codeql-analysis.yml │ ├── docs_pr_preview.yml │ ├── publish.yaml │ ├── upload_docker_images.yaml │ └── workflow.yml ├── .gitignore ├── .spelling ├── AUTHORS.md ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEVELOPING.md ├── HISTORY.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── SECURITY.md ├── aea ├── __init__.py ├── __version__.py ├── abstract_agent.py ├── aea.py ├── aea_builder.py ├── agent.py ├── agent_loop.py ├── cli │ ├── __init__.py │ ├── __main__.py │ ├── add.py │ ├── add_key.py │ ├── build.py │ ├── config.py │ ├── core.py │ ├── create.py │ ├── delete.py │ ├── eject.py │ ├── fetch.py │ ├── fingerprint.py │ ├── freeze.py │ ├── generate.py │ ├── generate_key.py │ ├── generate_wealth.py │ ├── get_address.py │ ├── get_multiaddress.py │ ├── get_public_key.py │ ├── get_wealth.py │ ├── init.py │ ├── install.py │ ├── interact.py │ ├── issue_certificates.py │ ├── launch.py │ ├── list.py │ ├── local_registry_sync.py │ ├── login.py │ ├── logout.py │ ├── plugin.py │ ├── publish.py │ ├── push.py │ ├── register.py │ ├── registry │ │ ├── __init__.py │ │ ├── add.py │ │ ├── fetch.py │ │ ├── login.py │ │ ├── logout.py │ │ ├── publish.py │ │ ├── push.py │ │ ├── registration.py │ │ ├── settings.py │ │ └── utils.py │ ├── remove.py │ ├── remove_key.py │ ├── reset_password.py │ ├── run.py │ ├── scaffold.py │ ├── search.py │ ├── transfer.py │ ├── upgrade.py │ └── utils │ │ ├── __init__.py │ │ ├── click_utils.py │ │ ├── config.py │ │ ├── constants.py │ │ ├── context.py │ │ ├── decorators.py │ │ ├── exceptions.py │ │ ├── formatting.py │ │ ├── generic.py │ │ ├── loggers.py │ │ └── package_utils.py ├── common.py ├── components │ ├── __init__.py │ ├── base.py │ ├── loader.py │ └── utils.py ├── configurations │ ├── __init__.py │ ├── base.py │ ├── constants.py │ ├── data_types.py │ ├── loader.py │ ├── manager.py │ ├── pypi.py │ ├── schemas │ │ ├── aea-config_schema.json │ │ ├── configurable_parts │ │ │ ├── base-custom_config.json │ │ │ ├── connection-custom_config.json │ │ │ ├── contract-custom_config.json │ │ │ ├── protocol-custom_config.json │ │ │ └── skill-custom_config.json │ │ ├── connection-config_schema.json │ │ ├── contract-config_schema.json │ │ ├── definitions.json │ │ ├── protocol-config_schema.json │ │ ├── protocol-specification_schema.json │ │ └── skill-config_schema.json │ ├── utils.py │ └── validation.py ├── connections │ ├── __init__.py │ ├── base.py │ └── scaffold │ │ ├── __init__.py │ │ ├── connection.py │ │ ├── connection.yaml │ │ └── readme.md ├── context │ ├── __init__.py │ └── base.py ├── contracts │ ├── __init__.py │ ├── base.py │ └── scaffold │ │ ├── __init__.py │ │ ├── contract.py │ │ └── contract.yaml ├── crypto │ ├── __init__.py │ ├── base.py │ ├── helpers.py │ ├── ledger_apis.py │ ├── plugin.py │ ├── registries │ │ ├── __init__.py │ │ └── base.py │ └── wallet.py ├── decision_maker │ ├── __init__.py │ ├── base.py │ ├── default.py │ ├── gop.py │ └── scaffold.py ├── error_handler │ ├── __init__.py │ ├── base.py │ ├── default.py │ └── scaffold.py ├── exceptions.py ├── helpers │ ├── __init__.py │ ├── acn │ │ ├── __init__.py │ │ ├── agent_record.py │ │ └── uri.py │ ├── async_friendly_queue.py │ ├── async_utils.py │ ├── base.py │ ├── constants.py │ ├── env_vars.py │ ├── exception_policy.py │ ├── exec_timeout.py │ ├── file_io.py │ ├── file_lock.py │ ├── http_requests.py │ ├── install_dependency.py │ ├── io.py │ ├── ipfs │ │ ├── __init__.py │ │ ├── base.py │ │ ├── pb │ │ │ ├── __init__.py │ │ │ ├── merkledag.proto │ │ │ ├── merkledag_pb2.py │ │ │ ├── unixfs.proto │ │ │ └── unixfs_pb2.py │ │ └── utils.py │ ├── logging.py │ ├── multiaddr │ │ ├── __init__.py │ │ ├── base.py │ │ ├── crypto.proto │ │ └── crypto_pb2.py │ ├── multiple_executor.py │ ├── pipe.py │ ├── preference_representations │ │ ├── __init__.py │ │ └── base.py │ ├── profiling.py │ ├── search │ │ ├── __init__.py │ │ ├── generic.py │ │ ├── models.proto │ │ ├── models.py │ │ └── models_pb2.py │ ├── serializers.py │ ├── storage │ │ ├── __init__.py │ │ ├── backends │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── binaries │ │ │ │ ├── README.txt │ │ │ │ └── json1.dll │ │ │ └── sqlite.py │ │ └── generic_storage.py │ ├── sym_link.py │ ├── transaction │ │ ├── __init__.py │ │ └── base.py │ ├── win32.py │ └── yaml_utils.py ├── identity │ ├── __init__.py │ └── base.py ├── launcher.py ├── mail │ ├── __init__.py │ ├── base.proto │ ├── base.py │ └── base_pb2.py ├── manager │ ├── __init__.py │ ├── manager.py │ ├── project.py │ └── utils.py ├── multiplexer.py ├── protocols │ ├── __init__.py │ ├── base.py │ ├── dialogue │ │ ├── __init__.py │ │ └── base.py │ ├── generator │ │ ├── __init__.py │ │ ├── base.py │ │ ├── common.py │ │ ├── extract_specification.py │ │ ├── isort.cfg │ │ └── validate.py │ └── scaffold │ │ ├── __init__.py │ │ ├── message.py │ │ ├── protocol.yaml │ │ └── serialization.py ├── py.typed ├── registries │ ├── __init__.py │ ├── base.py │ ├── filter.py │ └── resources.py ├── runner.py ├── runtime.py ├── skills │ ├── __init__.py │ ├── base.py │ ├── behaviours.py │ ├── scaffold │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── handlers.py │ │ ├── my_model.py │ │ └── skill.yaml │ └── tasks.py └── test_tools │ ├── __init__.py │ ├── click_testing.py │ ├── constants.py │ ├── exceptions.py │ ├── generic.py │ ├── test_cases.py │ ├── test_contract.py │ └── test_skill.py ├── benchmark ├── Dockerfile ├── README.md ├── __init__.py ├── benchmark-deployment.yaml ├── cases │ ├── __init__.py │ ├── cpu_burn.py │ ├── helpers │ │ ├── __init__.py │ │ └── dummy_handler.py │ ├── react_multi_agents_fake_connection.py │ ├── react_speed_in_loop.py │ └── react_speed_multi_agents.py ├── checks │ ├── __init__.py │ ├── check_agent_construction_time.py │ ├── check_decision_maker.py │ ├── check_dialogues_memory_usage.py │ ├── check_mem_usage.py │ ├── check_messages_memory_usage.py │ ├── check_multiagent.py │ ├── check_multiagent_http_dialogues.py │ ├── check_proactive.py │ ├── check_reactive.py │ ├── data │ │ ├── 2020.09.05_17-49.txt │ │ ├── 2020.10.27_mem_usage_report.txt │ │ ├── 2020.10.30 optimized messages.txt │ │ ├── 2020.12.10_optimized_messages.txt │ │ ├── 2021.03.09_test_run.txt │ │ └── 2021.04.01_v1_benchmark.txt │ ├── run_benchmark.sh │ ├── run_benchmark_messages_mem.sh │ └── utils.py ├── framework │ ├── __init__.py │ ├── aea_test_wrapper.py │ ├── benchmark.py │ ├── cli.py │ ├── executor.py │ ├── fake_connection.py │ ├── func_details.py │ └── report_printer.py ├── run_from_branch.sh └── run_mem_check_in_cloud.sh ├── codecov.yml ├── data ├── aea.png └── video-aea.png ├── deploy-image ├── .aea │ └── cli_config.yaml ├── Dockerfile ├── README.md ├── build.sh ├── entrypoint.sh └── packages │ └── __init__.py ├── develop-image ├── Dockerfile ├── README.md ├── docker-env.sh ├── k8s │ └── deployment.yaml ├── scripts │ ├── docker-build-img.sh │ └── docker-publish-img.sh └── skaffold.yaml ├── docs ├── 12-factor.md ├── Pipfile ├── acn-internals.md ├── acn.md ├── aea-vs-mvc.md ├── aeas.md ├── agent-oriented-development.md ├── agent-vs-aea.md ├── aggregation-demo.md ├── api │ ├── abstract_agent.md │ ├── aea.md │ ├── aea_builder.md │ ├── agent.md │ ├── agent_loop.md │ ├── common.md │ ├── components │ │ ├── base.md │ │ ├── loader.md │ │ └── utils.md │ ├── configurations │ │ ├── base.md │ │ ├── constants.md │ │ ├── data_types.md │ │ ├── loader.md │ │ ├── manager.md │ │ ├── pypi.md │ │ ├── utils.md │ │ └── validation.md │ ├── connections │ │ └── base.md │ ├── context │ │ └── base.md │ ├── contracts │ │ └── base.md │ ├── crypto │ │ ├── base.md │ │ ├── helpers.md │ │ ├── ledger_apis.md │ │ ├── plugin.md │ │ ├── registries │ │ │ └── base.md │ │ └── wallet.md │ ├── decision_maker │ │ ├── base.md │ │ ├── default.md │ │ └── gop.md │ ├── error_handler │ │ ├── base.md │ │ └── default.md │ ├── exceptions.md │ ├── helpers │ │ ├── acn │ │ │ ├── agent_record.md │ │ │ └── uri.md │ │ ├── async_friendly_queue.md │ │ ├── async_utils.md │ │ ├── base.md │ │ ├── constants.md │ │ ├── env_vars.md │ │ ├── exception_policy.md │ │ ├── exec_timeout.md │ │ ├── file_io.md │ │ ├── file_lock.md │ │ ├── http_requests.md │ │ ├── install_dependency.md │ │ ├── io.md │ │ ├── ipfs │ │ │ ├── base.md │ │ │ └── utils.md │ │ ├── logging.md │ │ ├── multiaddr │ │ │ └── base.md │ │ ├── multiple_executor.md │ │ ├── pipe.md │ │ ├── preference_representations │ │ │ └── base.md │ │ ├── profiling.md │ │ ├── search │ │ │ ├── generic.md │ │ │ └── models.md │ │ ├── serializers.md │ │ ├── storage │ │ │ ├── backends │ │ │ │ ├── base.md │ │ │ │ └── sqlite.md │ │ │ └── generic_storage.md │ │ ├── sym_link.md │ │ ├── transaction │ │ │ └── base.md │ │ ├── win32.md │ │ └── yaml_utils.md │ ├── identity │ │ └── base.md │ ├── launcher.md │ ├── mail │ │ └── base.md │ ├── manager │ │ ├── manager.md │ │ ├── project.md │ │ └── utils.md │ ├── multiplexer.md │ ├── plugins │ │ ├── aea_cli_ipfs │ │ │ ├── core.md │ │ │ └── ipfs_utils.md │ │ ├── aea_ledger_cosmos │ │ │ └── cosmos.md │ │ ├── aea_ledger_ethereum │ │ │ └── ethereum.md │ │ └── aea_ledger_fetchai │ │ │ ├── _cosmos.md │ │ │ └── fetchai.md │ ├── protocols │ │ ├── base.md │ │ ├── default │ │ │ ├── custom_types.md │ │ │ ├── dialogues.md │ │ │ ├── message.md │ │ │ └── serialization.md │ │ ├── dialogue │ │ │ └── base.md │ │ ├── generator │ │ │ ├── base.md │ │ │ ├── common.md │ │ │ ├── extract_specification.md │ │ │ └── validate.md │ │ ├── signing │ │ │ ├── custom_types.md │ │ │ ├── dialogues.md │ │ │ ├── message.md │ │ │ └── serialization.md │ │ └── state_update │ │ │ ├── dialogues.md │ │ │ ├── message.md │ │ │ └── serialization.md │ ├── registries │ │ ├── base.md │ │ ├── filter.md │ │ └── resources.md │ ├── runner.md │ ├── runtime.md │ ├── skills │ │ ├── base.md │ │ ├── behaviours.md │ │ └── tasks.md │ └── test_tools │ │ ├── constants.md │ │ ├── exceptions.md │ │ ├── generic.md │ │ ├── test_cases.md │ │ ├── test_contract.md │ │ └── test_skill.md ├── application.md ├── aries-cloud-agent-demo.md ├── assets │ ├── acn-tiers.jpg │ ├── acn-tiers_.png │ ├── acn-trust-security.jpg │ ├── acn-trust-security_.png │ ├── aea-vs-agent-vs-multiplexer.jpg │ ├── aea-vs-agent-vs-multiplexer_.jpg │ ├── aea-vs-agent-vs-multiplexer_.png │ ├── aries-demo-alice.png │ ├── aries-demo-faber.png │ ├── benchmark_chart.png │ ├── contracts.jpg │ ├── contracts_.png │ ├── decision-maker.jpg │ ├── decision-maker_.png │ ├── dht.jpg │ ├── dht_.png │ ├── envelope.jpg │ ├── envelope_.png │ ├── execution.jpg │ ├── execution_.jpg │ ├── execution_.png │ ├── gym-skill.jpg │ ├── gym-skill_.png │ ├── gym-training.png │ ├── http-integration.jpg │ ├── http-integration_.jpg │ ├── images │ │ ├── favicon.ico │ │ └── logo.png │ ├── interaction-protocols.jpg │ ├── interaction-protocols_.jpg │ ├── keys.jpg │ ├── keys_.png │ ├── logo.webp │ ├── message-flow-contract-ledger.jpg │ ├── message-flow-contract-ledger_.jpg │ ├── multiplexer.png │ ├── multiplexer_.png │ ├── oef-ledger.jpg │ ├── oef-ledger_.jpg │ ├── protocol.jpg │ ├── protocol_.jpg │ ├── simplified-aea.jpg │ ├── simplified-aea_.jpg │ ├── skill-components.jpg │ ├── skill-components_.png │ ├── skills.jpg │ ├── skills_.png │ └── visdom_ui.png ├── build-aea-programmatically.md ├── build-aea-step-by-step.md ├── car-park-skills.md ├── cli-commands.md ├── cli-vs-programmatic-aeas.md ├── config.md ├── connect-a-frontend.md ├── connection.md ├── contract.md ├── core-components-1.md ├── core-components-2.md ├── core-components.md ├── css │ ├── admonitions.css │ └── my-styles.css ├── debug.md ├── decision-maker-transaction.md ├── decision-maker.md ├── defining-data-models.md ├── demos.md ├── deployment.md ├── design-principles.md ├── development-setup.md ├── diagram.md ├── ecosystem.md ├── erc1155-skills.md ├── generic-skills-step-by-step.md ├── generic-skills.md ├── generic-storage.md ├── glossary.md ├── gym-example.md ├── gym-skill.md ├── http-connection-and-skill.md ├── identity.md ├── index.md ├── install.md ├── interaction-protocol.md ├── known-limits.md ├── language-agnostic-definition.md ├── ledger-integration.md ├── limits.md ├── logging.md ├── message-routing.md ├── ml-skills.md ├── modes.md ├── multi-agent-manager.md ├── multiplexer-standalone.md ├── oracle-demo.md ├── orm-integration.md ├── p2p-connection.md ├── package-imports.md ├── performance-benchmark.md ├── por.md ├── prometheus.md ├── protocol-generator.md ├── protocol.md ├── query-language.md ├── questions-and-answers.md ├── quickstart.md ├── raspberry-set-up.md ├── runtime-cost.md ├── scaffolding.md ├── security.md ├── setup.md ├── simple-oef-usage.md ├── simple-oef.md ├── skill-guide.md ├── skill-testing.md ├── skill.md ├── standalone-transaction.md ├── step-one.md ├── tac-skills-contract.md ├── tac-skills.md ├── tac.md ├── thermometer-skills.md ├── trust.md ├── upgrading.md ├── wealth.md └── weather-skills.md ├── examples ├── __init__.py ├── aealite_go │ ├── README.md │ └── default │ │ ├── default.pb.go │ │ └── default.proto ├── gym_ex │ ├── README.md │ ├── gyms │ │ ├── __init__.py │ │ └── env.py │ ├── proxy │ │ ├── __init__.py │ │ ├── agent.py │ │ └── env.py │ ├── rl │ │ ├── __init__.py │ │ └── agent.py │ └── train.py ├── http_ex │ └── petstore.yaml ├── ml_ex │ └── model.json ├── protocol_specification_ex │ └── sample.yaml └── tac_deploy │ ├── .aea │ └── cli_config.yaml │ ├── .env │ ├── Dockerfile │ ├── README.md │ ├── build.sh │ ├── entrypoint.sh │ ├── packages │ └── __init__.py │ ├── tac-deployment.yaml │ └── tac_run.sh ├── firebase.json ├── install_packages.py ├── libs └── go │ ├── aea_end2end │ ├── Makefile │ ├── README.md │ ├── fipa_dummy_seller.env │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── pexpect_popen.py │ ├── protocols │ │ ├── fipa.pb.go │ │ ├── fipa.proto │ │ └── fipa.yaml │ ├── run_buyer.sh │ ├── run_seller.sh │ └── test_fipa_end2end.py │ ├── aealite │ ├── Makefile │ ├── README.md │ ├── agent.go │ ├── agent_test.go │ ├── connections │ │ ├── acn │ │ │ ├── acn.go │ │ │ ├── pipe_iface.go │ │ │ └── protocol.go │ │ ├── connections.go │ │ ├── p2pclient.go │ │ ├── p2pclient_test.go │ │ └── tcpsocket.go │ ├── go.mod │ ├── go.sum │ ├── helpers │ │ ├── base.go │ │ └── base_test.go │ ├── protocols │ │ ├── acn │ │ │ └── v1_0_0 │ │ │ │ ├── acn.pb.go │ │ │ │ ├── acn.proto │ │ │ │ └── acn.yaml │ │ ├── base.pb.go │ │ ├── base.proto │ │ ├── dialogue.go │ │ ├── dialogue_label.go │ │ ├── dialogue_label_test.go │ │ ├── dialogue_test.go │ │ ├── dialogues.go │ │ ├── message.go │ │ ├── message_test.go │ │ ├── search.pb.go │ │ ├── search.proto │ │ ├── storage.go │ │ ├── storage_test.go │ │ └── versions.go │ ├── test_env_file.env │ └── wallet │ │ ├── utils.go │ │ ├── wallet.go │ │ └── wallet_test.go │ ├── aealite_agent_example │ ├── .gitignore │ ├── Makefile │ ├── example_env_file.env │ ├── go.mod │ ├── main.go │ └── tests │ │ ├── pexpect_popen.py │ │ └── test_build_and_run.py │ └── libp2p_node │ ├── .dockerignore │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── acn │ └── utils.go │ ├── aea │ ├── api.go │ ├── envelope.pb.go │ ├── envelope.proto │ ├── pipe.go │ └── utils.go │ ├── common │ └── common.go │ ├── dht │ ├── common │ │ └── handlers.go │ ├── dhtclient │ │ ├── dhtclient.go │ │ ├── dhtclient_test.go │ │ └── options.go │ ├── dhtnode │ │ ├── dhtnode.go │ │ ├── streams.go │ │ └── utils.go │ ├── dhtpeer │ │ ├── benchmarks_test.go │ │ ├── dhtpeer.go │ │ ├── dhtpeer_test.go │ │ ├── mailbox.go │ │ ├── notifee.go │ │ ├── options.go │ │ └── utils.go │ ├── dhttests │ │ └── dhttests.go │ └── monitoring │ │ ├── file.go │ │ ├── prometheus.go │ │ └── service.go │ ├── go.mod │ ├── go.sum │ ├── libp2p_node.go │ ├── link │ ├── mocks │ ├── mock_host.go │ ├── mock_net.go │ ├── mock_network.go │ └── mock_peerstore.go │ ├── protocols │ └── acn │ │ └── v1_0_0 │ │ ├── acn.pb.go │ │ ├── acn.proto │ │ └── acn.yaml │ └── utils │ ├── utils.go │ └── utils_test.go ├── mkdocs.yml ├── packages ├── __init__.py ├── fetchai │ ├── __init__.py │ ├── agents │ │ ├── aries_alice │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── aries_faber │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── car_data_buyer │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── car_detector │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── coin_price_feed │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── coin_price_oracle │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── coin_price_oracle_client │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── confirmation_aea_aw1 │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── confirmation_aea_aw2 │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── confirmation_aea_aw3 │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── confirmation_aea_aw5 │ │ │ └── aea-config.yaml │ │ ├── erc1155_client │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── erc1155_deployer │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── error_test │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── fipa_dummy_buyer │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── generic_buyer │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── generic_seller │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── gym_aea │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── hello_world │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── latest_block_feed │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── ml_data_provider │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── ml_model_trainer │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── my_first_aea │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── registration_aea_aw1 │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── simple_aggregator │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── simple_buyer_aw2 │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── simple_buyer_aw5 │ │ │ └── aea-config.yaml │ │ ├── simple_seller_aw2 │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── simple_seller_aw5 │ │ │ └── aea-config.yaml │ │ ├── simple_service_registration │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── simple_service_search │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── tac_controller │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── tac_controller_contract │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── tac_participant │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── tac_participant_contract │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── thermometer_aea │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── thermometer_client │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ ├── weather_client │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ │ └── weather_station │ │ │ ├── README.md │ │ │ └── aea-config.yaml │ ├── connections │ │ ├── __init__.py │ │ ├── gym │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ └── connection.yaml │ │ ├── http_client │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ └── connection.yaml │ │ ├── http_server │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ └── connection.yaml │ │ ├── ledger │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── connection.py │ │ │ ├── connection.yaml │ │ │ ├── contract_dispatcher.py │ │ │ └── ledger_dispatcher.py │ │ ├── local │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ └── connection.yaml │ │ ├── oef │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ ├── connection.yaml │ │ │ └── object_translator.py │ │ ├── p2p_libp2p │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── check_dependencies.py │ │ │ ├── connection.py │ │ │ ├── connection.yaml │ │ │ ├── consts.py │ │ │ └── libp2p_node │ │ │ │ ├── .dockerignore │ │ │ │ ├── Dockerfile │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── acn │ │ │ │ └── utils.go │ │ │ │ ├── aea │ │ │ │ ├── api.go │ │ │ │ ├── envelope.pb.go │ │ │ │ ├── envelope.proto │ │ │ │ ├── pipe.go │ │ │ │ └── utils.go │ │ │ │ ├── common │ │ │ │ └── common.go │ │ │ │ ├── dht │ │ │ │ ├── common │ │ │ │ │ └── handlers.go │ │ │ │ ├── dhtclient │ │ │ │ │ ├── dhtclient.go │ │ │ │ │ ├── dhtclient_test.go │ │ │ │ │ └── options.go │ │ │ │ ├── dhtnode │ │ │ │ │ ├── dhtnode.go │ │ │ │ │ ├── streams.go │ │ │ │ │ └── utils.go │ │ │ │ ├── dhtpeer │ │ │ │ │ ├── benchmarks_test.go │ │ │ │ │ ├── dhtpeer.go │ │ │ │ │ ├── dhtpeer_test.go │ │ │ │ │ ├── mailbox.go │ │ │ │ │ ├── notifee.go │ │ │ │ │ ├── options.go │ │ │ │ │ └── utils.go │ │ │ │ ├── dhttests │ │ │ │ │ └── dhttests.go │ │ │ │ └── monitoring │ │ │ │ │ ├── file.go │ │ │ │ │ ├── prometheus.go │ │ │ │ │ └── service.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── libp2p_node.go │ │ │ │ ├── link │ │ │ │ ├── mocks │ │ │ │ ├── mock_host.go │ │ │ │ ├── mock_net.go │ │ │ │ ├── mock_network.go │ │ │ │ └── mock_peerstore.go │ │ │ │ ├── protocols │ │ │ │ └── acn │ │ │ │ │ └── v1_0_0 │ │ │ │ │ ├── acn.pb.go │ │ │ │ │ ├── acn.proto │ │ │ │ │ └── acn.yaml │ │ │ │ └── utils │ │ │ │ ├── utils.go │ │ │ │ └── utils_test.go │ │ ├── p2p_libp2p_client │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ └── connection.yaml │ │ ├── p2p_libp2p_mailbox │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ └── connection.yaml │ │ ├── p2p_stub │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ └── connection.yaml │ │ ├── prometheus │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ └── connection.yaml │ │ ├── soef │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ └── connection.yaml │ │ ├── stub │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ └── connection.yaml │ │ ├── tcp │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── connection.py │ │ │ ├── connection.yaml │ │ │ ├── tcp_client.py │ │ │ └── tcp_server.py │ │ └── webhook │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ └── connection.yaml │ ├── contracts │ │ ├── __init__.py │ │ ├── erc1155 │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── build │ │ │ │ ├── Migrations.json │ │ │ │ ├── erc1155.json │ │ │ │ └── erc1155.wasm │ │ │ ├── contract.py │ │ │ ├── contract.yaml │ │ │ ├── contracts │ │ │ │ ├── Migrations.sol │ │ │ │ └── erc1155.vy │ │ │ └── migrations │ │ │ │ ├── 1_initial_migration.js │ │ │ │ └── 2_deploy_contracts.js │ │ ├── fet_erc20 │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── build │ │ │ │ └── FetERC20Mock.json │ │ │ ├── contract.py │ │ │ └── contract.yaml │ │ ├── oracle │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── build │ │ │ │ ├── FetchOracle.json │ │ │ │ └── oracle.wasm │ │ │ ├── contract.py │ │ │ ├── contract.yaml │ │ │ └── contracts │ │ │ │ └── FetchOracle.sol │ │ ├── oracle_client │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── build │ │ │ │ ├── FetchOracleTestClient.json │ │ │ │ └── oracle_client.wasm │ │ │ ├── contract.py │ │ │ ├── contract.yaml │ │ │ └── contracts │ │ │ │ └── FetchOracleTestClient.sol │ │ └── staking_erc20 │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── build │ │ │ ├── Migrations.json │ │ │ └── staking_erc20.json │ │ │ ├── contract.py │ │ │ └── contract.yaml │ ├── protocols │ │ ├── __init__.py │ │ ├── acn │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── acn.proto │ │ │ ├── acn_pb2.py │ │ │ ├── custom_types.py │ │ │ ├── dialogues.py │ │ │ ├── message.py │ │ │ ├── protocol.yaml │ │ │ └── serialization.py │ │ ├── aggregation │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── aggregation.proto │ │ │ ├── aggregation_pb2.py │ │ │ ├── dialogues.py │ │ │ ├── message.py │ │ │ ├── protocol.yaml │ │ │ └── serialization.py │ │ ├── contract_api │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── contract_api.proto │ │ │ ├── contract_api_pb2.py │ │ │ ├── custom_types.py │ │ │ ├── dialogues.py │ │ │ ├── message.py │ │ │ ├── protocol.yaml │ │ │ └── serialization.py │ │ ├── cosm_trade │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── cosm_trade.proto │ │ │ ├── cosm_trade_pb2.py │ │ │ ├── custom_types.py │ │ │ ├── dialogues.py │ │ │ ├── message.py │ │ │ ├── protocol.yaml │ │ │ └── serialization.py │ │ ├── default │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── custom_types.py │ │ │ ├── default.proto │ │ │ ├── default_pb2.py │ │ │ ├── dialogues.py │ │ │ ├── message.py │ │ │ ├── protocol.yaml │ │ │ └── serialization.py │ │ ├── fipa │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── custom_types.py │ │ │ ├── dialogues.py │ │ │ ├── fipa.proto │ │ │ ├── fipa_pb2.py │ │ │ ├── message.py │ │ │ ├── protocol.yaml │ │ │ └── serialization.py │ │ ├── gym │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── custom_types.py │ │ │ ├── dialogues.py │ │ │ ├── gym.proto │ │ │ ├── gym_pb2.py │ │ │ ├── message.py │ │ │ ├── protocol.yaml │ │ │ └── serialization.py │ │ ├── http │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── dialogues.py │ │ │ ├── http.proto │ │ │ ├── http_pb2.py │ │ │ ├── message.py │ │ │ ├── protocol.yaml │ │ │ └── serialization.py │ │ ├── ledger_api │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── custom_types.py │ │ │ ├── dialogues.py │ │ │ ├── ledger_api.proto │ │ │ ├── ledger_api_pb2.py │ │ │ ├── message.py │ │ │ ├── protocol.yaml │ │ │ └── serialization.py │ │ ├── ml_trade │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── custom_types.py │ │ │ ├── dialogues.py │ │ │ ├── message.py │ │ │ ├── ml_trade.proto │ │ │ ├── ml_trade_pb2.py │ │ │ ├── protocol.yaml │ │ │ └── serialization.py │ │ ├── oef_search │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── custom_types.py │ │ │ ├── dialogues.py │ │ │ ├── message.py │ │ │ ├── oef_search.proto │ │ │ ├── oef_search_pb2.py │ │ │ ├── protocol.yaml │ │ │ └── serialization.py │ │ ├── prometheus │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── dialogues.py │ │ │ ├── message.py │ │ │ ├── prometheus.proto │ │ │ ├── prometheus_pb2.py │ │ │ ├── protocol.yaml │ │ │ └── serialization.py │ │ ├── register │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── dialogues.py │ │ │ ├── message.py │ │ │ ├── protocol.yaml │ │ │ ├── register.proto │ │ │ ├── register_pb2.py │ │ │ └── serialization.py │ │ ├── signing │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── custom_types.py │ │ │ ├── dialogues.py │ │ │ ├── message.py │ │ │ ├── protocol.yaml │ │ │ ├── serialization.py │ │ │ ├── signing.proto │ │ │ └── signing_pb2.py │ │ ├── state_update │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── dialogues.py │ │ │ ├── message.py │ │ │ ├── protocol.yaml │ │ │ ├── serialization.py │ │ │ ├── state_update.proto │ │ │ └── state_update_pb2.py │ │ └── tac │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── custom_types.py │ │ │ ├── dialogues.py │ │ │ ├── message.py │ │ │ ├── protocol.yaml │ │ │ ├── serialization.py │ │ │ ├── tac.proto │ │ │ └── tac_pb2.py │ └── skills │ │ ├── __init__.py │ │ ├── advanced_data_request │ │ ├── README.md │ │ ├── __init__.py │ │ ├── api_spec.yaml │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── models.py │ │ └── skill.yaml │ │ ├── aries_alice │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── skill.yaml │ │ └── strategy.py │ │ ├── aries_faber │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── skill.yaml │ │ └── strategy.py │ │ ├── carpark_client │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── skill.yaml │ │ └── strategy.py │ │ ├── carpark_detection │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── database.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── skill.yaml │ │ ├── strategy.py │ │ └── temp_files_placeholder │ │ │ ├── detection_results.db │ │ │ ├── mask.tiff │ │ │ └── mask_ref.tiff │ │ ├── confirmation_aw1 │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── registration_db.py │ │ ├── skill.yaml │ │ └── strategy.py │ │ ├── confirmation_aw2 │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── registration_db.py │ │ ├── skill.yaml │ │ └── strategy.py │ │ ├── confirmation_aw3 │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── registration_db.py │ │ ├── skill.yaml │ │ └── strategy.py │ │ ├── echo │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ └── skill.yaml │ │ ├── erc1155_client │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── skill.yaml │ │ └── strategy.py │ │ ├── erc1155_deploy │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── skill.yaml │ │ └── strategy.py │ │ ├── error │ │ ├── README.md │ │ ├── __init__.py │ │ ├── handlers.py │ │ └── skill.yaml │ │ ├── error_test_skill │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ └── skill.yaml │ │ ├── fetch_block │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ └── skill.yaml │ │ ├── fipa_dummy_buyer │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ └── skill.yaml │ │ ├── generic_buyer │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── skill.yaml │ │ └── strategy.py │ │ ├── generic_seller │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── skill.yaml │ │ └── strategy.py │ │ ├── gym │ │ ├── README.md │ │ ├── __init__.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── helpers.py │ │ ├── rl_agent.py │ │ ├── skill.yaml │ │ └── tasks.py │ │ ├── hello_world │ │ ├── __init__.py │ │ ├── behaviours.py │ │ └── skill.yaml │ │ ├── http_echo │ │ ├── README.md │ │ ├── __init__.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ └── skill.yaml │ │ ├── ml_data_provider │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── skill.yaml │ │ └── strategy.py │ │ ├── ml_train │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── skill.yaml │ │ ├── strategy.py │ │ └── tasks.py │ │ ├── registration_aw1 │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── skill.yaml │ │ └── strategy.py │ │ ├── simple_aggregation │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── skill.yaml │ │ └── strategy.py │ │ ├── simple_buyer │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── skill.yaml │ │ └── strategy.py │ │ ├── simple_data_request │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ └── skill.yaml │ │ ├── simple_oracle │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── skill.yaml │ │ └── strategy.py │ │ ├── simple_oracle_client │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── skill.yaml │ │ └── strategy.py │ │ ├── simple_seller │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── skill.yaml │ │ └── strategy.py │ │ ├── simple_service_registration │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── skill.yaml │ │ └── strategy.py │ │ ├── simple_service_search │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── skill.yaml │ │ └── strategy.py │ │ ├── tac_control │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── game.py │ │ ├── handlers.py │ │ ├── helpers.py │ │ ├── parameters.py │ │ └── skill.yaml │ │ ├── tac_control_contract │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── game.py │ │ ├── handlers.py │ │ ├── helpers.py │ │ ├── parameters.py │ │ └── skill.yaml │ │ ├── tac_negotiation │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── helpers.py │ │ ├── skill.yaml │ │ ├── strategy.py │ │ └── transactions.py │ │ ├── tac_participation │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── game.py │ │ ├── handlers.py │ │ └── skill.yaml │ │ ├── task_test_skill │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── skill.yaml │ │ └── tasks.py │ │ ├── thermometer │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── skill.yaml │ │ └── strategy.py │ │ ├── thermometer_client │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── skill.yaml │ │ └── strategy.py │ │ ├── weather_client │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dialogues.py │ │ ├── handlers.py │ │ ├── skill.yaml │ │ └── strategy.py │ │ └── weather_station │ │ ├── README.md │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── db_communication.py │ │ ├── dialogues.py │ │ ├── dummy_weather_station_data.db │ │ ├── dummy_weather_station_data.py │ │ ├── handlers.py │ │ ├── skill.yaml │ │ └── strategy.py └── hashes.csv ├── plugins ├── aea-cli-ipfs │ ├── LICENSE │ ├── MANIFEST.in │ ├── README.md │ ├── aea_cli_ipfs │ │ ├── __init__.py │ │ ├── core.py │ │ └── ipfs_utils.py │ ├── pyproject.toml │ ├── setup.py │ └── tests │ │ ├── __init__.py │ │ └── test_aea_cli_ipfs.py ├── aea-ledger-cosmos │ ├── LICENSE │ ├── MANIFEST.in │ ├── README.md │ ├── aea_ledger_cosmos │ │ ├── __init__.py │ │ └── cosmos.py │ ├── pyproject.toml │ ├── setup.py │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── data │ │ ├── cosmos_private_key.txt │ │ └── dummy_contract │ │ │ ├── __init__.py │ │ │ ├── build │ │ │ ├── some.json │ │ │ └── some.wasm │ │ │ ├── contract.py │ │ │ └── contract.yaml │ │ └── test_cosmos.py ├── aea-ledger-ethereum │ ├── LICENSE │ ├── MANIFEST.in │ ├── README.md │ ├── aea_ledger_ethereum │ │ ├── __init__.py │ │ └── ethereum.py │ ├── pyproject.toml │ ├── setup.py │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── data │ │ ├── dummy_contract │ │ │ ├── __init__.py │ │ │ ├── build │ │ │ │ ├── some.json │ │ │ │ └── some.wasm │ │ │ ├── contract.py │ │ │ └── contract.yaml │ │ └── ethereum_private_key.txt │ │ ├── docker_image.py │ │ ├── test_ethereum.py │ │ └── test_ethereum_contract.py └── aea-ledger-fetchai │ ├── LICENSE │ ├── MANIFEST.in │ ├── README.md │ ├── aea_ledger_fetchai │ ├── __init__.py │ ├── _cosmos.py │ └── fetchai.py │ ├── pyproject.toml │ ├── setup.py │ └── tests │ ├── __init__.py │ ├── conftest.py │ ├── data │ └── dummy_contract │ │ ├── __init__.py │ │ ├── build │ │ ├── some.json │ │ └── some.wasm │ │ ├── contract.py │ │ └── contract.yaml │ └── test_fetchai.py ├── poetry.lock ├── protolint.yaml ├── pyproject.toml ├── pytest.ini ├── scripts ├── NOTES.md ├── RELEASE_PROCESS.md ├── __init__.py ├── acn │ ├── Dockerfile │ ├── Dockerfile.dev │ ├── README.md │ ├── build_upload_img.sh │ ├── helm-chart │ │ ├── Chart.yaml │ │ ├── templates │ │ │ ├── acnnode.yaml │ │ │ ├── boostrapistio.yaml │ │ │ ├── bootstrapnode.yaml │ │ │ ├── bootstrapsecret.yaml │ │ │ ├── dns.yaml │ │ │ ├── istio.yaml │ │ │ └── secret.yaml │ │ └── values.yaml │ ├── k8s │ │ ├── deployment.yaml │ │ ├── dns.yaml │ │ ├── istio.yaml │ │ └── secret.yaml │ ├── k8s_deploy_acn_node.py │ └── run_acn_node_standalone.py ├── bump_aea_version.py ├── bump_year.sh ├── check_copyright_notice.py ├── check_doc_links.py ├── check_imports_and_dependencies.py ├── check_package_versions_in_docs.py ├── check_packages.py ├── check_pipfile_and_toxini.py ├── common.py ├── deploy_to_registry.py ├── freeze_dependencies.py ├── generate_all_protocols.py ├── generate_api_docs.py ├── generate_ipfs_hashes.py ├── install.ps1 ├── install.sh ├── ledger_network_update.py ├── oef │ ├── launch.py │ ├── launch_config.json │ └── node_config.json ├── parse_main_dependencies_from_lock.py ├── spell-check.sh ├── update_package_versions.py ├── update_plugin_versions.py ├── update_symlinks_cross_platform.py └── whitelist.py ├── setup.cfg ├── strategy.ini ├── tests ├── __init__.py ├── common │ ├── __init__.py │ ├── docker_image.py │ ├── mocks.py │ ├── oef_search_pluto_scripts │ │ ├── launch.py │ │ ├── launch_config.json │ │ └── node_config.json │ ├── pexpect_popen.py │ └── utils.py ├── conftest.py ├── data │ ├── __init__.py │ ├── aea-config.example.yaml │ ├── aea-config.example_multipage.yaml │ ├── aea-config.example_w_keys.yaml │ ├── certs │ │ ├── server.crt │ │ ├── server.csr │ │ └── server.key │ ├── cosmos_private_key.txt │ ├── custom_crypto.py │ ├── dependencies_skill │ │ ├── __init__.py │ │ └── skill.yaml │ ├── dot_env_file │ ├── dummy_aea │ │ ├── __init__.py │ │ ├── aea-config.yaml │ │ ├── bad_requirements.txt │ │ ├── connections │ │ │ └── __init__.py │ │ ├── contracts │ │ │ └── __init__.py │ │ ├── cosmos_private_key.txt │ │ ├── default_private_key.pem │ │ ├── ethereum_private_key.txt │ │ ├── fetchai_private_key.txt │ │ ├── protocols │ │ │ └── __init__.py │ │ ├── requirements.txt │ │ ├── skills │ │ │ ├── __init__.py │ │ │ └── dummy │ │ └── vendor │ │ │ ├── __init__.py │ │ │ └── fetchai │ │ │ ├── __init__.py │ │ │ ├── connections │ │ │ ├── __init__.py │ │ │ ├── local │ │ │ └── p2p_libp2p │ │ │ ├── contracts │ │ │ ├── __init__.py │ │ │ └── erc1155 │ │ │ ├── protocols │ │ │ ├── __init__.py │ │ │ ├── acn │ │ │ ├── default │ │ │ ├── fipa │ │ │ ├── oef_search │ │ │ ├── signing │ │ │ └── state_update │ │ │ └── skills │ │ │ ├── __init__.py │ │ │ └── error │ ├── dummy_connection │ │ ├── __init__.py │ │ ├── connection.py │ │ └── connection.yaml │ ├── dummy_contract │ │ ├── __init__.py │ │ ├── build │ │ │ ├── some.json │ │ │ └── some.wasm │ │ ├── contract.py │ │ └── contract.yaml │ ├── dummy_protocol │ │ └── protocol.yaml │ ├── dummy_skill │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── dummy.py │ │ ├── dummy_subpackage │ │ │ ├── __init__.py │ │ │ └── foo.py │ │ ├── handlers.py │ │ ├── skill.yaml │ │ └── tasks.py │ ├── ethereum_private_key.txt │ ├── ethereum_private_key_two.txt │ ├── exception_skill │ │ ├── __init__.py │ │ ├── behaviours.py │ │ ├── handlers.py │ │ ├── skill.yaml │ │ └── tasks.py │ ├── fetchai_private_key.txt │ ├── fetchai_private_key_wrong.txt │ ├── generator │ │ ├── __init__.py │ │ ├── t_protocol │ │ │ ├── __init__.py │ │ │ ├── custom_types.py │ │ │ ├── dialogues.py │ │ │ ├── message.py │ │ │ ├── protocol.yaml │ │ │ ├── serialization.py │ │ │ ├── t_protocol.proto │ │ │ └── t_protocol_pb2.py │ │ └── t_protocol_no_ct │ │ │ ├── __init__.py │ │ │ ├── dialogues.py │ │ │ ├── message.py │ │ │ ├── protocol.yaml │ │ │ ├── serialization.py │ │ │ ├── t_protocol_no_ct.proto │ │ │ └── t_protocol_no_ct_pb2.py │ ├── gym-connection.yaml │ ├── hashes.csv │ ├── petstore_sim.yaml │ ├── sample_specification.yaml │ └── sample_specification_no_custom_types.yaml ├── list_of_packages_for_aea_tests.txt ├── oracle_contract_address.txt ├── test_aea │ ├── __init__.py │ ├── test_act_storage.py │ ├── test_aea.py │ ├── test_aea_builder.py │ ├── test_agent.py │ ├── test_agent_loop.py │ ├── test_cli │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── test_add │ │ │ ├── __init__.py │ │ │ ├── test_connection.py │ │ │ ├── test_contract.py │ │ │ ├── test_generic.py │ │ │ ├── test_protocol.py │ │ │ └── test_skill.py │ │ ├── test_add_key.py │ │ ├── test_build.py │ │ ├── test_config.py │ │ ├── test_create.py │ │ ├── test_delete.py │ │ ├── test_eject.py │ │ ├── test_fetch.py │ │ ├── test_fingerprint.py │ │ ├── test_freeze.py │ │ ├── test_generate │ │ │ ├── __init__.py │ │ │ ├── test_generate.py │ │ │ └── test_protocols.py │ │ ├── test_generate_key.py │ │ ├── test_generate_wealth.py │ │ ├── test_get_address.py │ │ ├── test_get_multiaddress.py │ │ ├── test_get_public_key.py │ │ ├── test_get_wealth.py │ │ ├── test_init.py │ │ ├── test_install.py │ │ ├── test_interact.py │ │ ├── test_issue_certificates.py │ │ ├── test_launch.py │ │ ├── test_launch_end_to_end.py │ │ ├── test_list.py │ │ ├── test_local_registry_update.py │ │ ├── test_loggers.py │ │ ├── test_login.py │ │ ├── test_logout.py │ │ ├── test_misc.py │ │ ├── test_plugin.py │ │ ├── test_publish.py │ │ ├── test_push.py │ │ ├── test_register.py │ │ ├── test_registry │ │ │ ├── __init__.py │ │ │ ├── test_add.py │ │ │ ├── test_fetch.py │ │ │ ├── test_login.py │ │ │ ├── test_logout.py │ │ │ ├── test_publish.py │ │ │ ├── test_push.py │ │ │ ├── test_registration.py │ │ │ └── test_utils.py │ │ ├── test_remove │ │ │ ├── __init__.py │ │ │ ├── test_base.py │ │ │ ├── test_connection.py │ │ │ ├── test_contract.py │ │ │ ├── test_dependencies.py │ │ │ ├── test_protocol.py │ │ │ └── test_skill.py │ │ ├── test_remove_key.py │ │ ├── test_reset_password.py │ │ ├── test_run.py │ │ ├── test_scaffold │ │ │ ├── __init__.py │ │ │ ├── test_connection.py │ │ │ ├── test_decision_maker_handler.py │ │ │ ├── test_error_handler.py │ │ │ ├── test_generic.py │ │ │ ├── test_protocols.py │ │ │ └── test_skills.py │ │ ├── test_search.py │ │ ├── test_transfer.py │ │ ├── test_upgrade.py │ │ ├── test_utils │ │ │ ├── __init__.py │ │ │ ├── test_config.py │ │ │ └── test_utils.py │ │ └── tools_for_testing.py │ ├── test_components │ │ ├── __init__.py │ │ ├── test_base.py │ │ ├── test_loader.py │ │ └── test_utils.py │ ├── test_configurations │ │ ├── __init__.py │ │ ├── test_aea_config.py │ │ ├── test_base.py │ │ ├── test_loader.py │ │ ├── test_manager.py │ │ ├── test_pypi.py │ │ ├── test_schema.py │ │ ├── test_utils.py │ │ └── test_validation.py │ ├── test_connections │ │ ├── __init__.py │ │ ├── test_base.py │ │ ├── test_scaffold.py │ │ └── test_sync_connection.py │ ├── test_context │ │ ├── __init__.py │ │ └── test_base.py │ ├── test_contracts │ │ ├── __init__.py │ │ └── test_base.py │ ├── test_crypto │ │ ├── __init__.py │ │ ├── test_helpers.py │ │ ├── test_ledger_apis.py │ │ ├── test_password_end2end.py │ │ ├── test_registries.py │ │ ├── test_registry │ │ │ ├── __init__.py │ │ │ ├── test_crypto_registry.py │ │ │ ├── test_ledger_api_registry.py │ │ │ └── test_misc.py │ │ └── test_wallet.py │ ├── test_decision_maker │ │ ├── __init__.py │ │ ├── test_default.py │ │ ├── test_gop.py │ │ ├── test_ownership_state.py │ │ ├── test_preferences.py │ │ └── test_scaffold.py │ ├── test_error_handler │ │ ├── __init__.py │ │ ├── test_base.py │ │ └── test_scaffold.py │ ├── test_exceptions.py │ ├── test_helpers │ │ ├── __init__.py │ │ ├── test_acn │ │ │ ├── __init__.py │ │ │ ├── test_agent_record.py │ │ │ └── test_uri.py │ │ ├── test_async_friendly_queue.py │ │ ├── test_async_utils.py │ │ ├── test_base.py │ │ ├── test_env_vars.py │ │ ├── test_exec_timeout.py │ │ ├── test_file_io.py │ │ ├── test_install_dependency.py │ │ ├── test_io.py │ │ ├── test_ipfs │ │ │ ├── __init__.py │ │ │ └── test_base.py │ │ ├── test_logging.py │ │ ├── test_multiaddr.py │ │ ├── test_multiple_executor.py │ │ ├── test_pipe │ │ │ ├── __init__.py │ │ │ └── test_pipe.py │ │ ├── test_preference_representations │ │ │ ├── __init__.py │ │ │ └── test_base.py │ │ ├── test_profiling.py │ │ ├── test_search │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── test_generic.py │ │ │ └── test_models.py │ │ ├── test_serializers.py │ │ ├── test_storage.py │ │ ├── test_sym_link.py │ │ ├── test_transaction │ │ │ ├── __init__.py │ │ │ └── test_base.py │ │ └── test_yaml_utils.py │ ├── test_identity │ │ ├── __init__.py │ │ └── test_base.py │ ├── test_launcher.py │ ├── test_mail │ │ ├── __init__.py │ │ └── test_base.py │ ├── test_multiplexer.py │ ├── test_package_loading.py │ ├── test_protocols │ │ ├── __init__.py │ │ ├── test_base.py │ │ ├── test_dialogue │ │ │ ├── __init__.py │ │ │ ├── test_base.py │ │ │ └── test_msg_resolve.py │ │ ├── test_generator │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── test_common.py │ │ │ ├── test_end_to_end.py │ │ │ ├── test_extract_specification.py │ │ │ ├── test_generator.py │ │ │ └── test_validate.py │ │ └── test_scaffold.py │ ├── test_registries │ │ ├── __init__.py │ │ ├── test_base.py │ │ └── test_filter.py │ ├── test_runner.py │ ├── test_runtime.py │ ├── test_skills │ │ ├── __init__.py │ │ ├── test_base.py │ │ ├── test_behaviours.py │ │ ├── test_error.py │ │ ├── test_scaffold.py │ │ ├── test_task_subprocess.py │ │ └── test_tasks.py │ ├── test_task.py │ └── test_test_tools │ │ ├── __init__.py │ │ ├── test_click_testing.py │ │ ├── test_test_cases.py │ │ ├── test_test_contract.py │ │ └── test_test_skill.py ├── test_aea_core_packages │ ├── test_connections │ │ ├── test_http_client │ │ │ ├── __init__.py │ │ │ └── test_http_client.py │ │ ├── test_http_server │ │ │ ├── __init__.py │ │ │ ├── test_http_server.py │ │ │ └── test_http_server_and_client.py │ │ └── test_ledger │ │ │ ├── __init__.py │ │ │ ├── test_contract_api.py │ │ │ └── test_ledger_api.py │ ├── test_contracts │ │ ├── __init__.py │ │ └── test_erc1155 │ │ │ ├── __init__.py │ │ │ └── test_contract.py │ └── test_skills_integration │ │ ├── test_echo.py │ │ ├── test_generic.py │ │ ├── test_hello_world.py │ │ └── test_http_echo.py ├── test_aea_extra │ ├── __init__.py │ └── test_manager │ │ ├── __init__.py │ │ ├── test_manager.py │ │ └── test_utils.py ├── test_docs │ ├── __init__.py │ ├── helper.py │ ├── test_agent_vs_aea │ │ ├── __init__.py │ │ ├── agent_code_block.py │ │ └── test_agent_vs_aea.py │ ├── test_bash_yaml │ │ ├── __init__.py │ │ ├── md_files │ │ │ ├── __init__.py │ │ │ ├── bash-aggregation-demo.md │ │ │ ├── bash-aries-cloud-agent-demo.md │ │ │ ├── bash-car-park-skills.md │ │ │ ├── bash-cli-vs-programmatic-aeas.md │ │ │ ├── bash-config.md │ │ │ ├── bash-connection.md │ │ │ ├── bash-contract.md │ │ │ ├── bash-decision-maker.md │ │ │ ├── bash-deployment.md │ │ │ ├── bash-erc1155-skills.md │ │ │ ├── bash-generic-skills-step-by-step.md │ │ │ ├── bash-generic-skills.md │ │ │ ├── bash-gym-example.md │ │ │ ├── bash-gym-skill.md │ │ │ ├── bash-http-connection-and-skill.md │ │ │ ├── bash-language-agnostic-definition.md │ │ │ ├── bash-ledger-integration.md │ │ │ ├── bash-logging.md │ │ │ ├── bash-ml-skills.md │ │ │ ├── bash-oracle-demo.md │ │ │ ├── bash-orm-integration.md │ │ │ ├── bash-p2p-connection.md │ │ │ ├── bash-package-imports.md │ │ │ ├── bash-performance-benchmark.md │ │ │ ├── bash-por.md │ │ │ ├── bash-protocol-generator.md │ │ │ ├── bash-quickstart.md │ │ │ ├── bash-raspberry-set-up.md │ │ │ ├── bash-scaffolding.md │ │ │ ├── bash-skill-guide.md │ │ │ ├── bash-skill.md │ │ │ ├── bash-tac-skills-contract.md │ │ │ ├── bash-tac-skills.md │ │ │ ├── bash-tac.md │ │ │ ├── bash-thermometer-skills.md │ │ │ ├── bash-wealth.md │ │ │ └── bash-weather-skills.md │ │ └── test_demo_docs.py │ ├── test_build_aea_programmatically │ │ ├── __init__.py │ │ ├── programmatic_aea.py │ │ └── test_programmatic_aea.py │ ├── test_cli_commands.py │ ├── test_cli_vs_programmatic_aeas │ │ ├── __init__.py │ │ ├── programmatic_aea.py │ │ └── test_cli_vs_programmatic_aea.py │ ├── test_data_models.py │ ├── test_decision_maker_transaction │ │ ├── __init__.py │ │ ├── decision_maker_transaction.py │ │ └── test_decision_maker_transaction.py │ ├── test_docs_http_connection_and_skill.py │ ├── test_docs_protocol.py │ ├── test_docs_skill.py │ ├── test_generic_step_by_step_guide │ │ ├── __init__.py │ │ └── test_generic_step_by_step_guide.py │ ├── test_generic_storage.py │ ├── test_language_agnostic_definition.py │ ├── test_ledger_integration.py │ ├── test_multiagent_manager.py │ ├── test_multiplexer_standalone │ │ ├── __init__.py │ │ ├── multiplexer_standalone.py │ │ └── test_multiplexer_standalone.py │ ├── test_orm_integration │ │ ├── __init__.py │ │ ├── orm_seller_strategy.py │ │ └── test_orm_integration.py │ ├── test_query_language.py │ ├── test_quickstart.py │ ├── test_simple_oef_usage.py │ ├── test_skill_guide │ │ ├── __init__.py │ │ └── test_skill_guide.py │ ├── test_skill_testing.py │ └── test_standalone_transaction │ │ ├── __init__.py │ │ ├── standalone_transaction.py │ │ └── test_standalone_transaction.py ├── test_examples │ ├── __init__.py │ ├── test_gym_ex.py │ └── test_http_client_connection_to_aries_cloud_agent.py ├── test_packages │ ├── __init__.py │ ├── test_connections │ │ ├── __init__.py │ │ ├── test_p2p_libp2p │ │ │ ├── __init__.py │ │ │ ├── test_aea_cli.py │ │ │ ├── test_build.py │ │ │ ├── test_communication.py │ │ │ ├── test_errors.py │ │ │ ├── test_fault_tolerance.py │ │ │ ├── test_integration.py │ │ │ ├── test_public_dht.py │ │ │ └── test_slow_queue.py │ │ ├── test_prometheus │ │ │ ├── __init__.py │ │ │ └── test_prometheus.py │ │ └── test_webhook │ │ │ ├── __init__.py │ │ │ └── test_webhook.py │ ├── test_contracts │ │ └── __init__.py │ ├── test_protocols │ │ ├── __init__.py │ │ ├── test_aggregation.py │ │ ├── test_ml_trade.py │ │ └── test_prometheus.py │ ├── test_skills │ │ ├── __init__.py │ │ ├── test_advanced_data_request │ │ │ ├── __init__.py │ │ │ ├── test_behaviours.py │ │ │ └── test_handlers.py │ │ ├── test_aries_alice │ │ │ ├── __init__.py │ │ │ ├── intermediate_class.py │ │ │ ├── test_behaviours.py │ │ │ ├── test_dialogues.py │ │ │ ├── test_handlers.py │ │ │ └── test_strategy.py │ │ ├── test_aries_faber │ │ │ ├── __init__.py │ │ │ ├── intermediate_class.py │ │ │ ├── test_behaviours.py │ │ │ ├── test_dialogues.py │ │ │ ├── test_handlers.py │ │ │ └── test_strategy.py │ │ ├── test_carpark_detection │ │ │ ├── __init__.py │ │ │ ├── temp_files_placeholder │ │ │ │ └── detection_results.db │ │ │ ├── test_database.py │ │ │ └── test_strategy.py │ │ ├── test_confirmation_aw1 │ │ │ ├── __init__.py │ │ │ ├── test_behaviours.py │ │ │ ├── test_dialogues.py │ │ │ ├── test_handlers.py │ │ │ ├── test_registration_db.py │ │ │ └── test_strategy.py │ │ ├── test_confirmation_aw2 │ │ │ ├── __init__.py │ │ │ ├── intermediate_class.py │ │ │ ├── test_handlers.py │ │ │ ├── test_registration_db.py │ │ │ └── test_strategy.py │ │ ├── test_confirmation_aw3 │ │ │ ├── __init__.py │ │ │ ├── intermediate_class.py │ │ │ ├── test_behaviours.py │ │ │ ├── test_dialogues.py │ │ │ ├── test_handlers.py │ │ │ ├── test_registration_db.py │ │ │ └── test_strategy.py │ │ ├── test_erc1155_deploy │ │ │ ├── __init__.py │ │ │ ├── intermediate_class.py │ │ │ ├── test_behaviours.py │ │ │ ├── test_dialogues.py │ │ │ ├── test_handlers.py │ │ │ └── test_strategy.py │ │ ├── test_fetch_block │ │ │ ├── __init__.py │ │ │ ├── test_behaviours.py │ │ │ └── test_handlers.py │ │ ├── test_hello_world │ │ │ ├── __init__.py │ │ │ └── test_behaviours.py │ │ ├── test_http_echo │ │ │ ├── __init__.py │ │ │ ├── test_dialogues.py │ │ │ └── test_handlers.py │ │ ├── test_ml_data_provider │ │ │ ├── __init__.py │ │ │ ├── test_dialogues.py │ │ │ ├── test_handlers.py │ │ │ └── test_strategy.py │ │ ├── test_ml_train │ │ │ ├── __init__.py │ │ │ ├── helpers.py │ │ │ ├── test_behaviours.py │ │ │ ├── test_dialogues.py │ │ │ ├── test_handlers.py │ │ │ ├── test_strategy.py │ │ │ └── test_task.py │ │ ├── test_registration_aw1 │ │ │ ├── __init__.py │ │ │ ├── intermediate_class.py │ │ │ ├── test_behaviours.py │ │ │ ├── test_dialogues.py │ │ │ ├── test_handlers.py │ │ │ └── test_strategy.py │ │ ├── test_simple_aggregation │ │ │ ├── __init__.py │ │ │ ├── test_behaviours.py │ │ │ ├── test_handlers.py │ │ │ └── test_strategy.py │ │ ├── test_simple_buyer │ │ │ └── __init__.py │ │ ├── test_simple_data_request │ │ │ ├── __init__.py │ │ │ ├── intermediate_class.py │ │ │ ├── test_behaviours.py │ │ │ ├── test_dialogues.py │ │ │ └── test_handlers.py │ │ ├── test_simple_oracle │ │ │ ├── __init__.py │ │ │ ├── test_behaviours.py │ │ │ └── test_handlers.py │ │ ├── test_simple_oracle_client │ │ │ ├── __init__.py │ │ │ ├── test_behaviours.py │ │ │ └── test_handlers.py │ │ ├── test_simple_seller │ │ │ ├── __init__.py │ │ │ └── test_strategy.py │ │ ├── test_simple_service_registration │ │ │ ├── __init__.py │ │ │ ├── test_behaviours.py │ │ │ ├── test_dialogues.py │ │ │ ├── test_handlers.py │ │ │ └── test_strategy.py │ │ ├── test_simple_service_search │ │ │ ├── __init__.py │ │ │ ├── test_behaviours.py │ │ │ ├── test_dialogues.py │ │ │ ├── test_handlers.py │ │ │ └── test_strategy.py │ │ ├── test_tac_control │ │ │ ├── __init__.py │ │ │ ├── test_behaviours.py │ │ │ ├── test_dialogues.py │ │ │ ├── test_game.py │ │ │ ├── test_handlers.py │ │ │ ├── test_helpers.py │ │ │ └── test_parameters.py │ │ ├── test_tac_control_contract │ │ │ ├── __init__.py │ │ │ ├── test_behaviours.py │ │ │ ├── test_dialogues.py │ │ │ ├── test_handlers.py │ │ │ ├── test_helpers.py │ │ │ └── test_parameters.py │ │ ├── test_tac_negotiation │ │ │ ├── __init__.py │ │ │ ├── test_behaviours.py │ │ │ ├── test_dialogues.py │ │ │ ├── test_handlers.py │ │ │ ├── test_helpers.py │ │ │ ├── test_logical.py │ │ │ ├── test_strategy.py │ │ │ └── test_transactions.py │ │ ├── test_tac_participation │ │ │ ├── __init__.py │ │ │ ├── test_behaviours.py │ │ │ ├── test_dialogues.py │ │ │ ├── test_game.py │ │ │ └── test_handlers.py │ │ └── test_thermometer │ │ │ ├── __init__.py │ │ │ └── test_strategy.py │ └── test_skills_integration │ │ ├── __init__.py │ │ ├── test_aries_demo.py │ │ ├── test_carpark.py │ │ ├── test_coin_price.py │ │ ├── test_erc1155.py │ │ ├── test_fetch_block.py │ │ ├── test_generic.py │ │ ├── test_gym.py │ │ ├── test_ml_skills.py │ │ ├── test_simple_aggregation.py │ │ ├── test_simple_oracle.py │ │ ├── test_tac.py │ │ ├── test_thermometer.py │ │ └── test_weather.py └── test_packages_for_aea_tests │ ├── __init__.py │ ├── test_connections │ ├── __init__.py │ ├── test_gym │ │ ├── __init__.py │ │ └── test_gym.py │ ├── test_local │ │ ├── __init__.py │ │ ├── test_misc.py │ │ └── test_search_services.py │ ├── test_oef │ │ ├── __init__.py │ │ ├── test_communication.py │ │ ├── test_models.py │ │ └── test_oef_serializer.py │ ├── test_p2p_libp2p_client │ │ ├── __init__.py │ │ ├── test_aea_cli.py │ │ ├── test_communication.py │ │ └── test_errors.py │ ├── test_p2p_libp2p_mailbox │ │ ├── __init__.py │ │ ├── test_aea_cli.py │ │ ├── test_communication.py │ │ ├── test_errors.py │ │ └── test_mailbox_service.py │ ├── test_p2p_stub │ │ ├── __init__.py │ │ └── test_p2p_stub.py │ ├── test_soef │ │ ├── __init__.py │ │ ├── models.py │ │ ├── test_soef.py │ │ └── test_soef_integration.py │ ├── test_stub │ │ ├── __init__.py │ │ └── test_stub.py │ └── test_tcp │ │ ├── __init__.py │ │ ├── test_base.py │ │ └── test_communication.py │ ├── test_protocols │ ├── test_acn.py │ ├── test_contract_api.py │ ├── test_default.py │ ├── test_fipa.py │ ├── test_gym.py │ ├── test_http.py │ ├── test_ledger_api.py │ ├── test_oef_search.py │ ├── test_register.py │ ├── test_signing.py │ ├── test_state_update.py │ └── test_tac.py │ └── test_skills │ ├── __init__.py │ ├── test_echo │ ├── __init__.py │ ├── test_behaviours.py │ ├── test_dialogues.py │ └── test_handlers.py │ ├── test_erc1155_client │ ├── __init__.py │ ├── intermediate_class.py │ ├── test_behaviours.py │ ├── test_dialogues.py │ ├── test_handlers.py │ └── test_strategy.py │ ├── test_generic_buyer │ ├── __init__.py │ ├── test_behaviours.py │ ├── test_dialogues.py │ ├── test_handlers.py │ └── test_models.py │ ├── test_generic_seller │ ├── __init__.py │ ├── test_behaviours.py │ ├── test_dialogues.py │ ├── test_handlers.py │ └── test_models.py │ ├── test_gym │ ├── __init__.py │ ├── helpers.py │ ├── intermediate_class.py │ ├── test_dialogues.py │ ├── test_handlers.py │ ├── test_helpers.py │ ├── test_rl_agent.py │ └── test_task.py │ └── test_weather_station │ ├── __init__.py │ ├── test_dummy_weather_station_data.py │ ├── test_registration_db.py │ └── test_strategy.py ├── tox.ini └── user-image ├── Dockerfile ├── README.md ├── docker-env.sh └── scripts ├── docker-build-img.sh └── docker-publish-img.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/.dockerignore -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/.github/PULL_REQUEST_TEMPLATE/release.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/docs_pr_preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/.github/workflows/docs_pr_preview.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/.gitignore -------------------------------------------------------------------------------- /.spelling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/.spelling -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/DEVELOPING.md -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/SECURITY.md -------------------------------------------------------------------------------- /aea/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/__init__.py -------------------------------------------------------------------------------- /aea/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/__version__.py -------------------------------------------------------------------------------- /aea/abstract_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/abstract_agent.py -------------------------------------------------------------------------------- /aea/aea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/aea.py -------------------------------------------------------------------------------- /aea/aea_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/aea_builder.py -------------------------------------------------------------------------------- /aea/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/agent.py -------------------------------------------------------------------------------- /aea/agent_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/agent_loop.py -------------------------------------------------------------------------------- /aea/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/__init__.py -------------------------------------------------------------------------------- /aea/cli/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/__main__.py -------------------------------------------------------------------------------- /aea/cli/add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/add.py -------------------------------------------------------------------------------- /aea/cli/add_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/add_key.py -------------------------------------------------------------------------------- /aea/cli/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/build.py -------------------------------------------------------------------------------- /aea/cli/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/config.py -------------------------------------------------------------------------------- /aea/cli/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/core.py -------------------------------------------------------------------------------- /aea/cli/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/create.py -------------------------------------------------------------------------------- /aea/cli/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/delete.py -------------------------------------------------------------------------------- /aea/cli/eject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/eject.py -------------------------------------------------------------------------------- /aea/cli/fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/fetch.py -------------------------------------------------------------------------------- /aea/cli/fingerprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/fingerprint.py -------------------------------------------------------------------------------- /aea/cli/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/freeze.py -------------------------------------------------------------------------------- /aea/cli/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/generate.py -------------------------------------------------------------------------------- /aea/cli/generate_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/generate_key.py -------------------------------------------------------------------------------- /aea/cli/generate_wealth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/generate_wealth.py -------------------------------------------------------------------------------- /aea/cli/get_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/get_address.py -------------------------------------------------------------------------------- /aea/cli/get_multiaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/get_multiaddress.py -------------------------------------------------------------------------------- /aea/cli/get_public_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/get_public_key.py -------------------------------------------------------------------------------- /aea/cli/get_wealth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/get_wealth.py -------------------------------------------------------------------------------- /aea/cli/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/init.py -------------------------------------------------------------------------------- /aea/cli/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/install.py -------------------------------------------------------------------------------- /aea/cli/interact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/interact.py -------------------------------------------------------------------------------- /aea/cli/issue_certificates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/issue_certificates.py -------------------------------------------------------------------------------- /aea/cli/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/launch.py -------------------------------------------------------------------------------- /aea/cli/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/list.py -------------------------------------------------------------------------------- /aea/cli/local_registry_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/local_registry_sync.py -------------------------------------------------------------------------------- /aea/cli/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/login.py -------------------------------------------------------------------------------- /aea/cli/logout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/logout.py -------------------------------------------------------------------------------- /aea/cli/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/plugin.py -------------------------------------------------------------------------------- /aea/cli/publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/publish.py -------------------------------------------------------------------------------- /aea/cli/push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/push.py -------------------------------------------------------------------------------- /aea/cli/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/register.py -------------------------------------------------------------------------------- /aea/cli/registry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/registry/__init__.py -------------------------------------------------------------------------------- /aea/cli/registry/add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/registry/add.py -------------------------------------------------------------------------------- /aea/cli/registry/fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/registry/fetch.py -------------------------------------------------------------------------------- /aea/cli/registry/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/registry/login.py -------------------------------------------------------------------------------- /aea/cli/registry/logout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/registry/logout.py -------------------------------------------------------------------------------- /aea/cli/registry/publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/registry/publish.py -------------------------------------------------------------------------------- /aea/cli/registry/push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/registry/push.py -------------------------------------------------------------------------------- /aea/cli/registry/registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/registry/registration.py -------------------------------------------------------------------------------- /aea/cli/registry/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/registry/settings.py -------------------------------------------------------------------------------- /aea/cli/registry/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/registry/utils.py -------------------------------------------------------------------------------- /aea/cli/remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/remove.py -------------------------------------------------------------------------------- /aea/cli/remove_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/remove_key.py -------------------------------------------------------------------------------- /aea/cli/reset_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/reset_password.py -------------------------------------------------------------------------------- /aea/cli/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/run.py -------------------------------------------------------------------------------- /aea/cli/scaffold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/scaffold.py -------------------------------------------------------------------------------- /aea/cli/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/search.py -------------------------------------------------------------------------------- /aea/cli/transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/transfer.py -------------------------------------------------------------------------------- /aea/cli/upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/upgrade.py -------------------------------------------------------------------------------- /aea/cli/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/utils/__init__.py -------------------------------------------------------------------------------- /aea/cli/utils/click_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/utils/click_utils.py -------------------------------------------------------------------------------- /aea/cli/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/utils/config.py -------------------------------------------------------------------------------- /aea/cli/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/utils/constants.py -------------------------------------------------------------------------------- /aea/cli/utils/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/utils/context.py -------------------------------------------------------------------------------- /aea/cli/utils/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/utils/decorators.py -------------------------------------------------------------------------------- /aea/cli/utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/utils/exceptions.py -------------------------------------------------------------------------------- /aea/cli/utils/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/utils/formatting.py -------------------------------------------------------------------------------- /aea/cli/utils/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/utils/generic.py -------------------------------------------------------------------------------- /aea/cli/utils/loggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/utils/loggers.py -------------------------------------------------------------------------------- /aea/cli/utils/package_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/cli/utils/package_utils.py -------------------------------------------------------------------------------- /aea/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/common.py -------------------------------------------------------------------------------- /aea/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/components/__init__.py -------------------------------------------------------------------------------- /aea/components/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/components/base.py -------------------------------------------------------------------------------- /aea/components/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/components/loader.py -------------------------------------------------------------------------------- /aea/components/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/components/utils.py -------------------------------------------------------------------------------- /aea/configurations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/configurations/__init__.py -------------------------------------------------------------------------------- /aea/configurations/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/configurations/base.py -------------------------------------------------------------------------------- /aea/configurations/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/configurations/constants.py -------------------------------------------------------------------------------- /aea/configurations/data_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/configurations/data_types.py -------------------------------------------------------------------------------- /aea/configurations/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/configurations/loader.py -------------------------------------------------------------------------------- /aea/configurations/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/configurations/manager.py -------------------------------------------------------------------------------- /aea/configurations/pypi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/configurations/pypi.py -------------------------------------------------------------------------------- /aea/configurations/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/configurations/utils.py -------------------------------------------------------------------------------- /aea/configurations/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/configurations/validation.py -------------------------------------------------------------------------------- /aea/connections/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/connections/__init__.py -------------------------------------------------------------------------------- /aea/connections/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/connections/base.py -------------------------------------------------------------------------------- /aea/connections/scaffold/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/connections/scaffold/__init__.py -------------------------------------------------------------------------------- /aea/connections/scaffold/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/connections/scaffold/connection.py -------------------------------------------------------------------------------- /aea/connections/scaffold/connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/connections/scaffold/connection.yaml -------------------------------------------------------------------------------- /aea/connections/scaffold/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/connections/scaffold/readme.md -------------------------------------------------------------------------------- /aea/context/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/context/__init__.py -------------------------------------------------------------------------------- /aea/context/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/context/base.py -------------------------------------------------------------------------------- /aea/contracts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/contracts/__init__.py -------------------------------------------------------------------------------- /aea/contracts/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/contracts/base.py -------------------------------------------------------------------------------- /aea/contracts/scaffold/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/contracts/scaffold/__init__.py -------------------------------------------------------------------------------- /aea/contracts/scaffold/contract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/contracts/scaffold/contract.py -------------------------------------------------------------------------------- /aea/contracts/scaffold/contract.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/contracts/scaffold/contract.yaml -------------------------------------------------------------------------------- /aea/crypto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/crypto/__init__.py -------------------------------------------------------------------------------- /aea/crypto/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/crypto/base.py -------------------------------------------------------------------------------- /aea/crypto/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/crypto/helpers.py -------------------------------------------------------------------------------- /aea/crypto/ledger_apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/crypto/ledger_apis.py -------------------------------------------------------------------------------- /aea/crypto/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/crypto/plugin.py -------------------------------------------------------------------------------- /aea/crypto/registries/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/crypto/registries/__init__.py -------------------------------------------------------------------------------- /aea/crypto/registries/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/crypto/registries/base.py -------------------------------------------------------------------------------- /aea/crypto/wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/crypto/wallet.py -------------------------------------------------------------------------------- /aea/decision_maker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/decision_maker/__init__.py -------------------------------------------------------------------------------- /aea/decision_maker/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/decision_maker/base.py -------------------------------------------------------------------------------- /aea/decision_maker/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/decision_maker/default.py -------------------------------------------------------------------------------- /aea/decision_maker/gop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/decision_maker/gop.py -------------------------------------------------------------------------------- /aea/decision_maker/scaffold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/decision_maker/scaffold.py -------------------------------------------------------------------------------- /aea/error_handler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/error_handler/__init__.py -------------------------------------------------------------------------------- /aea/error_handler/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/error_handler/base.py -------------------------------------------------------------------------------- /aea/error_handler/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/error_handler/default.py -------------------------------------------------------------------------------- /aea/error_handler/scaffold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/error_handler/scaffold.py -------------------------------------------------------------------------------- /aea/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/exceptions.py -------------------------------------------------------------------------------- /aea/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/__init__.py -------------------------------------------------------------------------------- /aea/helpers/acn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/acn/__init__.py -------------------------------------------------------------------------------- /aea/helpers/acn/agent_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/acn/agent_record.py -------------------------------------------------------------------------------- /aea/helpers/acn/uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/acn/uri.py -------------------------------------------------------------------------------- /aea/helpers/async_friendly_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/async_friendly_queue.py -------------------------------------------------------------------------------- /aea/helpers/async_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/async_utils.py -------------------------------------------------------------------------------- /aea/helpers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/base.py -------------------------------------------------------------------------------- /aea/helpers/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/constants.py -------------------------------------------------------------------------------- /aea/helpers/env_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/env_vars.py -------------------------------------------------------------------------------- /aea/helpers/exception_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/exception_policy.py -------------------------------------------------------------------------------- /aea/helpers/exec_timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/exec_timeout.py -------------------------------------------------------------------------------- /aea/helpers/file_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/file_io.py -------------------------------------------------------------------------------- /aea/helpers/file_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/file_lock.py -------------------------------------------------------------------------------- /aea/helpers/http_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/http_requests.py -------------------------------------------------------------------------------- /aea/helpers/install_dependency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/install_dependency.py -------------------------------------------------------------------------------- /aea/helpers/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/io.py -------------------------------------------------------------------------------- /aea/helpers/ipfs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/ipfs/__init__.py -------------------------------------------------------------------------------- /aea/helpers/ipfs/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/ipfs/base.py -------------------------------------------------------------------------------- /aea/helpers/ipfs/pb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/ipfs/pb/__init__.py -------------------------------------------------------------------------------- /aea/helpers/ipfs/pb/merkledag.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/ipfs/pb/merkledag.proto -------------------------------------------------------------------------------- /aea/helpers/ipfs/pb/merkledag_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/ipfs/pb/merkledag_pb2.py -------------------------------------------------------------------------------- /aea/helpers/ipfs/pb/unixfs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/ipfs/pb/unixfs.proto -------------------------------------------------------------------------------- /aea/helpers/ipfs/pb/unixfs_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/ipfs/pb/unixfs_pb2.py -------------------------------------------------------------------------------- /aea/helpers/ipfs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/ipfs/utils.py -------------------------------------------------------------------------------- /aea/helpers/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/logging.py -------------------------------------------------------------------------------- /aea/helpers/multiaddr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/multiaddr/__init__.py -------------------------------------------------------------------------------- /aea/helpers/multiaddr/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/multiaddr/base.py -------------------------------------------------------------------------------- /aea/helpers/multiaddr/crypto.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/multiaddr/crypto.proto -------------------------------------------------------------------------------- /aea/helpers/multiaddr/crypto_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/multiaddr/crypto_pb2.py -------------------------------------------------------------------------------- /aea/helpers/multiple_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/multiple_executor.py -------------------------------------------------------------------------------- /aea/helpers/pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/pipe.py -------------------------------------------------------------------------------- /aea/helpers/profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/profiling.py -------------------------------------------------------------------------------- /aea/helpers/search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/search/__init__.py -------------------------------------------------------------------------------- /aea/helpers/search/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/search/generic.py -------------------------------------------------------------------------------- /aea/helpers/search/models.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/search/models.proto -------------------------------------------------------------------------------- /aea/helpers/search/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/search/models.py -------------------------------------------------------------------------------- /aea/helpers/search/models_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/search/models_pb2.py -------------------------------------------------------------------------------- /aea/helpers/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/serializers.py -------------------------------------------------------------------------------- /aea/helpers/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/storage/__init__.py -------------------------------------------------------------------------------- /aea/helpers/storage/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/storage/backends/__init__.py -------------------------------------------------------------------------------- /aea/helpers/storage/backends/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/storage/backends/base.py -------------------------------------------------------------------------------- /aea/helpers/storage/backends/binaries/README.txt: -------------------------------------------------------------------------------- 1 | json1.dll - is sqlite extension for windows python<3.9 2 | -------------------------------------------------------------------------------- /aea/helpers/storage/backends/sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/storage/backends/sqlite.py -------------------------------------------------------------------------------- /aea/helpers/storage/generic_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/storage/generic_storage.py -------------------------------------------------------------------------------- /aea/helpers/sym_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/sym_link.py -------------------------------------------------------------------------------- /aea/helpers/transaction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/transaction/__init__.py -------------------------------------------------------------------------------- /aea/helpers/transaction/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/transaction/base.py -------------------------------------------------------------------------------- /aea/helpers/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/win32.py -------------------------------------------------------------------------------- /aea/helpers/yaml_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/helpers/yaml_utils.py -------------------------------------------------------------------------------- /aea/identity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/identity/__init__.py -------------------------------------------------------------------------------- /aea/identity/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/identity/base.py -------------------------------------------------------------------------------- /aea/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/launcher.py -------------------------------------------------------------------------------- /aea/mail/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/mail/__init__.py -------------------------------------------------------------------------------- /aea/mail/base.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/mail/base.proto -------------------------------------------------------------------------------- /aea/mail/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/mail/base.py -------------------------------------------------------------------------------- /aea/mail/base_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/mail/base_pb2.py -------------------------------------------------------------------------------- /aea/manager/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/manager/__init__.py -------------------------------------------------------------------------------- /aea/manager/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/manager/manager.py -------------------------------------------------------------------------------- /aea/manager/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/manager/project.py -------------------------------------------------------------------------------- /aea/manager/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/manager/utils.py -------------------------------------------------------------------------------- /aea/multiplexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/multiplexer.py -------------------------------------------------------------------------------- /aea/protocols/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/protocols/__init__.py -------------------------------------------------------------------------------- /aea/protocols/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/protocols/base.py -------------------------------------------------------------------------------- /aea/protocols/dialogue/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/protocols/dialogue/__init__.py -------------------------------------------------------------------------------- /aea/protocols/dialogue/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/protocols/dialogue/base.py -------------------------------------------------------------------------------- /aea/protocols/generator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/protocols/generator/__init__.py -------------------------------------------------------------------------------- /aea/protocols/generator/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/protocols/generator/base.py -------------------------------------------------------------------------------- /aea/protocols/generator/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/protocols/generator/common.py -------------------------------------------------------------------------------- /aea/protocols/generator/isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/protocols/generator/isort.cfg -------------------------------------------------------------------------------- /aea/protocols/generator/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/protocols/generator/validate.py -------------------------------------------------------------------------------- /aea/protocols/scaffold/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/protocols/scaffold/__init__.py -------------------------------------------------------------------------------- /aea/protocols/scaffold/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/protocols/scaffold/message.py -------------------------------------------------------------------------------- /aea/protocols/scaffold/protocol.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/protocols/scaffold/protocol.yaml -------------------------------------------------------------------------------- /aea/protocols/scaffold/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/protocols/scaffold/serialization.py -------------------------------------------------------------------------------- /aea/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561. The aea package uses inline types. 2 | -------------------------------------------------------------------------------- /aea/registries/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/registries/__init__.py -------------------------------------------------------------------------------- /aea/registries/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/registries/base.py -------------------------------------------------------------------------------- /aea/registries/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/registries/filter.py -------------------------------------------------------------------------------- /aea/registries/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/registries/resources.py -------------------------------------------------------------------------------- /aea/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/runner.py -------------------------------------------------------------------------------- /aea/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/runtime.py -------------------------------------------------------------------------------- /aea/skills/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/skills/__init__.py -------------------------------------------------------------------------------- /aea/skills/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/skills/base.py -------------------------------------------------------------------------------- /aea/skills/behaviours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/skills/behaviours.py -------------------------------------------------------------------------------- /aea/skills/scaffold/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/skills/scaffold/__init__.py -------------------------------------------------------------------------------- /aea/skills/scaffold/behaviours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/skills/scaffold/behaviours.py -------------------------------------------------------------------------------- /aea/skills/scaffold/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/skills/scaffold/handlers.py -------------------------------------------------------------------------------- /aea/skills/scaffold/my_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/skills/scaffold/my_model.py -------------------------------------------------------------------------------- /aea/skills/scaffold/skill.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/skills/scaffold/skill.yaml -------------------------------------------------------------------------------- /aea/skills/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/skills/tasks.py -------------------------------------------------------------------------------- /aea/test_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/test_tools/__init__.py -------------------------------------------------------------------------------- /aea/test_tools/click_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/test_tools/click_testing.py -------------------------------------------------------------------------------- /aea/test_tools/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/test_tools/constants.py -------------------------------------------------------------------------------- /aea/test_tools/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/test_tools/exceptions.py -------------------------------------------------------------------------------- /aea/test_tools/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/test_tools/generic.py -------------------------------------------------------------------------------- /aea/test_tools/test_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/test_tools/test_cases.py -------------------------------------------------------------------------------- /aea/test_tools/test_contract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/test_tools/test_contract.py -------------------------------------------------------------------------------- /aea/test_tools/test_skill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/aea/test_tools/test_skill.py -------------------------------------------------------------------------------- /benchmark/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/Dockerfile -------------------------------------------------------------------------------- /benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/README.md -------------------------------------------------------------------------------- /benchmark/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/__init__.py -------------------------------------------------------------------------------- /benchmark/benchmark-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/benchmark-deployment.yaml -------------------------------------------------------------------------------- /benchmark/cases/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/cases/__init__.py -------------------------------------------------------------------------------- /benchmark/cases/cpu_burn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/cases/cpu_burn.py -------------------------------------------------------------------------------- /benchmark/cases/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/cases/helpers/__init__.py -------------------------------------------------------------------------------- /benchmark/cases/helpers/dummy_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/cases/helpers/dummy_handler.py -------------------------------------------------------------------------------- /benchmark/cases/react_speed_in_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/cases/react_speed_in_loop.py -------------------------------------------------------------------------------- /benchmark/checks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/checks/__init__.py -------------------------------------------------------------------------------- /benchmark/checks/check_decision_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/checks/check_decision_maker.py -------------------------------------------------------------------------------- /benchmark/checks/check_mem_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/checks/check_mem_usage.py -------------------------------------------------------------------------------- /benchmark/checks/check_multiagent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/checks/check_multiagent.py -------------------------------------------------------------------------------- /benchmark/checks/check_proactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/checks/check_proactive.py -------------------------------------------------------------------------------- /benchmark/checks/check_reactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/checks/check_reactive.py -------------------------------------------------------------------------------- /benchmark/checks/data/2020.09.05_17-49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/checks/data/2020.09.05_17-49.txt -------------------------------------------------------------------------------- /benchmark/checks/run_benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/checks/run_benchmark.sh -------------------------------------------------------------------------------- /benchmark/checks/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/checks/utils.py -------------------------------------------------------------------------------- /benchmark/framework/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/framework/__init__.py -------------------------------------------------------------------------------- /benchmark/framework/aea_test_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/framework/aea_test_wrapper.py -------------------------------------------------------------------------------- /benchmark/framework/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/framework/benchmark.py -------------------------------------------------------------------------------- /benchmark/framework/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/framework/cli.py -------------------------------------------------------------------------------- /benchmark/framework/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/framework/executor.py -------------------------------------------------------------------------------- /benchmark/framework/fake_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/framework/fake_connection.py -------------------------------------------------------------------------------- /benchmark/framework/func_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/framework/func_details.py -------------------------------------------------------------------------------- /benchmark/framework/report_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/framework/report_printer.py -------------------------------------------------------------------------------- /benchmark/run_from_branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/run_from_branch.sh -------------------------------------------------------------------------------- /benchmark/run_mem_check_in_cloud.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/benchmark/run_mem_check_in_cloud.sh -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/codecov.yml -------------------------------------------------------------------------------- /data/aea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/data/aea.png -------------------------------------------------------------------------------- /data/video-aea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/data/video-aea.png -------------------------------------------------------------------------------- /deploy-image/.aea/cli_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/deploy-image/.aea/cli_config.yaml -------------------------------------------------------------------------------- /deploy-image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/deploy-image/Dockerfile -------------------------------------------------------------------------------- /deploy-image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/deploy-image/README.md -------------------------------------------------------------------------------- /deploy-image/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/deploy-image/build.sh -------------------------------------------------------------------------------- /deploy-image/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/deploy-image/entrypoint.sh -------------------------------------------------------------------------------- /deploy-image/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/deploy-image/packages/__init__.py -------------------------------------------------------------------------------- /develop-image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/develop-image/Dockerfile -------------------------------------------------------------------------------- /develop-image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/develop-image/README.md -------------------------------------------------------------------------------- /develop-image/docker-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/develop-image/docker-env.sh -------------------------------------------------------------------------------- /develop-image/k8s/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/develop-image/k8s/deployment.yaml -------------------------------------------------------------------------------- /develop-image/scripts/docker-build-img.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/develop-image/scripts/docker-build-img.sh -------------------------------------------------------------------------------- /develop-image/skaffold.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/develop-image/skaffold.yaml -------------------------------------------------------------------------------- /docs/12-factor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/12-factor.md -------------------------------------------------------------------------------- /docs/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/Pipfile -------------------------------------------------------------------------------- /docs/acn-internals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/acn-internals.md -------------------------------------------------------------------------------- /docs/acn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/acn.md -------------------------------------------------------------------------------- /docs/aea-vs-mvc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/aea-vs-mvc.md -------------------------------------------------------------------------------- /docs/aeas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/aeas.md -------------------------------------------------------------------------------- /docs/agent-oriented-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/agent-oriented-development.md -------------------------------------------------------------------------------- /docs/agent-vs-aea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/agent-vs-aea.md -------------------------------------------------------------------------------- /docs/aggregation-demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/aggregation-demo.md -------------------------------------------------------------------------------- /docs/api/abstract_agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/abstract_agent.md -------------------------------------------------------------------------------- /docs/api/aea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/aea.md -------------------------------------------------------------------------------- /docs/api/aea_builder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/aea_builder.md -------------------------------------------------------------------------------- /docs/api/agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/agent.md -------------------------------------------------------------------------------- /docs/api/agent_loop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/agent_loop.md -------------------------------------------------------------------------------- /docs/api/common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/common.md -------------------------------------------------------------------------------- /docs/api/components/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/components/base.md -------------------------------------------------------------------------------- /docs/api/components/loader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/components/loader.md -------------------------------------------------------------------------------- /docs/api/components/utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/components/utils.md -------------------------------------------------------------------------------- /docs/api/configurations/base.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api/configurations/constants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/configurations/constants.md -------------------------------------------------------------------------------- /docs/api/configurations/data_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/configurations/data_types.md -------------------------------------------------------------------------------- /docs/api/configurations/loader.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api/configurations/manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/configurations/manager.md -------------------------------------------------------------------------------- /docs/api/configurations/pypi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/configurations/pypi.md -------------------------------------------------------------------------------- /docs/api/configurations/utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/configurations/utils.md -------------------------------------------------------------------------------- /docs/api/configurations/validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/configurations/validation.md -------------------------------------------------------------------------------- /docs/api/connections/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/connections/base.md -------------------------------------------------------------------------------- /docs/api/context/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/context/base.md -------------------------------------------------------------------------------- /docs/api/contracts/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/contracts/base.md -------------------------------------------------------------------------------- /docs/api/crypto/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/crypto/base.md -------------------------------------------------------------------------------- /docs/api/crypto/helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/crypto/helpers.md -------------------------------------------------------------------------------- /docs/api/crypto/ledger_apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/crypto/ledger_apis.md -------------------------------------------------------------------------------- /docs/api/crypto/plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/crypto/plugin.md -------------------------------------------------------------------------------- /docs/api/crypto/registries/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/crypto/registries/base.md -------------------------------------------------------------------------------- /docs/api/crypto/wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/crypto/wallet.md -------------------------------------------------------------------------------- /docs/api/decision_maker/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/decision_maker/base.md -------------------------------------------------------------------------------- /docs/api/decision_maker/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/decision_maker/default.md -------------------------------------------------------------------------------- /docs/api/decision_maker/gop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/decision_maker/gop.md -------------------------------------------------------------------------------- /docs/api/error_handler/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/error_handler/base.md -------------------------------------------------------------------------------- /docs/api/error_handler/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/error_handler/default.md -------------------------------------------------------------------------------- /docs/api/exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/exceptions.md -------------------------------------------------------------------------------- /docs/api/helpers/acn/agent_record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/acn/agent_record.md -------------------------------------------------------------------------------- /docs/api/helpers/acn/uri.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/acn/uri.md -------------------------------------------------------------------------------- /docs/api/helpers/async_friendly_queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/async_friendly_queue.md -------------------------------------------------------------------------------- /docs/api/helpers/async_utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/async_utils.md -------------------------------------------------------------------------------- /docs/api/helpers/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/base.md -------------------------------------------------------------------------------- /docs/api/helpers/constants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/constants.md -------------------------------------------------------------------------------- /docs/api/helpers/env_vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/env_vars.md -------------------------------------------------------------------------------- /docs/api/helpers/exception_policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/exception_policy.md -------------------------------------------------------------------------------- /docs/api/helpers/exec_timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/exec_timeout.md -------------------------------------------------------------------------------- /docs/api/helpers/file_io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/file_io.md -------------------------------------------------------------------------------- /docs/api/helpers/file_lock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/file_lock.md -------------------------------------------------------------------------------- /docs/api/helpers/http_requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/http_requests.md -------------------------------------------------------------------------------- /docs/api/helpers/install_dependency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/install_dependency.md -------------------------------------------------------------------------------- /docs/api/helpers/io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/io.md -------------------------------------------------------------------------------- /docs/api/helpers/ipfs/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/ipfs/base.md -------------------------------------------------------------------------------- /docs/api/helpers/ipfs/utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/ipfs/utils.md -------------------------------------------------------------------------------- /docs/api/helpers/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/logging.md -------------------------------------------------------------------------------- /docs/api/helpers/multiaddr/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/multiaddr/base.md -------------------------------------------------------------------------------- /docs/api/helpers/multiple_executor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/multiple_executor.md -------------------------------------------------------------------------------- /docs/api/helpers/pipe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/pipe.md -------------------------------------------------------------------------------- /docs/api/helpers/profiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/profiling.md -------------------------------------------------------------------------------- /docs/api/helpers/search/generic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/search/generic.md -------------------------------------------------------------------------------- /docs/api/helpers/search/models.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api/helpers/serializers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/serializers.md -------------------------------------------------------------------------------- /docs/api/helpers/storage/backends/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/storage/backends/base.md -------------------------------------------------------------------------------- /docs/api/helpers/sym_link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/sym_link.md -------------------------------------------------------------------------------- /docs/api/helpers/transaction/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/transaction/base.md -------------------------------------------------------------------------------- /docs/api/helpers/win32.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/win32.md -------------------------------------------------------------------------------- /docs/api/helpers/yaml_utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/helpers/yaml_utils.md -------------------------------------------------------------------------------- /docs/api/identity/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/identity/base.md -------------------------------------------------------------------------------- /docs/api/launcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/launcher.md -------------------------------------------------------------------------------- /docs/api/mail/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/mail/base.md -------------------------------------------------------------------------------- /docs/api/manager/manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/manager/manager.md -------------------------------------------------------------------------------- /docs/api/manager/project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/manager/project.md -------------------------------------------------------------------------------- /docs/api/manager/utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/manager/utils.md -------------------------------------------------------------------------------- /docs/api/multiplexer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/multiplexer.md -------------------------------------------------------------------------------- /docs/api/plugins/aea_cli_ipfs/core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/plugins/aea_cli_ipfs/core.md -------------------------------------------------------------------------------- /docs/api/protocols/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/protocols/base.md -------------------------------------------------------------------------------- /docs/api/protocols/default/custom_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/protocols/default/custom_types.md -------------------------------------------------------------------------------- /docs/api/protocols/default/dialogues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/protocols/default/dialogues.md -------------------------------------------------------------------------------- /docs/api/protocols/default/message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/protocols/default/message.md -------------------------------------------------------------------------------- /docs/api/protocols/dialogue/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/protocols/dialogue/base.md -------------------------------------------------------------------------------- /docs/api/protocols/generator/base.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api/protocols/generator/common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/protocols/generator/common.md -------------------------------------------------------------------------------- /docs/api/protocols/generator/validate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/protocols/generator/validate.md -------------------------------------------------------------------------------- /docs/api/protocols/signing/custom_types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/protocols/signing/custom_types.md -------------------------------------------------------------------------------- /docs/api/protocols/signing/dialogues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/protocols/signing/dialogues.md -------------------------------------------------------------------------------- /docs/api/protocols/signing/message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/protocols/signing/message.md -------------------------------------------------------------------------------- /docs/api/protocols/state_update/message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/protocols/state_update/message.md -------------------------------------------------------------------------------- /docs/api/registries/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/registries/base.md -------------------------------------------------------------------------------- /docs/api/registries/filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/registries/filter.md -------------------------------------------------------------------------------- /docs/api/registries/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/registries/resources.md -------------------------------------------------------------------------------- /docs/api/runner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/runner.md -------------------------------------------------------------------------------- /docs/api/runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/runtime.md -------------------------------------------------------------------------------- /docs/api/skills/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/skills/base.md -------------------------------------------------------------------------------- /docs/api/skills/behaviours.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/skills/behaviours.md -------------------------------------------------------------------------------- /docs/api/skills/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/skills/tasks.md -------------------------------------------------------------------------------- /docs/api/test_tools/constants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/test_tools/constants.md -------------------------------------------------------------------------------- /docs/api/test_tools/exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/test_tools/exceptions.md -------------------------------------------------------------------------------- /docs/api/test_tools/generic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/test_tools/generic.md -------------------------------------------------------------------------------- /docs/api/test_tools/test_cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/test_tools/test_cases.md -------------------------------------------------------------------------------- /docs/api/test_tools/test_contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/test_tools/test_contract.md -------------------------------------------------------------------------------- /docs/api/test_tools/test_skill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/api/test_tools/test_skill.md -------------------------------------------------------------------------------- /docs/application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/application.md -------------------------------------------------------------------------------- /docs/aries-cloud-agent-demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/aries-cloud-agent-demo.md -------------------------------------------------------------------------------- /docs/assets/acn-tiers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/acn-tiers.jpg -------------------------------------------------------------------------------- /docs/assets/acn-tiers_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/acn-tiers_.png -------------------------------------------------------------------------------- /docs/assets/acn-trust-security.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/acn-trust-security.jpg -------------------------------------------------------------------------------- /docs/assets/acn-trust-security_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/acn-trust-security_.png -------------------------------------------------------------------------------- /docs/assets/aries-demo-alice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/aries-demo-alice.png -------------------------------------------------------------------------------- /docs/assets/aries-demo-faber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/aries-demo-faber.png -------------------------------------------------------------------------------- /docs/assets/benchmark_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/benchmark_chart.png -------------------------------------------------------------------------------- /docs/assets/contracts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/contracts.jpg -------------------------------------------------------------------------------- /docs/assets/contracts_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/contracts_.png -------------------------------------------------------------------------------- /docs/assets/decision-maker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/decision-maker.jpg -------------------------------------------------------------------------------- /docs/assets/decision-maker_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/decision-maker_.png -------------------------------------------------------------------------------- /docs/assets/dht.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/dht.jpg -------------------------------------------------------------------------------- /docs/assets/dht_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/dht_.png -------------------------------------------------------------------------------- /docs/assets/envelope.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/envelope.jpg -------------------------------------------------------------------------------- /docs/assets/envelope_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/envelope_.png -------------------------------------------------------------------------------- /docs/assets/execution.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/execution.jpg -------------------------------------------------------------------------------- /docs/assets/execution_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/execution_.jpg -------------------------------------------------------------------------------- /docs/assets/execution_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/execution_.png -------------------------------------------------------------------------------- /docs/assets/gym-skill.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/gym-skill.jpg -------------------------------------------------------------------------------- /docs/assets/gym-skill_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/gym-skill_.png -------------------------------------------------------------------------------- /docs/assets/gym-training.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/gym-training.png -------------------------------------------------------------------------------- /docs/assets/http-integration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/http-integration.jpg -------------------------------------------------------------------------------- /docs/assets/http-integration_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/http-integration_.jpg -------------------------------------------------------------------------------- /docs/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/images/favicon.ico -------------------------------------------------------------------------------- /docs/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/images/logo.png -------------------------------------------------------------------------------- /docs/assets/interaction-protocols.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/interaction-protocols.jpg -------------------------------------------------------------------------------- /docs/assets/interaction-protocols_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/interaction-protocols_.jpg -------------------------------------------------------------------------------- /docs/assets/keys.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/keys.jpg -------------------------------------------------------------------------------- /docs/assets/keys_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/keys_.png -------------------------------------------------------------------------------- /docs/assets/logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/logo.webp -------------------------------------------------------------------------------- /docs/assets/multiplexer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/multiplexer.png -------------------------------------------------------------------------------- /docs/assets/multiplexer_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/multiplexer_.png -------------------------------------------------------------------------------- /docs/assets/oef-ledger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/oef-ledger.jpg -------------------------------------------------------------------------------- /docs/assets/oef-ledger_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/oef-ledger_.jpg -------------------------------------------------------------------------------- /docs/assets/protocol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/protocol.jpg -------------------------------------------------------------------------------- /docs/assets/protocol_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/protocol_.jpg -------------------------------------------------------------------------------- /docs/assets/simplified-aea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/simplified-aea.jpg -------------------------------------------------------------------------------- /docs/assets/simplified-aea_.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/simplified-aea_.jpg -------------------------------------------------------------------------------- /docs/assets/skill-components.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/skill-components.jpg -------------------------------------------------------------------------------- /docs/assets/skill-components_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/skill-components_.png -------------------------------------------------------------------------------- /docs/assets/skills.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/skills.jpg -------------------------------------------------------------------------------- /docs/assets/skills_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/skills_.png -------------------------------------------------------------------------------- /docs/assets/visdom_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/assets/visdom_ui.png -------------------------------------------------------------------------------- /docs/build-aea-programmatically.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/build-aea-programmatically.md -------------------------------------------------------------------------------- /docs/build-aea-step-by-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/build-aea-step-by-step.md -------------------------------------------------------------------------------- /docs/car-park-skills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/car-park-skills.md -------------------------------------------------------------------------------- /docs/cli-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/cli-commands.md -------------------------------------------------------------------------------- /docs/cli-vs-programmatic-aeas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/cli-vs-programmatic-aeas.md -------------------------------------------------------------------------------- /docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/config.md -------------------------------------------------------------------------------- /docs/connect-a-frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/connect-a-frontend.md -------------------------------------------------------------------------------- /docs/connection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/connection.md -------------------------------------------------------------------------------- /docs/contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/contract.md -------------------------------------------------------------------------------- /docs/core-components-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/core-components-1.md -------------------------------------------------------------------------------- /docs/core-components-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/core-components-2.md -------------------------------------------------------------------------------- /docs/core-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/core-components.md -------------------------------------------------------------------------------- /docs/css/admonitions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/css/admonitions.css -------------------------------------------------------------------------------- /docs/css/my-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/css/my-styles.css -------------------------------------------------------------------------------- /docs/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/debug.md -------------------------------------------------------------------------------- /docs/decision-maker-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/decision-maker-transaction.md -------------------------------------------------------------------------------- /docs/decision-maker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/decision-maker.md -------------------------------------------------------------------------------- /docs/defining-data-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/defining-data-models.md -------------------------------------------------------------------------------- /docs/demos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/demos.md -------------------------------------------------------------------------------- /docs/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/deployment.md -------------------------------------------------------------------------------- /docs/design-principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/design-principles.md -------------------------------------------------------------------------------- /docs/development-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/development-setup.md -------------------------------------------------------------------------------- /docs/diagram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/diagram.md -------------------------------------------------------------------------------- /docs/ecosystem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/ecosystem.md -------------------------------------------------------------------------------- /docs/erc1155-skills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/erc1155-skills.md -------------------------------------------------------------------------------- /docs/generic-skills-step-by-step.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/generic-skills-step-by-step.md -------------------------------------------------------------------------------- /docs/generic-skills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/generic-skills.md -------------------------------------------------------------------------------- /docs/generic-storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/generic-storage.md -------------------------------------------------------------------------------- /docs/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/glossary.md -------------------------------------------------------------------------------- /docs/gym-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/gym-example.md -------------------------------------------------------------------------------- /docs/gym-skill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/gym-skill.md -------------------------------------------------------------------------------- /docs/http-connection-and-skill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/http-connection-and-skill.md -------------------------------------------------------------------------------- /docs/identity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/identity.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/interaction-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/interaction-protocol.md -------------------------------------------------------------------------------- /docs/known-limits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/known-limits.md -------------------------------------------------------------------------------- /docs/language-agnostic-definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/language-agnostic-definition.md -------------------------------------------------------------------------------- /docs/ledger-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/ledger-integration.md -------------------------------------------------------------------------------- /docs/limits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/limits.md -------------------------------------------------------------------------------- /docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/logging.md -------------------------------------------------------------------------------- /docs/message-routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/message-routing.md -------------------------------------------------------------------------------- /docs/ml-skills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/ml-skills.md -------------------------------------------------------------------------------- /docs/modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/modes.md -------------------------------------------------------------------------------- /docs/multi-agent-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/multi-agent-manager.md -------------------------------------------------------------------------------- /docs/multiplexer-standalone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/multiplexer-standalone.md -------------------------------------------------------------------------------- /docs/oracle-demo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/oracle-demo.md -------------------------------------------------------------------------------- /docs/orm-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/orm-integration.md -------------------------------------------------------------------------------- /docs/p2p-connection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/p2p-connection.md -------------------------------------------------------------------------------- /docs/package-imports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/package-imports.md -------------------------------------------------------------------------------- /docs/performance-benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/performance-benchmark.md -------------------------------------------------------------------------------- /docs/por.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/por.md -------------------------------------------------------------------------------- /docs/prometheus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/prometheus.md -------------------------------------------------------------------------------- /docs/protocol-generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/protocol-generator.md -------------------------------------------------------------------------------- /docs/protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/protocol.md -------------------------------------------------------------------------------- /docs/query-language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/query-language.md -------------------------------------------------------------------------------- /docs/questions-and-answers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/questions-and-answers.md -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/raspberry-set-up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/raspberry-set-up.md -------------------------------------------------------------------------------- /docs/runtime-cost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/runtime-cost.md -------------------------------------------------------------------------------- /docs/scaffolding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/scaffolding.md -------------------------------------------------------------------------------- /docs/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/security.md -------------------------------------------------------------------------------- /docs/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/setup.md -------------------------------------------------------------------------------- /docs/simple-oef-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/simple-oef-usage.md -------------------------------------------------------------------------------- /docs/simple-oef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/simple-oef.md -------------------------------------------------------------------------------- /docs/skill-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/skill-guide.md -------------------------------------------------------------------------------- /docs/skill-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/skill-testing.md -------------------------------------------------------------------------------- /docs/skill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/skill.md -------------------------------------------------------------------------------- /docs/standalone-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/standalone-transaction.md -------------------------------------------------------------------------------- /docs/step-one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/step-one.md -------------------------------------------------------------------------------- /docs/tac-skills-contract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/tac-skills-contract.md -------------------------------------------------------------------------------- /docs/tac-skills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/tac-skills.md -------------------------------------------------------------------------------- /docs/tac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/tac.md -------------------------------------------------------------------------------- /docs/thermometer-skills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/thermometer-skills.md -------------------------------------------------------------------------------- /docs/trust.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/trust.md -------------------------------------------------------------------------------- /docs/upgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/upgrading.md -------------------------------------------------------------------------------- /docs/wealth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/wealth.md -------------------------------------------------------------------------------- /docs/weather-skills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/docs/weather-skills.md -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/examples/__init__.py -------------------------------------------------------------------------------- /examples/aealite_go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/examples/aealite_go/README.md -------------------------------------------------------------------------------- /examples/aealite_go/default/default.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/examples/aealite_go/default/default.pb.go -------------------------------------------------------------------------------- /examples/aealite_go/default/default.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/examples/aealite_go/default/default.proto -------------------------------------------------------------------------------- /examples/gym_ex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/examples/gym_ex/README.md -------------------------------------------------------------------------------- /examples/gym_ex/gyms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/examples/gym_ex/gyms/__init__.py -------------------------------------------------------------------------------- /examples/gym_ex/gyms/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/examples/gym_ex/gyms/env.py -------------------------------------------------------------------------------- /examples/gym_ex/proxy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/examples/gym_ex/proxy/__init__.py -------------------------------------------------------------------------------- /examples/gym_ex/proxy/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/examples/gym_ex/proxy/agent.py -------------------------------------------------------------------------------- /examples/gym_ex/proxy/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/examples/gym_ex/proxy/env.py -------------------------------------------------------------------------------- /examples/gym_ex/rl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/examples/gym_ex/rl/__init__.py -------------------------------------------------------------------------------- /examples/gym_ex/rl/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/examples/gym_ex/rl/agent.py -------------------------------------------------------------------------------- /examples/gym_ex/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/examples/gym_ex/train.py -------------------------------------------------------------------------------- /examples/http_ex/petstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/examples/http_ex/petstore.yaml -------------------------------------------------------------------------------- /examples/ml_ex/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/examples/ml_ex/model.json -------------------------------------------------------------------------------- /examples/tac_deploy/.aea/cli_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/examples/tac_deploy/.aea/cli_config.yaml -------------------------------------------------------------------------------- /examples/tac_deploy/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/examples/tac_deploy/.env -------------------------------------------------------------------------------- /examples/tac_deploy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/examples/tac_deploy/Dockerfile -------------------------------------------------------------------------------- /examples/tac_deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/examples/tac_deploy/README.md -------------------------------------------------------------------------------- /examples/tac_deploy/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/examples/tac_deploy/build.sh -------------------------------------------------------------------------------- /examples/tac_deploy/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/examples/tac_deploy/entrypoint.sh -------------------------------------------------------------------------------- /examples/tac_deploy/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/examples/tac_deploy/packages/__init__.py -------------------------------------------------------------------------------- /examples/tac_deploy/tac-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/examples/tac_deploy/tac-deployment.yaml -------------------------------------------------------------------------------- /examples/tac_deploy/tac_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/examples/tac_deploy/tac_run.sh -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/firebase.json -------------------------------------------------------------------------------- /install_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/install_packages.py -------------------------------------------------------------------------------- /libs/go/aea_end2end/Makefile: -------------------------------------------------------------------------------- 1 | build: main.go 2 | go build 3 | -------------------------------------------------------------------------------- /libs/go/aea_end2end/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aea_end2end/README.md -------------------------------------------------------------------------------- /libs/go/aea_end2end/fipa_dummy_seller.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aea_end2end/fipa_dummy_seller.env -------------------------------------------------------------------------------- /libs/go/aea_end2end/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aea_end2end/go.mod -------------------------------------------------------------------------------- /libs/go/aea_end2end/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aea_end2end/go.sum -------------------------------------------------------------------------------- /libs/go/aea_end2end/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aea_end2end/main.go -------------------------------------------------------------------------------- /libs/go/aea_end2end/pexpect_popen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aea_end2end/pexpect_popen.py -------------------------------------------------------------------------------- /libs/go/aea_end2end/protocols/fipa.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aea_end2end/protocols/fipa.pb.go -------------------------------------------------------------------------------- /libs/go/aea_end2end/protocols/fipa.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aea_end2end/protocols/fipa.proto -------------------------------------------------------------------------------- /libs/go/aea_end2end/protocols/fipa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aea_end2end/protocols/fipa.yaml -------------------------------------------------------------------------------- /libs/go/aea_end2end/run_buyer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aea_end2end/run_buyer.sh -------------------------------------------------------------------------------- /libs/go/aea_end2end/run_seller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aea_end2end/run_seller.sh -------------------------------------------------------------------------------- /libs/go/aea_end2end/test_fipa_end2end.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aea_end2end/test_fipa_end2end.py -------------------------------------------------------------------------------- /libs/go/aealite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/Makefile -------------------------------------------------------------------------------- /libs/go/aealite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/README.md -------------------------------------------------------------------------------- /libs/go/aealite/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/agent.go -------------------------------------------------------------------------------- /libs/go/aealite/agent_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/agent_test.go -------------------------------------------------------------------------------- /libs/go/aealite/connections/acn/acn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/connections/acn/acn.go -------------------------------------------------------------------------------- /libs/go/aealite/connections/connections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/connections/connections.go -------------------------------------------------------------------------------- /libs/go/aealite/connections/p2pclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/connections/p2pclient.go -------------------------------------------------------------------------------- /libs/go/aealite/connections/tcpsocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/connections/tcpsocket.go -------------------------------------------------------------------------------- /libs/go/aealite/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/go.mod -------------------------------------------------------------------------------- /libs/go/aealite/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/go.sum -------------------------------------------------------------------------------- /libs/go/aealite/helpers/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/helpers/base.go -------------------------------------------------------------------------------- /libs/go/aealite/helpers/base_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/helpers/base_test.go -------------------------------------------------------------------------------- /libs/go/aealite/protocols/base.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/protocols/base.pb.go -------------------------------------------------------------------------------- /libs/go/aealite/protocols/base.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/protocols/base.proto -------------------------------------------------------------------------------- /libs/go/aealite/protocols/dialogue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/protocols/dialogue.go -------------------------------------------------------------------------------- /libs/go/aealite/protocols/dialogue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/protocols/dialogue_test.go -------------------------------------------------------------------------------- /libs/go/aealite/protocols/dialogues.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/protocols/dialogues.go -------------------------------------------------------------------------------- /libs/go/aealite/protocols/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/protocols/message.go -------------------------------------------------------------------------------- /libs/go/aealite/protocols/message_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/protocols/message_test.go -------------------------------------------------------------------------------- /libs/go/aealite/protocols/search.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/protocols/search.pb.go -------------------------------------------------------------------------------- /libs/go/aealite/protocols/search.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/protocols/search.proto -------------------------------------------------------------------------------- /libs/go/aealite/protocols/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/protocols/storage.go -------------------------------------------------------------------------------- /libs/go/aealite/protocols/storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/protocols/storage_test.go -------------------------------------------------------------------------------- /libs/go/aealite/protocols/versions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/protocols/versions.go -------------------------------------------------------------------------------- /libs/go/aealite/test_env_file.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/test_env_file.env -------------------------------------------------------------------------------- /libs/go/aealite/wallet/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/wallet/utils.go -------------------------------------------------------------------------------- /libs/go/aealite/wallet/wallet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/wallet/wallet.go -------------------------------------------------------------------------------- /libs/go/aealite/wallet/wallet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite/wallet/wallet_test.go -------------------------------------------------------------------------------- /libs/go/aealite_agent_example/.gitignore: -------------------------------------------------------------------------------- 1 | aealite_agent_example 2 | go.sum -------------------------------------------------------------------------------- /libs/go/aealite_agent_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite_agent_example/Makefile -------------------------------------------------------------------------------- /libs/go/aealite_agent_example/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite_agent_example/go.mod -------------------------------------------------------------------------------- /libs/go/aealite_agent_example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/aealite_agent_example/main.go -------------------------------------------------------------------------------- /libs/go/libp2p_node/.dockerignore: -------------------------------------------------------------------------------- 1 | libp2p_node -------------------------------------------------------------------------------- /libs/go/libp2p_node/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/Dockerfile -------------------------------------------------------------------------------- /libs/go/libp2p_node/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/Makefile -------------------------------------------------------------------------------- /libs/go/libp2p_node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/README.md -------------------------------------------------------------------------------- /libs/go/libp2p_node/acn/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/acn/utils.go -------------------------------------------------------------------------------- /libs/go/libp2p_node/aea/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/aea/api.go -------------------------------------------------------------------------------- /libs/go/libp2p_node/aea/envelope.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/aea/envelope.pb.go -------------------------------------------------------------------------------- /libs/go/libp2p_node/aea/envelope.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/aea/envelope.proto -------------------------------------------------------------------------------- /libs/go/libp2p_node/aea/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/aea/pipe.go -------------------------------------------------------------------------------- /libs/go/libp2p_node/aea/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/aea/utils.go -------------------------------------------------------------------------------- /libs/go/libp2p_node/common/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/common/common.go -------------------------------------------------------------------------------- /libs/go/libp2p_node/dht/common/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/dht/common/handlers.go -------------------------------------------------------------------------------- /libs/go/libp2p_node/dht/dhtnode/dhtnode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/dht/dhtnode/dhtnode.go -------------------------------------------------------------------------------- /libs/go/libp2p_node/dht/dhtnode/streams.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/dht/dhtnode/streams.go -------------------------------------------------------------------------------- /libs/go/libp2p_node/dht/dhtnode/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/dht/dhtnode/utils.go -------------------------------------------------------------------------------- /libs/go/libp2p_node/dht/dhtpeer/dhtpeer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/dht/dhtpeer/dhtpeer.go -------------------------------------------------------------------------------- /libs/go/libp2p_node/dht/dhtpeer/mailbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/dht/dhtpeer/mailbox.go -------------------------------------------------------------------------------- /libs/go/libp2p_node/dht/dhtpeer/notifee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/dht/dhtpeer/notifee.go -------------------------------------------------------------------------------- /libs/go/libp2p_node/dht/dhtpeer/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/dht/dhtpeer/options.go -------------------------------------------------------------------------------- /libs/go/libp2p_node/dht/dhtpeer/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/dht/dhtpeer/utils.go -------------------------------------------------------------------------------- /libs/go/libp2p_node/dht/monitoring/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/dht/monitoring/file.go -------------------------------------------------------------------------------- /libs/go/libp2p_node/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/go.mod -------------------------------------------------------------------------------- /libs/go/libp2p_node/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/go.sum -------------------------------------------------------------------------------- /libs/go/libp2p_node/libp2p_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/libp2p_node.go -------------------------------------------------------------------------------- /libs/go/libp2p_node/link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/link -------------------------------------------------------------------------------- /libs/go/libp2p_node/mocks/mock_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/mocks/mock_host.go -------------------------------------------------------------------------------- /libs/go/libp2p_node/mocks/mock_net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/mocks/mock_net.go -------------------------------------------------------------------------------- /libs/go/libp2p_node/mocks/mock_network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/mocks/mock_network.go -------------------------------------------------------------------------------- /libs/go/libp2p_node/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/utils/utils.go -------------------------------------------------------------------------------- /libs/go/libp2p_node/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/libs/go/libp2p_node/utils/utils_test.go -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/__init__.py -------------------------------------------------------------------------------- /packages/fetchai/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/__init__.py -------------------------------------------------------------------------------- /packages/fetchai/agents/gym_aea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/agents/gym_aea/README.md -------------------------------------------------------------------------------- /packages/fetchai/connections/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/connections/__init__.py -------------------------------------------------------------------------------- /packages/fetchai/connections/gym/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/connections/gym/README.md -------------------------------------------------------------------------------- /packages/fetchai/connections/oef/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/connections/oef/README.md -------------------------------------------------------------------------------- /packages/fetchai/connections/p2p_libp2p/libp2p_node/.dockerignore: -------------------------------------------------------------------------------- 1 | libp2p_node -------------------------------------------------------------------------------- /packages/fetchai/connections/tcp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/connections/tcp/README.md -------------------------------------------------------------------------------- /packages/fetchai/connections/tcp/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/connections/tcp/base.py -------------------------------------------------------------------------------- /packages/fetchai/contracts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/contracts/__init__.py -------------------------------------------------------------------------------- /packages/fetchai/protocols/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/protocols/__init__.py -------------------------------------------------------------------------------- /packages/fetchai/protocols/acn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/protocols/acn/README.md -------------------------------------------------------------------------------- /packages/fetchai/protocols/acn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/protocols/acn/__init__.py -------------------------------------------------------------------------------- /packages/fetchai/protocols/acn/acn.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/protocols/acn/acn.proto -------------------------------------------------------------------------------- /packages/fetchai/protocols/acn/acn_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/protocols/acn/acn_pb2.py -------------------------------------------------------------------------------- /packages/fetchai/protocols/acn/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/protocols/acn/message.py -------------------------------------------------------------------------------- /packages/fetchai/protocols/fipa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/protocols/fipa/README.md -------------------------------------------------------------------------------- /packages/fetchai/protocols/fipa/fipa.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/protocols/fipa/fipa.proto -------------------------------------------------------------------------------- /packages/fetchai/protocols/fipa/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/protocols/fipa/message.py -------------------------------------------------------------------------------- /packages/fetchai/protocols/gym/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/protocols/gym/README.md -------------------------------------------------------------------------------- /packages/fetchai/protocols/gym/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/protocols/gym/__init__.py -------------------------------------------------------------------------------- /packages/fetchai/protocols/gym/gym.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/protocols/gym/gym.proto -------------------------------------------------------------------------------- /packages/fetchai/protocols/gym/gym_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/protocols/gym/gym_pb2.py -------------------------------------------------------------------------------- /packages/fetchai/protocols/gym/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/protocols/gym/message.py -------------------------------------------------------------------------------- /packages/fetchai/protocols/http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/protocols/http/README.md -------------------------------------------------------------------------------- /packages/fetchai/protocols/http/http.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/protocols/http/http.proto -------------------------------------------------------------------------------- /packages/fetchai/protocols/http/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/protocols/http/message.py -------------------------------------------------------------------------------- /packages/fetchai/protocols/tac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/protocols/tac/README.md -------------------------------------------------------------------------------- /packages/fetchai/protocols/tac/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/protocols/tac/__init__.py -------------------------------------------------------------------------------- /packages/fetchai/protocols/tac/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/protocols/tac/message.py -------------------------------------------------------------------------------- /packages/fetchai/protocols/tac/tac.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/protocols/tac/tac.proto -------------------------------------------------------------------------------- /packages/fetchai/protocols/tac/tac_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/protocols/tac/tac_pb2.py -------------------------------------------------------------------------------- /packages/fetchai/skills/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/skills/__init__.py -------------------------------------------------------------------------------- /packages/fetchai/skills/echo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/skills/echo/README.md -------------------------------------------------------------------------------- /packages/fetchai/skills/echo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/skills/echo/__init__.py -------------------------------------------------------------------------------- /packages/fetchai/skills/echo/behaviours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/skills/echo/behaviours.py -------------------------------------------------------------------------------- /packages/fetchai/skills/echo/dialogues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/skills/echo/dialogues.py -------------------------------------------------------------------------------- /packages/fetchai/skills/echo/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/skills/echo/handlers.py -------------------------------------------------------------------------------- /packages/fetchai/skills/echo/skill.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/skills/echo/skill.yaml -------------------------------------------------------------------------------- /packages/fetchai/skills/error/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/skills/error/README.md -------------------------------------------------------------------------------- /packages/fetchai/skills/error/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/skills/error/__init__.py -------------------------------------------------------------------------------- /packages/fetchai/skills/error/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/skills/error/handlers.py -------------------------------------------------------------------------------- /packages/fetchai/skills/error/skill.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/skills/error/skill.yaml -------------------------------------------------------------------------------- /packages/fetchai/skills/gym/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/skills/gym/README.md -------------------------------------------------------------------------------- /packages/fetchai/skills/gym/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/skills/gym/__init__.py -------------------------------------------------------------------------------- /packages/fetchai/skills/gym/dialogues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/skills/gym/dialogues.py -------------------------------------------------------------------------------- /packages/fetchai/skills/gym/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/skills/gym/handlers.py -------------------------------------------------------------------------------- /packages/fetchai/skills/gym/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/skills/gym/helpers.py -------------------------------------------------------------------------------- /packages/fetchai/skills/gym/rl_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/skills/gym/rl_agent.py -------------------------------------------------------------------------------- /packages/fetchai/skills/gym/skill.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/skills/gym/skill.yaml -------------------------------------------------------------------------------- /packages/fetchai/skills/gym/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/skills/gym/tasks.py -------------------------------------------------------------------------------- /packages/fetchai/skills/ml_train/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/skills/ml_train/README.md -------------------------------------------------------------------------------- /packages/fetchai/skills/ml_train/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/fetchai/skills/ml_train/tasks.py -------------------------------------------------------------------------------- /packages/hashes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/packages/hashes.csv -------------------------------------------------------------------------------- /plugins/aea-cli-ipfs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/plugins/aea-cli-ipfs/LICENSE -------------------------------------------------------------------------------- /plugins/aea-cli-ipfs/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/plugins/aea-cli-ipfs/MANIFEST.in -------------------------------------------------------------------------------- /plugins/aea-cli-ipfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/plugins/aea-cli-ipfs/README.md -------------------------------------------------------------------------------- /plugins/aea-cli-ipfs/aea_cli_ipfs/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/plugins/aea-cli-ipfs/aea_cli_ipfs/core.py -------------------------------------------------------------------------------- /plugins/aea-cli-ipfs/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/plugins/aea-cli-ipfs/pyproject.toml -------------------------------------------------------------------------------- /plugins/aea-cli-ipfs/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/plugins/aea-cli-ipfs/setup.py -------------------------------------------------------------------------------- /plugins/aea-cli-ipfs/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/plugins/aea-cli-ipfs/tests/__init__.py -------------------------------------------------------------------------------- /plugins/aea-ledger-cosmos/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/plugins/aea-ledger-cosmos/LICENSE -------------------------------------------------------------------------------- /plugins/aea-ledger-cosmos/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/plugins/aea-ledger-cosmos/MANIFEST.in -------------------------------------------------------------------------------- /plugins/aea-ledger-cosmos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/plugins/aea-ledger-cosmos/README.md -------------------------------------------------------------------------------- /plugins/aea-ledger-cosmos/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/plugins/aea-ledger-cosmos/pyproject.toml -------------------------------------------------------------------------------- /plugins/aea-ledger-cosmos/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/plugins/aea-ledger-cosmos/setup.py -------------------------------------------------------------------------------- /plugins/aea-ledger-ethereum/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/plugins/aea-ledger-ethereum/LICENSE -------------------------------------------------------------------------------- /plugins/aea-ledger-ethereum/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/plugins/aea-ledger-ethereum/MANIFEST.in -------------------------------------------------------------------------------- /plugins/aea-ledger-ethereum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/plugins/aea-ledger-ethereum/README.md -------------------------------------------------------------------------------- /plugins/aea-ledger-ethereum/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/plugins/aea-ledger-ethereum/pyproject.toml -------------------------------------------------------------------------------- /plugins/aea-ledger-ethereum/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/plugins/aea-ledger-ethereum/setup.py -------------------------------------------------------------------------------- /plugins/aea-ledger-fetchai/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/plugins/aea-ledger-fetchai/LICENSE -------------------------------------------------------------------------------- /plugins/aea-ledger-fetchai/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/plugins/aea-ledger-fetchai/MANIFEST.in -------------------------------------------------------------------------------- /plugins/aea-ledger-fetchai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/plugins/aea-ledger-fetchai/README.md -------------------------------------------------------------------------------- /plugins/aea-ledger-fetchai/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/plugins/aea-ledger-fetchai/pyproject.toml -------------------------------------------------------------------------------- /plugins/aea-ledger-fetchai/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/plugins/aea-ledger-fetchai/setup.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/poetry.lock -------------------------------------------------------------------------------- /protolint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/protolint.yaml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/pytest.ini -------------------------------------------------------------------------------- /scripts/NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/NOTES.md -------------------------------------------------------------------------------- /scripts/RELEASE_PROCESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/RELEASE_PROCESS.md -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/__init__.py -------------------------------------------------------------------------------- /scripts/acn/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/acn/Dockerfile -------------------------------------------------------------------------------- /scripts/acn/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/acn/Dockerfile.dev -------------------------------------------------------------------------------- /scripts/acn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/acn/README.md -------------------------------------------------------------------------------- /scripts/acn/build_upload_img.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/acn/build_upload_img.sh -------------------------------------------------------------------------------- /scripts/acn/helm-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/acn/helm-chart/Chart.yaml -------------------------------------------------------------------------------- /scripts/acn/helm-chart/templates/dns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/acn/helm-chart/templates/dns.yaml -------------------------------------------------------------------------------- /scripts/acn/helm-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/acn/helm-chart/values.yaml -------------------------------------------------------------------------------- /scripts/acn/k8s/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/acn/k8s/deployment.yaml -------------------------------------------------------------------------------- /scripts/acn/k8s/dns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/acn/k8s/dns.yaml -------------------------------------------------------------------------------- /scripts/acn/k8s/istio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/acn/k8s/istio.yaml -------------------------------------------------------------------------------- /scripts/acn/k8s/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/acn/k8s/secret.yaml -------------------------------------------------------------------------------- /scripts/acn/k8s_deploy_acn_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/acn/k8s_deploy_acn_node.py -------------------------------------------------------------------------------- /scripts/acn/run_acn_node_standalone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/acn/run_acn_node_standalone.py -------------------------------------------------------------------------------- /scripts/bump_aea_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/bump_aea_version.py -------------------------------------------------------------------------------- /scripts/bump_year.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/bump_year.sh -------------------------------------------------------------------------------- /scripts/check_copyright_notice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/check_copyright_notice.py -------------------------------------------------------------------------------- /scripts/check_doc_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/check_doc_links.py -------------------------------------------------------------------------------- /scripts/check_imports_and_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/check_imports_and_dependencies.py -------------------------------------------------------------------------------- /scripts/check_package_versions_in_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/check_package_versions_in_docs.py -------------------------------------------------------------------------------- /scripts/check_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/check_packages.py -------------------------------------------------------------------------------- /scripts/check_pipfile_and_toxini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/check_pipfile_and_toxini.py -------------------------------------------------------------------------------- /scripts/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/common.py -------------------------------------------------------------------------------- /scripts/deploy_to_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/deploy_to_registry.py -------------------------------------------------------------------------------- /scripts/freeze_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/freeze_dependencies.py -------------------------------------------------------------------------------- /scripts/generate_all_protocols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/generate_all_protocols.py -------------------------------------------------------------------------------- /scripts/generate_api_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/generate_api_docs.py -------------------------------------------------------------------------------- /scripts/generate_ipfs_hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/generate_ipfs_hashes.py -------------------------------------------------------------------------------- /scripts/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/install.ps1 -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/ledger_network_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/ledger_network_update.py -------------------------------------------------------------------------------- /scripts/oef/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/oef/launch.py -------------------------------------------------------------------------------- /scripts/oef/launch_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/oef/launch_config.json -------------------------------------------------------------------------------- /scripts/oef/node_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/oef/node_config.json -------------------------------------------------------------------------------- /scripts/spell-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/spell-check.sh -------------------------------------------------------------------------------- /scripts/update_package_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/update_package_versions.py -------------------------------------------------------------------------------- /scripts/update_plugin_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/update_plugin_versions.py -------------------------------------------------------------------------------- /scripts/update_symlinks_cross_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/update_symlinks_cross_platform.py -------------------------------------------------------------------------------- /scripts/whitelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/scripts/whitelist.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/setup.cfg -------------------------------------------------------------------------------- /strategy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/strategy.ini -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/common/__init__.py -------------------------------------------------------------------------------- /tests/common/docker_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/common/docker_image.py -------------------------------------------------------------------------------- /tests/common/mocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/common/mocks.py -------------------------------------------------------------------------------- /tests/common/pexpect_popen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/common/pexpect_popen.py -------------------------------------------------------------------------------- /tests/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/common/utils.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/__init__.py -------------------------------------------------------------------------------- /tests/data/aea-config.example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/aea-config.example.yaml -------------------------------------------------------------------------------- /tests/data/aea-config.example_w_keys.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/aea-config.example_w_keys.yaml -------------------------------------------------------------------------------- /tests/data/certs/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/certs/server.crt -------------------------------------------------------------------------------- /tests/data/certs/server.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/certs/server.csr -------------------------------------------------------------------------------- /tests/data/certs/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/certs/server.key -------------------------------------------------------------------------------- /tests/data/cosmos_private_key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/cosmos_private_key.txt -------------------------------------------------------------------------------- /tests/data/custom_crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/custom_crypto.py -------------------------------------------------------------------------------- /tests/data/dependencies_skill/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/dependencies_skill/__init__.py -------------------------------------------------------------------------------- /tests/data/dependencies_skill/skill.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/dependencies_skill/skill.yaml -------------------------------------------------------------------------------- /tests/data/dot_env_file: -------------------------------------------------------------------------------- 1 | TEST=yes 2 | -------------------------------------------------------------------------------- /tests/data/dummy_aea/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/dummy_aea/__init__.py -------------------------------------------------------------------------------- /tests/data/dummy_aea/aea-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/dummy_aea/aea-config.yaml -------------------------------------------------------------------------------- /tests/data/dummy_aea/bad_requirements.txt: -------------------------------------------------------------------------------- 1 | @#%$^&*^ 2 | -------------------------------------------------------------------------------- /tests/data/dummy_aea/contracts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/dummy_aea/contracts/__init__.py -------------------------------------------------------------------------------- /tests/data/dummy_aea/protocols/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/dummy_aea/protocols/__init__.py -------------------------------------------------------------------------------- /tests/data/dummy_aea/requirements.txt: -------------------------------------------------------------------------------- 1 | protobuf 2 | -------------------------------------------------------------------------------- /tests/data/dummy_aea/skills/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/dummy_aea/skills/__init__.py -------------------------------------------------------------------------------- /tests/data/dummy_aea/skills/dummy: -------------------------------------------------------------------------------- 1 | ../../../../tests/data/dummy_skill -------------------------------------------------------------------------------- /tests/data/dummy_aea/vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/dummy_aea/vendor/__init__.py -------------------------------------------------------------------------------- /tests/data/dummy_aea/vendor/fetchai/connections/local: -------------------------------------------------------------------------------- 1 | ../../../../../../packages/fetchai/connections/local -------------------------------------------------------------------------------- /tests/data/dummy_aea/vendor/fetchai/connections/p2p_libp2p: -------------------------------------------------------------------------------- 1 | ../../../../../../packages/fetchai/connections/p2p_libp2p -------------------------------------------------------------------------------- /tests/data/dummy_aea/vendor/fetchai/contracts/erc1155: -------------------------------------------------------------------------------- 1 | ../../../../../../packages/fetchai/contracts/erc1155 -------------------------------------------------------------------------------- /tests/data/dummy_aea/vendor/fetchai/protocols/acn: -------------------------------------------------------------------------------- 1 | ../../../../../../packages/fetchai/protocols/acn -------------------------------------------------------------------------------- /tests/data/dummy_aea/vendor/fetchai/protocols/default: -------------------------------------------------------------------------------- 1 | ../../../../../../packages/fetchai/protocols/default -------------------------------------------------------------------------------- /tests/data/dummy_aea/vendor/fetchai/protocols/fipa: -------------------------------------------------------------------------------- 1 | ../../../../../../packages/fetchai/protocols/fipa -------------------------------------------------------------------------------- /tests/data/dummy_aea/vendor/fetchai/protocols/oef_search: -------------------------------------------------------------------------------- 1 | ../../../../../../packages/fetchai/protocols/oef_search -------------------------------------------------------------------------------- /tests/data/dummy_aea/vendor/fetchai/protocols/signing: -------------------------------------------------------------------------------- 1 | ../../../../../../packages/fetchai/protocols/signing -------------------------------------------------------------------------------- /tests/data/dummy_aea/vendor/fetchai/protocols/state_update: -------------------------------------------------------------------------------- 1 | ../../../../../../packages/fetchai/protocols/state_update -------------------------------------------------------------------------------- /tests/data/dummy_aea/vendor/fetchai/skills/error: -------------------------------------------------------------------------------- 1 | ../../../../../../packages/fetchai/skills/error -------------------------------------------------------------------------------- /tests/data/dummy_connection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/dummy_connection/__init__.py -------------------------------------------------------------------------------- /tests/data/dummy_connection/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/dummy_connection/connection.py -------------------------------------------------------------------------------- /tests/data/dummy_contract/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/dummy_contract/__init__.py -------------------------------------------------------------------------------- /tests/data/dummy_contract/build/some.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/dummy_contract/build/some.json -------------------------------------------------------------------------------- /tests/data/dummy_contract/build/some.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/dummy_contract/build/some.wasm -------------------------------------------------------------------------------- /tests/data/dummy_contract/contract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/dummy_contract/contract.py -------------------------------------------------------------------------------- /tests/data/dummy_contract/contract.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/dummy_contract/contract.yaml -------------------------------------------------------------------------------- /tests/data/dummy_protocol/protocol.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/dummy_protocol/protocol.yaml -------------------------------------------------------------------------------- /tests/data/dummy_skill/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/dummy_skill/__init__.py -------------------------------------------------------------------------------- /tests/data/dummy_skill/behaviours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/dummy_skill/behaviours.py -------------------------------------------------------------------------------- /tests/data/dummy_skill/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/dummy_skill/dummy.py -------------------------------------------------------------------------------- /tests/data/dummy_skill/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/dummy_skill/handlers.py -------------------------------------------------------------------------------- /tests/data/dummy_skill/skill.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/dummy_skill/skill.yaml -------------------------------------------------------------------------------- /tests/data/dummy_skill/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/dummy_skill/tasks.py -------------------------------------------------------------------------------- /tests/data/ethereum_private_key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/ethereum_private_key.txt -------------------------------------------------------------------------------- /tests/data/ethereum_private_key_two.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/ethereum_private_key_two.txt -------------------------------------------------------------------------------- /tests/data/exception_skill/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/exception_skill/__init__.py -------------------------------------------------------------------------------- /tests/data/exception_skill/behaviours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/exception_skill/behaviours.py -------------------------------------------------------------------------------- /tests/data/exception_skill/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/exception_skill/handlers.py -------------------------------------------------------------------------------- /tests/data/exception_skill/skill.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/exception_skill/skill.yaml -------------------------------------------------------------------------------- /tests/data/exception_skill/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/exception_skill/tasks.py -------------------------------------------------------------------------------- /tests/data/fetchai_private_key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/fetchai_private_key.txt -------------------------------------------------------------------------------- /tests/data/fetchai_private_key_wrong.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/fetchai_private_key_wrong.txt -------------------------------------------------------------------------------- /tests/data/generator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/generator/__init__.py -------------------------------------------------------------------------------- /tests/data/generator/t_protocol/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/generator/t_protocol/message.py -------------------------------------------------------------------------------- /tests/data/gym-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/gym-connection.yaml -------------------------------------------------------------------------------- /tests/data/hashes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/hashes.csv -------------------------------------------------------------------------------- /tests/data/petstore_sim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/petstore_sim.yaml -------------------------------------------------------------------------------- /tests/data/sample_specification.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/data/sample_specification.yaml -------------------------------------------------------------------------------- /tests/list_of_packages_for_aea_tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/list_of_packages_for_aea_tests.txt -------------------------------------------------------------------------------- /tests/oracle_contract_address.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/oracle_contract_address.txt -------------------------------------------------------------------------------- /tests/test_aea/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/__init__.py -------------------------------------------------------------------------------- /tests/test_aea/test_act_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_act_storage.py -------------------------------------------------------------------------------- /tests/test_aea/test_aea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_aea.py -------------------------------------------------------------------------------- /tests/test_aea/test_aea_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_aea_builder.py -------------------------------------------------------------------------------- /tests/test_aea/test_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_agent.py -------------------------------------------------------------------------------- /tests/test_aea/test_agent_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_agent_loop.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/__init__.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/constants.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_add_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_add_key.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_build.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_config.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_create.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_delete.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_eject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_eject.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_fetch.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_freeze.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_get_wealth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_get_wealth.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_init.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_install.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_interact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_interact.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_launch.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_list.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_loggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_loggers.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_login.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_logout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_logout.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_misc.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_plugin.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_publish.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_push.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_register.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_remove_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_remove_key.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_run.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_search.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_transfer.py -------------------------------------------------------------------------------- /tests/test_aea/test_cli/test_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_cli/test_upgrade.py -------------------------------------------------------------------------------- /tests/test_aea/test_components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_components/__init__.py -------------------------------------------------------------------------------- /tests/test_aea/test_context/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_context/__init__.py -------------------------------------------------------------------------------- /tests/test_aea/test_context/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_context/test_base.py -------------------------------------------------------------------------------- /tests/test_aea/test_contracts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_contracts/__init__.py -------------------------------------------------------------------------------- /tests/test_aea/test_contracts/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_contracts/test_base.py -------------------------------------------------------------------------------- /tests/test_aea/test_crypto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_crypto/__init__.py -------------------------------------------------------------------------------- /tests/test_aea/test_crypto/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_crypto/test_helpers.py -------------------------------------------------------------------------------- /tests/test_aea/test_crypto/test_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_crypto/test_wallet.py -------------------------------------------------------------------------------- /tests/test_aea/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_exceptions.py -------------------------------------------------------------------------------- /tests/test_aea/test_helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_helpers/__init__.py -------------------------------------------------------------------------------- /tests/test_aea/test_helpers/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_helpers/test_base.py -------------------------------------------------------------------------------- /tests/test_aea/test_helpers/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_helpers/test_io.py -------------------------------------------------------------------------------- /tests/test_aea/test_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_launcher.py -------------------------------------------------------------------------------- /tests/test_aea/test_mail/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_mail/__init__.py -------------------------------------------------------------------------------- /tests/test_aea/test_mail/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_mail/test_base.py -------------------------------------------------------------------------------- /tests/test_aea/test_multiplexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_multiplexer.py -------------------------------------------------------------------------------- /tests/test_aea/test_package_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_package_loading.py -------------------------------------------------------------------------------- /tests/test_aea/test_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_runner.py -------------------------------------------------------------------------------- /tests/test_aea/test_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_runtime.py -------------------------------------------------------------------------------- /tests/test_aea/test_skills/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_skills/__init__.py -------------------------------------------------------------------------------- /tests/test_aea/test_skills/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_skills/test_base.py -------------------------------------------------------------------------------- /tests/test_aea/test_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea/test_task.py -------------------------------------------------------------------------------- /tests/test_aea_extra/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_aea_extra/__init__.py -------------------------------------------------------------------------------- /tests/test_docs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_docs/__init__.py -------------------------------------------------------------------------------- /tests/test_docs/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_docs/helper.py -------------------------------------------------------------------------------- /tests/test_docs/test_cli_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_docs/test_cli_commands.py -------------------------------------------------------------------------------- /tests/test_docs/test_data_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_docs/test_data_models.py -------------------------------------------------------------------------------- /tests/test_docs/test_docs_protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_docs/test_docs_protocol.py -------------------------------------------------------------------------------- /tests/test_docs/test_docs_skill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_docs/test_docs_skill.py -------------------------------------------------------------------------------- /tests/test_docs/test_generic_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_docs/test_generic_storage.py -------------------------------------------------------------------------------- /tests/test_docs/test_query_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_docs/test_query_language.py -------------------------------------------------------------------------------- /tests/test_docs/test_quickstart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_docs/test_quickstart.py -------------------------------------------------------------------------------- /tests/test_docs/test_skill_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_docs/test_skill_testing.py -------------------------------------------------------------------------------- /tests/test_examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_examples/__init__.py -------------------------------------------------------------------------------- /tests/test_examples/test_gym_ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_examples/test_gym_ex.py -------------------------------------------------------------------------------- /tests/test_packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tests/test_packages/__init__.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/tox.ini -------------------------------------------------------------------------------- /user-image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/user-image/Dockerfile -------------------------------------------------------------------------------- /user-image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/user-image/README.md -------------------------------------------------------------------------------- /user-image/docker-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/user-image/docker-env.sh -------------------------------------------------------------------------------- /user-image/scripts/docker-build-img.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fetchai/agents-aea/HEAD/user-image/scripts/docker-build-img.sh --------------------------------------------------------------------------------