From 5e2d330c70b6ef1c85ad5e6baa5dab0d62214be7 Mon Sep 17 00:00:00 2001 From: Adamantios Date: Fri, 18 Oct 2024 13:22:22 +0300 Subject: [PATCH 1/4] chore: bump `open-aea` to `v1.58.0` --- Pipfile | 10 ++++----- .../autonomy-user/requirements.txt | 6 ++--- .../commands/autonomy_build-image.md | 2 +- docs/guides/define_agent.md | 2 +- .../agents/abstract_abci/aea-config.yaml | 2 +- .../valory/agents/counter/aea-config.yaml | 2 +- .../agents/counter_client/aea-config.yaml | 2 +- .../agents/offend_slash/aea-config.yaml | 2 +- .../agents/register_reset/aea-config.yaml | 2 +- .../register_reset_recovery/aea-config.yaml | 4 ++-- .../register_termination/aea-config.yaml | 2 +- .../registration_start_up/aea-config.yaml | 4 ++-- .../solana_transfer_agent/aea-config.yaml | 4 ++-- .../valory/agents/test_abci/aea-config.yaml | 2 +- .../valory/agents/test_ipfs/aea-config.yaml | 2 +- .../valory/connections/ipfs/connection.yaml | 2 +- .../contracts/gnosis_safe/contract.yaml | 2 +- .../gnosis_safe_proxy_factory/contract.yaml | 2 +- .../valory/contracts/multicall2/contract.yaml | 2 +- .../contracts/service_registry/contract.yaml | 2 +- .../contracts/squads_multisig/contract.yaml | 2 +- .../skills/abstract_round_abci/skill.yaml | 2 +- plugins/aea-test-autonomy/setup.py | 4 ++-- setup.py | 4 ++-- skaffold.yaml | 2 +- tox.ini | 22 +++++++++---------- 26 files changed, 47 insertions(+), 47 deletions(-) diff --git a/Pipfile b/Pipfile index 2557581266..0c0b78796a 100644 --- a/Pipfile +++ b/Pipfile @@ -7,10 +7,10 @@ name = "pypi" aiohttp = "<4.0.0,>=3.8.5" docker = "==6.1.2" Flask = "==2.0.2" -open-aea = {version = "==1.57.0", extras = ["all"]} -open-aea-ledger-ethereum = "==1.57.0" -open-aea-ledger-ethereum-hwi = "==1.57.0" -open-aea-cli-ipfs = "==1.57.0" +open-aea = {version = "==1.58.0", extras = ["all"]} +open-aea-ledger-ethereum = "==1.58.0" +open-aea-ledger-ethereum-hwi = "==1.58.0" +open-aea-cli-ipfs = "==1.58.0" ipfshttpclient = "==0.8.0a2" Werkzeug= "==2.0.3" watchdog = ">=2.1.6" @@ -32,7 +32,7 @@ typing_extensions = ">=3.10.0.2" hexbytes = "*" packaging = "*" pytest-asyncio = "*" -open-aea-ledger-cosmos = "==1.57.0" +open-aea-ledger-cosmos = "==1.58.0" # we pin this as the range specified in open-aea-ledger-cosmos is wide open-aea-cosmpy = "==0.6.7" grpcio = "==1.53.0" diff --git a/deployments/Dockerfiles/autonomy-user/requirements.txt b/deployments/Dockerfiles/autonomy-user/requirements.txt index 83b3f92013..15d38681af 100644 --- a/deployments/Dockerfiles/autonomy-user/requirements.txt +++ b/deployments/Dockerfiles/autonomy-user/requirements.txt @@ -1,5 +1,5 @@ open-autonomy[all]==0.17.0 -open-aea[all]==1.57.0 -open-aea-cli-ipfs==1.57.0 -open-aea-ledger-ethereum==1.57.0 +open-aea[all]==1.58.0 +open-aea-cli-ipfs==1.58.0 +open-aea-ledger-ethereum==1.58.0 protobuf>=4.21.6,<5.0.0 diff --git a/docs/advanced_reference/commands/autonomy_build-image.md b/docs/advanced_reference/commands/autonomy_build-image.md index 794ae90972..02d60d5561 100644 --- a/docs/advanced_reference/commands/autonomy_build-image.md +++ b/docs/advanced_reference/commands/autonomy_build-image.md @@ -84,7 +84,7 @@ autonomy build-image [OPTIONS] [AGENT_PUBLIC_ID] * Include extra python packages: ```bash - autonomy build-image ... -e open-aea-ledger-flashbots==1.57.0 + autonomy build-image ... -e open-aea-ledger-flashbots==1.58.0 ``` This will tag the image as `/oar-:`. diff --git a/docs/guides/define_agent.md b/docs/guides/define_agent.md index bd9f95bef8..3ccc33d7f5 100644 --- a/docs/guides/define_agent.md +++ b/docs/guides/define_agent.md @@ -120,7 +120,7 @@ If you have [populated the local registry](./overview_of_the_development_process propagate: true dependencies: open-aea-ledger-ethereum: - version: ==1.57.0 + version: ==1.58.0 open-aea-test-autonomy: version: ==0.12.1.post1 default_connection: null diff --git a/packages/valory/agents/abstract_abci/aea-config.yaml b/packages/valory/agents/abstract_abci/aea-config.yaml index 7d01cbf087..b1b25b644d 100644 --- a/packages/valory/agents/abstract_abci/aea-config.yaml +++ b/packages/valory/agents/abstract_abci/aea-config.yaml @@ -49,7 +49,7 @@ logging_config: propagate: true dependencies: open-aea-ledger-ethereum: - version: ==1.57.0 + version: ==1.58.0 open-aea-test-autonomy: version: ==0.17.0 default_connection: valory/abci:0.1.0 diff --git a/packages/valory/agents/counter/aea-config.yaml b/packages/valory/agents/counter/aea-config.yaml index 394218615c..a424efc3d7 100644 --- a/packages/valory/agents/counter/aea-config.yaml +++ b/packages/valory/agents/counter/aea-config.yaml @@ -50,7 +50,7 @@ logging_config: propagate: true dependencies: open-aea-ledger-ethereum: - version: ==1.57.0 + version: ==1.58.0 open-aea-test-autonomy: version: ==0.17.0 customs: [] diff --git a/packages/valory/agents/counter_client/aea-config.yaml b/packages/valory/agents/counter_client/aea-config.yaml index 92f2986ae5..99378ae3f1 100644 --- a/packages/valory/agents/counter_client/aea-config.yaml +++ b/packages/valory/agents/counter_client/aea-config.yaml @@ -28,7 +28,7 @@ logging_config: version: 1 dependencies: open-aea-ledger-ethereum: - version: ==1.57.0 + version: ==1.58.0 customs: [] default_connection: null --- diff --git a/packages/valory/agents/offend_slash/aea-config.yaml b/packages/valory/agents/offend_slash/aea-config.yaml index d0544174a6..37a246bce3 100644 --- a/packages/valory/agents/offend_slash/aea-config.yaml +++ b/packages/valory/agents/offend_slash/aea-config.yaml @@ -69,7 +69,7 @@ logging_config: skill_exception_policy: stop_and_exit dependencies: open-aea-ledger-ethereum: - version: ==1.57.0 + version: ==1.58.0 open-aea-test-autonomy: version: ==0.17.0 customs: [] diff --git a/packages/valory/agents/register_reset/aea-config.yaml b/packages/valory/agents/register_reset/aea-config.yaml index 00c92f37b6..417b684f18 100644 --- a/packages/valory/agents/register_reset/aea-config.yaml +++ b/packages/valory/agents/register_reset/aea-config.yaml @@ -69,7 +69,7 @@ logging_config: propagate: true dependencies: open-aea-ledger-ethereum: - version: ==1.57.0 + version: ==1.58.0 open-aea-test-autonomy: version: ==0.17.0 customs: [] diff --git a/packages/valory/agents/register_reset_recovery/aea-config.yaml b/packages/valory/agents/register_reset_recovery/aea-config.yaml index 6d3894d027..ec8a3a32a1 100644 --- a/packages/valory/agents/register_reset_recovery/aea-config.yaml +++ b/packages/valory/agents/register_reset_recovery/aea-config.yaml @@ -59,9 +59,9 @@ logging_config: propagate: true dependencies: open-aea-ledger-cosmos: - version: ==1.57.0 + version: ==1.58.0 open-aea-ledger-ethereum: - version: ==1.57.0 + version: ==1.58.0 open-aea-test-autonomy: version: ==0.17.0 skill_exception_policy: stop_and_exit diff --git a/packages/valory/agents/register_termination/aea-config.yaml b/packages/valory/agents/register_termination/aea-config.yaml index 43f5556d85..324330397a 100644 --- a/packages/valory/agents/register_termination/aea-config.yaml +++ b/packages/valory/agents/register_termination/aea-config.yaml @@ -69,7 +69,7 @@ logging_config: propagate: false dependencies: open-aea-ledger-ethereum: - version: ==1.57.0 + version: ==1.58.0 open-aea-test-autonomy: version: ==0.17.0 customs: [] diff --git a/packages/valory/agents/registration_start_up/aea-config.yaml b/packages/valory/agents/registration_start_up/aea-config.yaml index 1a43168eaa..5233f686bb 100644 --- a/packages/valory/agents/registration_start_up/aea-config.yaml +++ b/packages/valory/agents/registration_start_up/aea-config.yaml @@ -62,9 +62,9 @@ logging_config: propagate: true dependencies: open-aea-ledger-cosmos: - version: ==1.57.0 + version: ==1.58.0 open-aea-ledger-ethereum: - version: ==1.57.0 + version: ==1.58.0 open-aea-test-autonomy: version: ==0.17.0 skill_exception_policy: just_log diff --git a/packages/valory/agents/solana_transfer_agent/aea-config.yaml b/packages/valory/agents/solana_transfer_agent/aea-config.yaml index b610891c08..1ca84c4af3 100644 --- a/packages/valory/agents/solana_transfer_agent/aea-config.yaml +++ b/packages/valory/agents/solana_transfer_agent/aea-config.yaml @@ -66,9 +66,9 @@ logging_config: propagate: false dependencies: open-aea-ledger-ethereum: - version: ==1.57.0 + version: ==1.58.0 open-aea-ledger-solana: - version: ==1.57.0 + version: ==1.58.0 open-aea-test-autonomy: version: ==0.17.0 customs: [] diff --git a/packages/valory/agents/test_abci/aea-config.yaml b/packages/valory/agents/test_abci/aea-config.yaml index efe53458b0..28bc2d4b73 100644 --- a/packages/valory/agents/test_abci/aea-config.yaml +++ b/packages/valory/agents/test_abci/aea-config.yaml @@ -49,7 +49,7 @@ logging_config: propagate: true dependencies: open-aea-ledger-ethereum: - version: ==1.57.0 + version: ==1.58.0 customs: [] default_connection: null --- diff --git a/packages/valory/agents/test_ipfs/aea-config.yaml b/packages/valory/agents/test_ipfs/aea-config.yaml index e916cde35d..71c8b27eda 100644 --- a/packages/valory/agents/test_ipfs/aea-config.yaml +++ b/packages/valory/agents/test_ipfs/aea-config.yaml @@ -61,7 +61,7 @@ logging_config: propagate: true dependencies: open-aea-ledger-ethereum: - version: ==1.57.0 + version: ==1.58.0 customs: [] default_connection: null --- diff --git a/packages/valory/connections/ipfs/connection.yaml b/packages/valory/connections/ipfs/connection.yaml index 3be913884d..9ff495c83b 100644 --- a/packages/valory/connections/ipfs/connection.yaml +++ b/packages/valory/connections/ipfs/connection.yaml @@ -24,7 +24,7 @@ dependencies: ipfshttpclient: version: ==0.8.0a2 open-aea-cli-ipfs: - version: ==1.57.0 + version: ==1.58.0 requests: version: <2.31.2,>=2.28.1 is_abstract: false diff --git a/packages/valory/contracts/gnosis_safe/contract.yaml b/packages/valory/contracts/gnosis_safe/contract.yaml index 23349e6979..b2294340ee 100644 --- a/packages/valory/contracts/gnosis_safe/contract.yaml +++ b/packages/valory/contracts/gnosis_safe/contract.yaml @@ -29,7 +29,7 @@ dependencies: eth_typing: {} hexbytes: {} open-aea-ledger-ethereum: - version: ==1.57.0 + version: ==1.58.0 open-aea-test-autonomy: version: ==0.17.0 packaging: {} diff --git a/packages/valory/contracts/gnosis_safe_proxy_factory/contract.yaml b/packages/valory/contracts/gnosis_safe_proxy_factory/contract.yaml index 6284eb7fbf..5896aa0212 100644 --- a/packages/valory/contracts/gnosis_safe_proxy_factory/contract.yaml +++ b/packages/valory/contracts/gnosis_safe_proxy_factory/contract.yaml @@ -19,7 +19,7 @@ contract_interface_paths: ethereum: build/ProxyFactory_V1_3_0.json dependencies: open-aea-ledger-ethereum: - version: ==1.57.0 + version: ==1.58.0 open-aea-test-autonomy: version: ==0.17.0 web3: diff --git a/packages/valory/contracts/multicall2/contract.yaml b/packages/valory/contracts/multicall2/contract.yaml index 9b107f2101..01aa3c8ae5 100755 --- a/packages/valory/contracts/multicall2/contract.yaml +++ b/packages/valory/contracts/multicall2/contract.yaml @@ -18,6 +18,6 @@ contract_interface_paths: contracts: [] dependencies: open-aea-ledger-ethereum: - version: ==1.57.0 + version: ==1.58.0 web3: version: <7,>=6.0.0 diff --git a/packages/valory/contracts/service_registry/contract.yaml b/packages/valory/contracts/service_registry/contract.yaml index 6bc5e056a6..6c7a750b15 100644 --- a/packages/valory/contracts/service_registry/contract.yaml +++ b/packages/valory/contracts/service_registry/contract.yaml @@ -19,7 +19,7 @@ contract_interface_paths: ethereum: build/ServiceRegistry.json dependencies: open-aea-ledger-ethereum: - version: ==1.57.0 + version: ==1.58.0 open-aea-test-autonomy: version: ==0.17.0 web3: diff --git a/packages/valory/contracts/squads_multisig/contract.yaml b/packages/valory/contracts/squads_multisig/contract.yaml index f287699504..6cd795c8ee 100644 --- a/packages/valory/contracts/squads_multisig/contract.yaml +++ b/packages/valory/contracts/squads_multisig/contract.yaml @@ -16,7 +16,7 @@ contract_interface_paths: solana: build/SquadsMultisig.json dependencies: open-aea-ledger-solana: - version: ==1.57.0 + version: ==1.58.0 solders: version: '>=0.14.0' contracts: [] diff --git a/packages/valory/skills/abstract_round_abci/skill.yaml b/packages/valory/skills/abstract_round_abci/skill.yaml index 36b9df415c..9600d71940 100644 --- a/packages/valory/skills/abstract_round_abci/skill.yaml +++ b/packages/valory/skills/abstract_round_abci/skill.yaml @@ -145,7 +145,7 @@ dependencies: ipfshttpclient: version: ==0.8.0a2 open-aea-cli-ipfs: - version: ==1.57.0 + version: ==1.58.0 open-aea-test-autonomy: version: ==0.17.0 protobuf: diff --git a/plugins/aea-test-autonomy/setup.py b/plugins/aea-test-autonomy/setup.py index 7f7e7a71af..059e0aa7af 100644 --- a/plugins/aea-test-autonomy/setup.py +++ b/plugins/aea-test-autonomy/setup.py @@ -24,9 +24,9 @@ base_deps = [ - "open-aea[all]>=1.57.0,<2.0.0", + "open-aea[all]>=1.58.0,<2.0.0", "pytest==7.2.1", - "open-aea-ledger-ethereum>=1.57.0,<2.0.0", + "open-aea-ledger-ethereum>=1.58.0,<2.0.0", "docker==6.1.2", ] diff --git a/setup.py b/setup.py index 5886179be5..74ef344d7d 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ def get_all_extras() -> Dict: cli_deps = [ "click>=8.1.0,<9", - "open-aea-cli-ipfs==1.57.0", + "open-aea-cli-ipfs==1.58.0", "texttable==1.6.7", "python-dotenv>=0.14.5,<0.22.0", "pytest>=7.0.0,<7.3.0", @@ -53,7 +53,7 @@ def get_all_extras() -> Dict: base_deps = [ "Flask>=2.0.2,<3.0.0", - "open-aea[all]==1.57.0", + "open-aea[all]==1.58.0", "watchdog>=2.1.6", "pytest==7.2.1", "valory-docker-compose==1.29.3", diff --git a/skaffold.yaml b/skaffold.yaml index d17f35adc5..e24f3acad3 100644 --- a/skaffold.yaml +++ b/skaffold.yaml @@ -1,5 +1,5 @@ .aea_version: &aea_version - AEA_VERSION: "1.57.0" + AEA_VERSION: "1.58.0" AUTHOR: "valory" .docker_args: &docker_args dockerfile: Dockerfile diff --git a/tox.ini b/tox.ini index 716b8deb2c..c1928a1df1 100644 --- a/tox.ini +++ b/tox.ini @@ -15,10 +15,10 @@ deps = docker==6.1.2 valory-docker-compose==1.29.3 Flask==2.0.2 - open-aea[all]==1.57.0 - open-aea-cli-ipfs==1.57.0 - open-aea-ledger-ethereum==1.57.0 - open-aea-ledger-ethereum-hwi==1.57.0 + open-aea[all]==1.58.0 + open-aea-cli-ipfs==1.58.0 + open-aea-ledger-ethereum==1.58.0 + open-aea-ledger-ethereum-hwi==1.58.0 Werkzeug==2.0.3 requests<2.31.2,>=2.28.1 texttable==1.6.7 @@ -44,7 +44,7 @@ deps = hexbytes packaging pytest-asyncio - open-aea-ledger-cosmos==1.57.0 + open-aea-ledger-cosmos==1.58.0 open-aea-cosmpy==0.6.7 grpcio==1.53.0 hypothesis==6.21.6 @@ -63,10 +63,10 @@ deps = gql==3.5.0 docker==6.1.2 Flask==2.0.2 - open-aea[all]==1.57.0 - open-aea-ledger-ethereum==1.57.0 - open-aea-ledger-ethereum-hwi==1.57.0 - open-aea-cli-ipfs==1.57.0 + open-aea[all]==1.58.0 + open-aea-ledger-ethereum==1.58.0 + open-aea-ledger-ethereum-hwi==1.58.0 + open-aea-cli-ipfs==1.58.0 ipfshttpclient==0.8.0a2 Werkzeug==2.0.3 watchdog>=2.1.6 @@ -375,7 +375,7 @@ deps = {[deps-packages]deps} commands = python -m pip install --no-deps file://{toxinidir}/plugins/aea-test-autonomy - python -m pip install open-aea-ledger-solana==1.57.0 + python -m pip install open-aea-ledger-solana==1.58.0 autonomy init --reset --author ci --remote --ipfs --ipfs-node "/dns/registry.autonolas.tech/tcp/443/https" autonomy packages sync @@ -945,7 +945,7 @@ fetchai-ledger-api: >=0.0.1 chardet: >=3.0.4 certifi: >=2019.11.28 ;TODO: the following are confilctive packages that need to be sorted -; sub-dep of open-aea-ledger-ethereum-hwi==1.57.0 +; sub-dep of open-aea-ledger-ethereum-hwi==1.58.0 hidapi: >=0.13.1 ; shows in pip freesze but not referenced on code paramiko: >=3.1.0 From 218656d01789cc38f812059be61e4263850332e1 Mon Sep 17 00:00:00 2001 From: Adamantios Date: Fri, 18 Oct 2024 13:35:43 +0300 Subject: [PATCH 2/4] chore: bump to `v0.18.0` --- autonomy/__version__.py | 2 +- deployments/Dockerfiles/autonomy-user/requirements.txt | 2 +- packages/valory/agents/abstract_abci/aea-config.yaml | 2 +- packages/valory/agents/counter/aea-config.yaml | 2 +- packages/valory/agents/offend_slash/aea-config.yaml | 2 +- packages/valory/agents/register_reset/aea-config.yaml | 2 +- packages/valory/agents/register_reset_recovery/aea-config.yaml | 2 +- packages/valory/agents/register_termination/aea-config.yaml | 2 +- packages/valory/agents/registration_start_up/aea-config.yaml | 2 +- packages/valory/agents/solana_transfer_agent/aea-config.yaml | 2 +- packages/valory/connections/abci/connection.yaml | 2 +- packages/valory/contracts/gnosis_safe/contract.yaml | 2 +- .../valory/contracts/gnosis_safe_proxy_factory/contract.yaml | 2 +- packages/valory/contracts/service_registry/contract.yaml | 2 +- packages/valory/skills/abstract_round_abci/skill.yaml | 2 +- .../valory/skills/squads_transaction_settlement_abci/skill.yaml | 2 +- packages/valory/skills/transaction_settlement_abci/skill.yaml | 2 +- plugins/aea-test-autonomy/aea_test_autonomy/configurations.py | 2 +- plugins/aea-test-autonomy/setup.py | 2 +- tests/test_base.py | 2 +- 20 files changed, 20 insertions(+), 20 deletions(-) diff --git a/autonomy/__version__.py b/autonomy/__version__.py index 4cf4b19f16..0336420121 100644 --- a/autonomy/__version__.py +++ b/autonomy/__version__.py @@ -22,7 +22,7 @@ __title__ = "open-autonomy" __description__ = "A framework for the creation of autonomous agent services." __url__ = "https://github.com/valory-xyz/open-autonomy.git" -__version__ = "0.17.0" +__version__ = "0.18.0" __author__ = "Valory AG" __license__ = "Apache-2.0" __copyright__ = "2021-2024 Valory AG" diff --git a/deployments/Dockerfiles/autonomy-user/requirements.txt b/deployments/Dockerfiles/autonomy-user/requirements.txt index 15d38681af..0cfa1558c6 100644 --- a/deployments/Dockerfiles/autonomy-user/requirements.txt +++ b/deployments/Dockerfiles/autonomy-user/requirements.txt @@ -1,4 +1,4 @@ -open-autonomy[all]==0.17.0 +open-autonomy[all]==0.18.0 open-aea[all]==1.58.0 open-aea-cli-ipfs==1.58.0 open-aea-ledger-ethereum==1.58.0 diff --git a/packages/valory/agents/abstract_abci/aea-config.yaml b/packages/valory/agents/abstract_abci/aea-config.yaml index b1b25b644d..587e4b804d 100644 --- a/packages/valory/agents/abstract_abci/aea-config.yaml +++ b/packages/valory/agents/abstract_abci/aea-config.yaml @@ -51,7 +51,7 @@ dependencies: open-aea-ledger-ethereum: version: ==1.58.0 open-aea-test-autonomy: - version: ==0.17.0 + version: ==0.18.0 default_connection: valory/abci:0.1.0 customs: [] --- diff --git a/packages/valory/agents/counter/aea-config.yaml b/packages/valory/agents/counter/aea-config.yaml index a424efc3d7..c61d890e84 100644 --- a/packages/valory/agents/counter/aea-config.yaml +++ b/packages/valory/agents/counter/aea-config.yaml @@ -52,7 +52,7 @@ dependencies: open-aea-ledger-ethereum: version: ==1.58.0 open-aea-test-autonomy: - version: ==0.17.0 + version: ==0.18.0 customs: [] default_connection: null --- diff --git a/packages/valory/agents/offend_slash/aea-config.yaml b/packages/valory/agents/offend_slash/aea-config.yaml index 37a246bce3..88162f8eb2 100644 --- a/packages/valory/agents/offend_slash/aea-config.yaml +++ b/packages/valory/agents/offend_slash/aea-config.yaml @@ -71,7 +71,7 @@ dependencies: open-aea-ledger-ethereum: version: ==1.58.0 open-aea-test-autonomy: - version: ==0.17.0 + version: ==0.18.0 customs: [] default_connection: null --- diff --git a/packages/valory/agents/register_reset/aea-config.yaml b/packages/valory/agents/register_reset/aea-config.yaml index 417b684f18..db259b9f74 100644 --- a/packages/valory/agents/register_reset/aea-config.yaml +++ b/packages/valory/agents/register_reset/aea-config.yaml @@ -71,7 +71,7 @@ dependencies: open-aea-ledger-ethereum: version: ==1.58.0 open-aea-test-autonomy: - version: ==0.17.0 + version: ==0.18.0 customs: [] default_connection: null --- diff --git a/packages/valory/agents/register_reset_recovery/aea-config.yaml b/packages/valory/agents/register_reset_recovery/aea-config.yaml index ec8a3a32a1..fe9d2bc40f 100644 --- a/packages/valory/agents/register_reset_recovery/aea-config.yaml +++ b/packages/valory/agents/register_reset_recovery/aea-config.yaml @@ -63,7 +63,7 @@ dependencies: open-aea-ledger-ethereum: version: ==1.58.0 open-aea-test-autonomy: - version: ==0.17.0 + version: ==0.18.0 skill_exception_policy: stop_and_exit customs: [] default_connection: null diff --git a/packages/valory/agents/register_termination/aea-config.yaml b/packages/valory/agents/register_termination/aea-config.yaml index 324330397a..9b5bed50e7 100644 --- a/packages/valory/agents/register_termination/aea-config.yaml +++ b/packages/valory/agents/register_termination/aea-config.yaml @@ -71,7 +71,7 @@ dependencies: open-aea-ledger-ethereum: version: ==1.58.0 open-aea-test-autonomy: - version: ==0.17.0 + version: ==0.18.0 customs: [] default_connection: null --- diff --git a/packages/valory/agents/registration_start_up/aea-config.yaml b/packages/valory/agents/registration_start_up/aea-config.yaml index 5233f686bb..661de98798 100644 --- a/packages/valory/agents/registration_start_up/aea-config.yaml +++ b/packages/valory/agents/registration_start_up/aea-config.yaml @@ -66,7 +66,7 @@ dependencies: open-aea-ledger-ethereum: version: ==1.58.0 open-aea-test-autonomy: - version: ==0.17.0 + version: ==0.18.0 skill_exception_policy: just_log connection_exception_policy: just_log customs: [] diff --git a/packages/valory/agents/solana_transfer_agent/aea-config.yaml b/packages/valory/agents/solana_transfer_agent/aea-config.yaml index 1ca84c4af3..9c3ad32e93 100644 --- a/packages/valory/agents/solana_transfer_agent/aea-config.yaml +++ b/packages/valory/agents/solana_transfer_agent/aea-config.yaml @@ -70,7 +70,7 @@ dependencies: open-aea-ledger-solana: version: ==1.58.0 open-aea-test-autonomy: - version: ==0.17.0 + version: ==0.18.0 customs: [] default_connection: null --- diff --git a/packages/valory/connections/abci/connection.yaml b/packages/valory/connections/abci/connection.yaml index dc319b4bcf..b8a95d9533 100644 --- a/packages/valory/connections/abci/connection.yaml +++ b/packages/valory/connections/abci/connection.yaml @@ -77,7 +77,7 @@ dependencies: hypothesis: version: ==6.21.6 open-aea-test-autonomy: - version: ==0.17.0 + version: ==0.18.0 protobuf: version: <4.25.0,>=4.21.6 is_abstract: false diff --git a/packages/valory/contracts/gnosis_safe/contract.yaml b/packages/valory/contracts/gnosis_safe/contract.yaml index b2294340ee..d62cd930f7 100644 --- a/packages/valory/contracts/gnosis_safe/contract.yaml +++ b/packages/valory/contracts/gnosis_safe/contract.yaml @@ -31,7 +31,7 @@ dependencies: open-aea-ledger-ethereum: version: ==1.58.0 open-aea-test-autonomy: - version: ==0.17.0 + version: ==0.18.0 packaging: {} pycryptodome: version: ==3.18.0 diff --git a/packages/valory/contracts/gnosis_safe_proxy_factory/contract.yaml b/packages/valory/contracts/gnosis_safe_proxy_factory/contract.yaml index 5896aa0212..6a293e93f7 100644 --- a/packages/valory/contracts/gnosis_safe_proxy_factory/contract.yaml +++ b/packages/valory/contracts/gnosis_safe_proxy_factory/contract.yaml @@ -21,6 +21,6 @@ dependencies: open-aea-ledger-ethereum: version: ==1.58.0 open-aea-test-autonomy: - version: ==0.17.0 + version: ==0.18.0 web3: version: <7,>=6.0.0 diff --git a/packages/valory/contracts/service_registry/contract.yaml b/packages/valory/contracts/service_registry/contract.yaml index 6c7a750b15..c5afdd54b4 100644 --- a/packages/valory/contracts/service_registry/contract.yaml +++ b/packages/valory/contracts/service_registry/contract.yaml @@ -21,6 +21,6 @@ dependencies: open-aea-ledger-ethereum: version: ==1.58.0 open-aea-test-autonomy: - version: ==0.17.0 + version: ==0.18.0 web3: version: <7,>=6.0.0 diff --git a/packages/valory/skills/abstract_round_abci/skill.yaml b/packages/valory/skills/abstract_round_abci/skill.yaml index 9600d71940..a546d743d3 100644 --- a/packages/valory/skills/abstract_round_abci/skill.yaml +++ b/packages/valory/skills/abstract_round_abci/skill.yaml @@ -147,7 +147,7 @@ dependencies: open-aea-cli-ipfs: version: ==1.58.0 open-aea-test-autonomy: - version: ==0.17.0 + version: ==0.18.0 protobuf: version: <4.25.0,>=4.21.6 py-ecc: diff --git a/packages/valory/skills/squads_transaction_settlement_abci/skill.yaml b/packages/valory/skills/squads_transaction_settlement_abci/skill.yaml index d0fa7d306a..5fe6c2b9f7 100644 --- a/packages/valory/skills/squads_transaction_settlement_abci/skill.yaml +++ b/packages/valory/skills/squads_transaction_settlement_abci/skill.yaml @@ -146,7 +146,7 @@ models: class_name: TendermintDialogues dependencies: open-aea-test-autonomy: - version: ==0.17.0 + version: ==0.18.0 web3: version: <7,>=6.0.0 is_abstract: true diff --git a/packages/valory/skills/transaction_settlement_abci/skill.yaml b/packages/valory/skills/transaction_settlement_abci/skill.yaml index 55e240d2d4..78029091d4 100644 --- a/packages/valory/skills/transaction_settlement_abci/skill.yaml +++ b/packages/valory/skills/transaction_settlement_abci/skill.yaml @@ -167,7 +167,7 @@ models: class_name: TendermintDialogues dependencies: open-aea-test-autonomy: - version: ==0.17.0 + version: ==0.18.0 web3: version: <7,>=6.0.0 is_abstract: true diff --git a/plugins/aea-test-autonomy/aea_test_autonomy/configurations.py b/plugins/aea-test-autonomy/aea_test_autonomy/configurations.py index c414032a3f..662efdf05c 100644 --- a/plugins/aea-test-autonomy/aea_test_autonomy/configurations.py +++ b/plugins/aea-test-autonomy/aea_test_autonomy/configurations.py @@ -37,7 +37,7 @@ def get_key(key_path: Path) -> str: HTTP_LOCALHOST = f"http://{LOCALHOST}" DEFAULT_IMAGE_VERSION = "latest" -MATCHING_FRAMEWORK_VERSION = "0.17.0" +MATCHING_FRAMEWORK_VERSION = "0.18.0" TENDERMINT_IMAGE_VERSION = os.environ.get( "TENDERMINT_IMAGE_VERSION", MATCHING_FRAMEWORK_VERSION ) diff --git a/plugins/aea-test-autonomy/setup.py b/plugins/aea-test-autonomy/setup.py index 059e0aa7af..e958347c05 100644 --- a/plugins/aea-test-autonomy/setup.py +++ b/plugins/aea-test-autonomy/setup.py @@ -32,7 +32,7 @@ setup( name="open-aea-test-autonomy", - version="0.17.0", + version="0.18.0", author="Valory AG", license="Apache-2.0", description="Plugin containing test tools for open-autonomy packages.", diff --git a/tests/test_base.py b/tests/test_base.py index 714b2cc696..768607f5df 100644 --- a/tests/test_base.py +++ b/tests/test_base.py @@ -62,7 +62,7 @@ def get_test_files(package_type: PackageType) -> List[Path]: def test_version() -> None: """Test the version.""" - assert autonomy.__version__ == "0.17.0" + assert autonomy.__version__ == "0.18.0" @pytest.mark.parametrize( From 44c16a6494ba447ef50f07f3a83c95a151afca49 Mon Sep 17 00:00:00 2001 From: Adamantios Date: Fri, 18 Oct 2024 13:46:04 +0300 Subject: [PATCH 3/4] chore: run generators --- autonomy/constants.py | 2 +- docs/counter_example.md | 4 +- .../overview_of_the_development_process.md | 10 +-- docs/package_list.md | 74 +++++++++---------- packages/packages.json | 74 +++++++++---------- .../agents/abstract_abci/aea-config.yaml | 4 +- .../valory/agents/counter/aea-config.yaml | 6 +- .../agents/offend_slash/aea-config.yaml | 26 +++---- .../agents/register_reset/aea-config.yaml | 14 ++-- .../register_reset_recovery/aea-config.yaml | 12 +-- .../register_termination/aea-config.yaml | 24 +++--- .../registration_start_up/aea-config.yaml | 12 +-- .../solana_transfer_agent/aea-config.yaml | 20 ++--- .../valory/agents/test_abci/aea-config.yaml | 10 +-- .../valory/agents/test_ipfs/aea-config.yaml | 12 +-- .../contracts/gnosis_safe/contract.yaml | 2 +- packages/valory/services/counter/service.yaml | 2 +- .../services/register_reset/service.yaml | 2 +- .../valory/skills/abstract_abci/skill.yaml | 2 +- .../skills/abstract_round_abci/skill.yaml | 8 +- packages/valory/skills/counter/skill.yaml | 4 +- packages/valory/skills/offend_abci/skill.yaml | 2 +- .../skills/offend_slash_abci/skill.yaml | 10 +-- .../skills/register_reset_abci/skill.yaml | 6 +- .../register_reset_recovery_abci/skill.yaml | 4 +- .../register_termination_abci/skill.yaml | 8 +- .../skills/registration_abci/skill.yaml | 4 +- .../valory/skills/reset_pause_abci/skill.yaml | 2 +- .../valory/skills/slashing_abci/skill.yaml | 8 +- .../skill.yaml | 4 +- .../valory/skills/termination_abci/skill.yaml | 8 +- packages/valory/skills/test_abci/skill.yaml | 4 +- .../valory/skills/test_ipfs_abci/skill.yaml | 2 +- .../skills/test_solana_tx_abci/skill.yaml | 10 +-- .../transaction_settlement_abci/skill.yaml | 4 +- 35 files changed, 200 insertions(+), 200 deletions(-) diff --git a/autonomy/constants.py b/autonomy/constants.py index 29acf67779..cb47008a07 100644 --- a/autonomy/constants.py +++ b/autonomy/constants.py @@ -65,4 +65,4 @@ ACN_IMAGE_NAME = os.environ.get("ACN_IMAGE_NAME", "valory/open-acn-node") DEFAULT_DOCKER_IMAGE_AUTHOR = "valory" OAR_IMAGE = "{image_author}/oar-{agent}:{version}" -ABSTRACT_ROUND_ABCI_SKILL_WITH_HASH = "valory/abstract_round_abci:0.1.0:bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm" +ABSTRACT_ROUND_ABCI_SKILL_WITH_HASH = "valory/abstract_round_abci:0.1.0:bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u" diff --git a/docs/counter_example.md b/docs/counter_example.md index 78a21687c4..648d40e2e4 100644 --- a/docs/counter_example.md +++ b/docs/counter_example.md @@ -25,7 +25,7 @@ you have followed the [setup instructions](guides/quick_start.md#setup). As a re 2. Use the CLI to download the `valory/counter` service. ```bash - autonomy fetch valory/counter:0.1.0:bafybeifuo5t3rf2ffgxhl6hblukjpqikpte276ecq5d44umrqj2dk4qhga --remote --service + autonomy fetch valory/counter:0.1.0:bafybeigrnqiyciudmpvjfdiyv5eznaxg3cdltzuzuvlyc32dnsyodkogr4 --remote --service cd counter ``` @@ -284,7 +284,7 @@ First, open a terminal to the root of this repository, and fetch the `counter_client` agent: ```bash -autonomy fetch valory/counter_client:0.1.0:bafybeigtaripyr6ek73uibrvqdvx5p6gdfejwghjdkiqzal2cxv6bi4rk4 --remote +autonomy fetch valory/counter_client:0.1.0:bafybeiddupmnsup4skrpfia2oyowzclqkggqkh7uifazfsch4r6chyf7ci --remote ``` This will copy the agent project in the `counter_client` directory. diff --git a/docs/guides/overview_of_the_development_process.md b/docs/guides/overview_of_the_development_process.md index 6bc36c87b2..3c009f96f4 100644 --- a/docs/guides/overview_of_the_development_process.md +++ b/docs/guides/overview_of_the_development_process.md @@ -32,11 +32,11 @@ To follow the next sections, you need to populate the local registry with a numb "third_party": { "service/valory/hello_world/0.1.0": "bafybeihl6j7ihkytk4t4ca2ffhctpzydwi6r4a354ubjasttuv2pw4oaci", "agent/valory/hello_world/0.1.0": "bafybeihtmp45mbfs5tyzrgxfoimh552on6dif42ifqidifait3ej2m5zvq", - "connection/valory/abci/0.1.0": "bafybeibvb5gixohtgx22oymwlb2nntdzicdu2jkbs66azvmag6zf7vgfoq", + "connection/valory/abci/0.1.0": "bafybeiakwvcz7fousp2xpnavept764fbnfboz6vvwvyuhj256spvjyfnli", "connection/valory/http_client/0.23.0": "bafybeihi772xgzpqeipp3fhmvpct4y6e6tpjp4sogwqrnf3wqspgeilg4u", - "connection/valory/ipfs/0.1.0": "bafybeiegnapkvkamis47v5ioza2haerrjdzzb23rptpmcydyneas7jc2wm", + "connection/valory/ipfs/0.1.0": "bafybeidgwcqdgr5qt4fkgd77tqlskqkfcuc2feglzpi5ns72jxzcev5y4q", "connection/valory/ledger/0.19.0": "bafybeigntoericenpzvwejqfuc3kqzo2pscs76qoygg5dbj6f4zxusru5e", - "contract/valory/service_registry/0.1.0": "bafybeicjpbrvcuzad4aaf56r5gsd4sebmeqkytr3zsbvb54snix73pvz2m", + "contract/valory/service_registry/0.1.0": "bafybeibosqbwid6lacesj5jh6lqgjvhf47wtpchjqdzjoeskpzws5kctia", "protocol/open_aea/signing/1.0.0": "bafybeihv62fim3wl2bayavfcg3u5e5cxu3b7brtu4cn5xoxd6lqwachasi", "protocol/valory/abci/0.1.0": "bafybeiaqmp7kocbfdboksayeqhkbrynvlfzsx4uy4x6nohywnmaig4an7u", "protocol/valory/acn/1.1.0": "bafybeidluaoeakae3exseupaea4i3yvvk5vivyt227xshjlffywwxzcxqe", @@ -45,8 +45,8 @@ To follow the next sections, you need to populate the local registry with a numb "protocol/valory/ipfs/0.1.0": "bafybeiftxi2qhreewgsc5wevogi7yc5g6hbcbo4uiuaibauhv3nhfcdtvm", "protocol/valory/ledger_api/1.0.0": "bafybeihdk6psr4guxmbcrc26jr2cbgzpd5aljkqvpwo64bvaz7tdti2oni", "protocol/valory/tendermint/0.1.0": "bafybeig4mi3vmlv5zpbjbfuzcgida6j5f2nhrpedxicmrrfjweqc5r7cra", - "skill/valory/abstract_abci/0.1.0": "bafybeidhxykmvnc35de2ne52vwncoowcvcsc6xwja4txg6j27wicadojuq", - "skill/valory/abstract_round_abci/0.1.0": "bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm", + "skill/valory/abstract_abci/0.1.0": "bafybeicf455v2kqkmhrdt6vftxizmzx2sp22m7lfax4qhhcp7bhtnoqiqy", + "skill/valory/abstract_round_abci/0.1.0": "bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u", "skill/valory/hello_world_abci/0.1.0": "bafybeiebittgfcz4idj633fkrvu6qle2ajekdjxpp7slggyur7vv7s7hrq", "connection/valory/p2p_libp2p_client/0.1.0": "bafybeid3xg5k2ol5adflqloy75ibgljmol6xsvzvezebsg7oudxeeolz7e" } diff --git a/docs/package_list.md b/docs/package_list.md index fcff9b738b..71dc627d59 100644 --- a/docs/package_list.md +++ b/docs/package_list.md @@ -3,51 +3,51 @@ | protocol/valory/abci/0.1.0 | `bafybeiaqmp7kocbfdboksayeqhkbrynvlfzsx4uy4x6nohywnmaig4an7u` | A protocol for ABCI requests and responses. | | protocol/valory/tendermint/0.1.0 | `bafybeig4mi3vmlv5zpbjbfuzcgida6j5f2nhrpedxicmrrfjweqc5r7cra` | A protocol for communication between two AEAs to share tendermint configuration details. | | protocol/valory/ipfs/0.1.0 | `bafybeiftxi2qhreewgsc5wevogi7yc5g6hbcbo4uiuaibauhv3nhfcdtvm` | A protocol specification for IPFS requests and responses. | -| contract/valory/gnosis_safe_proxy_factory/0.1.0 | `bafybeibcq4gedbqxrvg2lwj3gwcxoyfa45x3s2qiefiru6epudzu4dhjr4` | Gnosis Safe proxy factory (GnosisSafeProxyFactory) contract | +| contract/valory/gnosis_safe_proxy_factory/0.1.0 | `bafybeidtmqtzzwdo5tgnjqkpkllqxfssdnyermddjm6ftptn3hwr7hez4a` | Gnosis Safe proxy factory (GnosisSafeProxyFactory) contract | | contract/valory/component_registry/0.1.0 | `bafybeiepywewigowj533f55orx7oys3kk5lgdc247p2267scqfyp4gnqle` | Component registry contract | | contract/valory/agent_registry/0.1.0 | `bafybeignghdk7oqvyg722gz66tbuj2vj4vkatguj4b6lf5fqzqxkktcke4` | Agent registry contract | | contract/valory/registries_manager/0.1.0 | `bafybeicqf5y3kj42ow45hjcmnglose5n7bwpm2zl3ufuuevou24ewmgbde` | Registries Manager contract | | contract/valory/service_manager/0.1.0 | `bafybeibmqewfh5wnayopneyv4vx35n5k7loavzmcazyevntdoskw7vasom` | Service Manager contract | -| contract/valory/service_registry/0.1.0 | `bafybeicjpbrvcuzad4aaf56r5gsd4sebmeqkytr3zsbvb54snix73pvz2m` | Service Registry contract | -| contract/valory/gnosis_safe/0.1.0 | `bafybeihjaxefx27ppcghwmnsehbrqqmhwkiur5mprpsdp7tluge7zzwqgm` | Gnosis Safe (GnosisSafeL2) contract | +| contract/valory/service_registry/0.1.0 | `bafybeibosqbwid6lacesj5jh6lqgjvhf47wtpchjqdzjoeskpzws5kctia` | Service Registry contract | +| contract/valory/gnosis_safe/0.1.0 | `bafybeigwknqulavb4fwvcslytmlwip2ebvevurapuocsqgouhdne2xfupe` | Gnosis Safe (GnosisSafeL2) contract | | contract/valory/multisend/0.1.0 | `bafybeig5byt5urg2d2bsecufxe5ql7f4mezg3mekfleeh32nmuusx66p4y` | MultiSend contract | | contract/valory/erc20/0.1.0 | `bafybeib7ctk3deleyxayrqvropewefr2muj4kcqe3t3wscak25bjmxnqwe` | The scaffold contract scaffolds a contract to be implemented by the developer. | | contract/valory/service_registry_token_utility/0.1.0 | `bafybeifdia2y5546tvk6xzxeaqzf2n5n7dutj2hdzbgenxohaqhjtnjqm4` | The scaffold contract scaffolds a contract to be implemented by the developer. | -| contract/valory/squads_multisig/0.1.0 | `bafybeif3yfw3a3mk4bqlgtnmj3vgajw7p54co57reh4rfunmiifd7s5syu` | The scaffold contract scaffolds a contract to be implemented by the developer. | -| contract/valory/multicall2/0.1.0 | `bafybeibwmwj4thovk346jgg7s3fmakiqxglhx2ykloz7qdavwde3c4p74m` | The MakerDAO multicall2 contract. | -| connection/valory/abci/0.1.0 | `bafybeibvb5gixohtgx22oymwlb2nntdzicdu2jkbs66azvmag6zf7vgfoq` | connection to wrap communication with an ABCI server. | -| connection/valory/ipfs/0.1.0 | `bafybeiegnapkvkamis47v5ioza2haerrjdzzb23rptpmcydyneas7jc2wm` | A connection responsible for uploading and downloading files from IPFS. | -| skill/valory/test_ipfs_abci/0.1.0 | `bafybeigyvkfj3yyi3qtqs477f7sdimohwguota2hr5pitnkf7xiiiq7dde` | IPFS e2e testing application. | -| skill/valory/abstract_abci/0.1.0 | `bafybeidhxykmvnc35de2ne52vwncoowcvcsc6xwja4txg6j27wicadojuq` | The abci skill provides a template of an ABCI application. | -| skill/valory/abstract_round_abci/0.1.0 | `bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm` | abstract round-based ABCI application | -| skill/valory/transaction_settlement_abci/0.1.0 | `bafybeie3tjka4hwcvtg2rm5n6peazpskzuhg2p4zykdcypjotouclqw2ui` | ABCI application for transaction settlement. | -| skill/valory/registration_abci/0.1.0 | `bafybeihu4srivuolt4hdw6ovwl33p7bcsm44soaebqpfjvy32jbbtypwum` | ABCI application for common apps. | -| skill/valory/reset_pause_abci/0.1.0 | `bafybeib6yae55mfof2yamd7plwr6twuxobfvpurm4bede6rhcqhllyoxnm` | ABCI application for resetting and pausing app executions. | -| skill/valory/termination_abci/0.1.0 | `bafybeigq3ehr5gvaysomh6lo4j6vmgyw2dgdemsoxzf5kxjanktbibgci4` | Termination skill. | -| skill/valory/counter/0.1.0 | `bafybeiczhorpefldxwbw4dvvpgdcpg45zenaiqujuhgab227q3q3k2s3su` | The ABCI Counter application example. | +| contract/valory/squads_multisig/0.1.0 | `bafybeig3255ozp3uynecibpvse6wtwii4e6wak7l24wwr3ete7ews34r6m` | The scaffold contract scaffolds a contract to be implemented by the developer. | +| contract/valory/multicall2/0.1.0 | `bafybeiasmrkmklqmfbhj75ayvrfyqzaeuk3vp76utrdoohquamgxfu4n5a` | The MakerDAO multicall2 contract. | +| connection/valory/abci/0.1.0 | `bafybeiakwvcz7fousp2xpnavept764fbnfboz6vvwvyuhj256spvjyfnli` | connection to wrap communication with an ABCI server. | +| connection/valory/ipfs/0.1.0 | `bafybeidgwcqdgr5qt4fkgd77tqlskqkfcuc2feglzpi5ns72jxzcev5y4q` | A connection responsible for uploading and downloading files from IPFS. | +| skill/valory/test_ipfs_abci/0.1.0 | `bafybeidtxfv3cw6q5jqyivhtvl2aqcy3kxogug2t3qy4olbk7735g6dl4m` | IPFS e2e testing application. | +| skill/valory/abstract_abci/0.1.0 | `bafybeicf455v2kqkmhrdt6vftxizmzx2sp22m7lfax4qhhcp7bhtnoqiqy` | The abci skill provides a template of an ABCI application. | +| skill/valory/abstract_round_abci/0.1.0 | `bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u` | abstract round-based ABCI application | +| skill/valory/transaction_settlement_abci/0.1.0 | `bafybeib734aek2i2a2xq3vtkeowitjc7pppij4roravzhrrmz5w4uku5zu` | ABCI application for transaction settlement. | +| skill/valory/registration_abci/0.1.0 | `bafybeibcfl2uo4idyfln5swilditxmb3ekvbkknvtlr43u7jksdy2q6p6e` | ABCI application for common apps. | +| skill/valory/reset_pause_abci/0.1.0 | `bafybeigimcyxyvnrdxtleq5iwe3e6osko533uhl46k2zgelrd6kjagisme` | ABCI application for resetting and pausing app executions. | +| skill/valory/termination_abci/0.1.0 | `bafybeiaonsrhgg4rtz5fz6emj3g37wcsefsbwfefpeb5hrkgjmt3bzz46y` | Termination skill. | +| skill/valory/counter/0.1.0 | `bafybeice562ilhtqepg3ss2kv2o22z5vxqvqiv2lgpump7xefth4atlj7q` | The ABCI Counter application example. | | skill/valory/counter_client/0.1.0 | `bafybeih2hz7bvltfnlw7cgjrwgjdw3xgejwcnkxry7i6ajcspwcw2hrb3e` | A client for the ABCI counter application. | -| skill/valory/register_reset_abci/0.1.0 | `bafybeieepo5xipv2pg5374aamx73kilw65gdv3g3r65vtzvarje2atdlce` | ABCI application for dummy skill that registers and resets | -| skill/valory/register_termination_abci/0.1.0 | `bafybeicozwc7fm6djguapqkwha4gmhnbgoh5lkm56wuinmzvsjge5wqtsu` | ABCI application for dummy skill that registers and resets | -| skill/valory/test_abci/0.1.0 | `bafybeihpifogbya32alitepjt6lgedd7aopui34ikeenbxrhytd44qtukq` | ABCI application for testing the ABCI connection. | -| skill/valory/register_reset_recovery_abci/0.1.0 | `bafybeihcw746pc6jalypa2u3bc4vtfsitzqqe2ayko53sshfxz7upj567i` | ABCI application for dummy skill that registers and resets | -| skill/valory/slashing_abci/0.1.0 | `bafybeigisnogt7acjqm7c7zydojtcsvy5ahxn3kjelncjvgr2lembt3kum` | Slashing skill. | -| skill/valory/offend_abci/0.1.0 | `bafybeia6z3loppvpwlkil5aqxk65ijyn3skkgluybfkz3xsxq7sjlv2mra` | Offend ABCI application. | -| skill/valory/offend_slash_abci/0.1.0 | `bafybeifmv3ykgh6tqtqmt4powoszrqe2p4wcgwe232rfldpam2duyluuxq` | ABCI application used in order to test the slashing abci | -| skill/valory/squads_transaction_settlement_abci/0.1.0 | `bafybeiclwwyh3w5gzdmqa5u6diwdycgrenh52dy5zvbtyjh2pidae3vwnm` | ABCI application for transaction settlement. | -| skill/valory/test_solana_tx_abci/0.1.0 | `bafybeih5rs6naly7ylsmxg2sttgegkowrehnqwjpqg6sehktd3ytpgdn7e` | SOLANA e2e testing application. | -| agent/valory/test_ipfs/0.1.0 | `bafybeie5i3jq4ptdsanieggil6eo2gmdlc2mjxlz66qgxxruztl72ogqdq` | Agent for testing the ABCI connection. | -| agent/valory/abstract_abci/0.1.0 | `bafybeic3irlrci2cumvf527m3y3ce3sny7hgkov5xla6dbrbyff427q32i` | The abstract ABCI AEA - for testing purposes only. | -| agent/valory/counter/0.1.0 | `bafybeicmkzuopqjckrjrbbnr6pj7w54acyr4cupwx7chyxmanw3xbvmvdu` | The ABCI Counter example as an AEA | -| agent/valory/counter_client/0.1.0 | `bafybeigtaripyr6ek73uibrvqdvx5p6gdfejwghjdkiqzal2cxv6bi4rk4` | The ABCI Counter example as an AEA | -| agent/valory/register_reset/0.1.0 | `bafybeiehtgg3jw5q5wulxeko5lsh7sxjzm2lpt2fjon7ik6pslqu2wcose` | Register reset to replicate Tendermint issue. | -| agent/valory/register_termination/0.1.0 | `bafybeigxv6zxhyravhbfpna2ic5hynz3omaz6b43t7qfhmpbmvpwjevsz4` | Register terminate to test the termination feature. | -| agent/valory/registration_start_up/0.1.0 | `bafybeigjpbl4igywgbithjfm3dbyraaftnw6detxb3cwegosobm35kiiqi` | Registration start-up ABCI example. | -| agent/valory/test_abci/0.1.0 | `bafybeifd6psj7elnp4uxgkbj2wvihuvzvoiydpzj55mxpoc3ow5oyic7pu` | Agent for testing the ABCI connection. | -| agent/valory/register_reset_recovery/0.1.0 | `bafybeiairxx4ketm7yhjjraf4y5a7qjt7prgm43yulf5rst4it24igp6k4` | Agent to showcase hard reset as a recovery mechanism. | -| agent/valory/offend_slash/0.1.0 | `bafybeigkbue7uzbodge3umyucuikrcdue2viqzcfuxk7hxcr3mld7sjese` | Offend and slash to test the slashing feature. | -| agent/valory/solana_transfer_agent/0.1.0 | `bafybeic6lstxskhdq7ss3q7ugolntwkjnhttksinrgm6mpzi2gnuhdzdg4` | Register terminate to test the termination feature. | -| service/valory/counter/0.1.0 | `bafybeifuo5t3rf2ffgxhl6hblukjpqikpte276ecq5d44umrqj2dk4qhga` | A set of agents incrementing a counter | -| service/valory/register_reset/0.1.0 | `bafybeifknstopql4yxtbh4gtuvprpz6kt2kidhdkm4gapoocjovkvueloe` | Test and debug tendermint reset mechanism. | +| skill/valory/register_reset_abci/0.1.0 | `bafybeifousslxneywi2jb7bldr3dv4ggtb7wb5u627464cifkpgeitnjji` | ABCI application for dummy skill that registers and resets | +| skill/valory/register_termination_abci/0.1.0 | `bafybeib34ylzw7eqpag3kelyetjjeq5erga3d2odo3n7sei7rgdpvvjlv4` | ABCI application for dummy skill that registers and resets | +| skill/valory/test_abci/0.1.0 | `bafybeihkco6se6ke23gyvcju5ljoxwvvpux5mnfspsjivwjdmsb2icv2xi` | ABCI application for testing the ABCI connection. | +| skill/valory/register_reset_recovery_abci/0.1.0 | `bafybeibsqklyvchzpehapuxxbcqqgakaacdg6r4af3sisv7kq455rbibvq` | ABCI application for dummy skill that registers and resets | +| skill/valory/slashing_abci/0.1.0 | `bafybeia4kb5gj7gvux5rxqfzzjholfoybmd7smtbyqqk7grvq6wvttpdpy` | Slashing skill. | +| skill/valory/offend_abci/0.1.0 | `bafybeie463qjhqs773dfjo7wnsvh4ex5cuvy64qn46rsvq3zobknhped6i` | Offend ABCI application. | +| skill/valory/offend_slash_abci/0.1.0 | `bafybeia73t65p43qp77tunautgystskqx4jdn3ixmdruloah6my2hcd4zu` | ABCI application used in order to test the slashing abci | +| skill/valory/squads_transaction_settlement_abci/0.1.0 | `bafybeic66pivvpquznxxfofjdyhxx446lplgdxi77vlq6p5frpebecawqm` | ABCI application for transaction settlement. | +| skill/valory/test_solana_tx_abci/0.1.0 | `bafybeigkrzhqg4iq3qwt4lwt54njvlhlampedos7fc6zgczz5uakbucidi` | SOLANA e2e testing application. | +| agent/valory/test_ipfs/0.1.0 | `bafybeiehx2mufyqsklco2z7iuheoaivq4ozow5ef454l2jwk2hastguaye` | Agent for testing the ABCI connection. | +| agent/valory/abstract_abci/0.1.0 | `bafybeiha33im7ctvbn2j2pjwlfxsrjidgpf3cd4eitulurxpt43vkzj5oy` | The abstract ABCI AEA - for testing purposes only. | +| agent/valory/counter/0.1.0 | `bafybeicyrwzcjlmnyzge6ezsnj5hdenevtbi54gtfly7z2a6xwc7ccwmt4` | The ABCI Counter example as an AEA | +| agent/valory/counter_client/0.1.0 | `bafybeiddupmnsup4skrpfia2oyowzclqkggqkh7uifazfsch4r6chyf7ci` | The ABCI Counter example as an AEA | +| agent/valory/register_reset/0.1.0 | `bafybeia56mklcyb6ujv2vox5s4u7wg64y7axmmreiejwgzdaunaqqylaqe` | Register reset to replicate Tendermint issue. | +| agent/valory/register_termination/0.1.0 | `bafybeig7qy7f2az3oo3xcnaivxzswhphxsfqvuyr4dibbxlvcgxz7hgtiy` | Register terminate to test the termination feature. | +| agent/valory/registration_start_up/0.1.0 | `bafybeiam3ejpad3q2wtfhisn7lwgvlp7i2nfob6k66jzclxbfqjurtael4` | Registration start-up ABCI example. | +| agent/valory/test_abci/0.1.0 | `bafybeich3n5p75ixldi6eidnxfd4vwgltjtkfgka5hewmkj6nlx74ip5be` | Agent for testing the ABCI connection. | +| agent/valory/register_reset_recovery/0.1.0 | `bafybeienpfiau63z6aokmqj6haeqyoyh5elccqeobqfituzxneh4jmsdhq` | Agent to showcase hard reset as a recovery mechanism. | +| agent/valory/offend_slash/0.1.0 | `bafybeichelvlrrubuukasyga2tpglj52obakbeodvl3y2ukqw3rcrqki5u` | Offend and slash to test the slashing feature. | +| agent/valory/solana_transfer_agent/0.1.0 | `bafybeigy4m7pw3qvv3vrt7ahrh6pdhcijxfzmg6ueuhauhfbdg43rjskpa` | Register terminate to test the termination feature. | +| service/valory/counter/0.1.0 | `bafybeigrnqiyciudmpvjfdiyv5eznaxg3cdltzuzuvlyc32dnsyodkogr4` | A set of agents incrementing a counter | +| service/valory/register_reset/0.1.0 | `bafybeihji5q5agu3qjwmnnn4pemrc4takobn4niqo53dclypf74hv6srf4` | Test and debug tendermint reset mechanism. | | protocol/open_aea/signing/1.0.0 | `bafybeihv62fim3wl2bayavfcg3u5e5cxu3b7brtu4cn5xoxd6lqwachasi` | A protocol for communication between skills and decision maker. | | protocol/valory/acn/1.1.0 | `bafybeidluaoeakae3exseupaea4i3yvvk5vivyt227xshjlffywwxzcxqe` | The protocol used for envelope delivery on the ACN. | | protocol/valory/http/1.0.0 | `bafybeifugzl63kfdmwrxwphrnrhj7bn6iruxieme3a4ntzejf6kmtuwmae` | A protocol for HTTP requests and responses. | diff --git a/packages/packages.json b/packages/packages.json index 33c0619bf8..d39eeaedf4 100644 --- a/packages/packages.json +++ b/packages/packages.json @@ -3,51 +3,51 @@ "protocol/valory/abci/0.1.0": "bafybeiaqmp7kocbfdboksayeqhkbrynvlfzsx4uy4x6nohywnmaig4an7u", "protocol/valory/tendermint/0.1.0": "bafybeig4mi3vmlv5zpbjbfuzcgida6j5f2nhrpedxicmrrfjweqc5r7cra", "protocol/valory/ipfs/0.1.0": "bafybeiftxi2qhreewgsc5wevogi7yc5g6hbcbo4uiuaibauhv3nhfcdtvm", - "contract/valory/gnosis_safe_proxy_factory/0.1.0": "bafybeibcq4gedbqxrvg2lwj3gwcxoyfa45x3s2qiefiru6epudzu4dhjr4", + "contract/valory/gnosis_safe_proxy_factory/0.1.0": "bafybeidtmqtzzwdo5tgnjqkpkllqxfssdnyermddjm6ftptn3hwr7hez4a", "contract/valory/component_registry/0.1.0": "bafybeiepywewigowj533f55orx7oys3kk5lgdc247p2267scqfyp4gnqle", "contract/valory/agent_registry/0.1.0": "bafybeignghdk7oqvyg722gz66tbuj2vj4vkatguj4b6lf5fqzqxkktcke4", "contract/valory/registries_manager/0.1.0": "bafybeicqf5y3kj42ow45hjcmnglose5n7bwpm2zl3ufuuevou24ewmgbde", "contract/valory/service_manager/0.1.0": "bafybeibmqewfh5wnayopneyv4vx35n5k7loavzmcazyevntdoskw7vasom", - "contract/valory/service_registry/0.1.0": "bafybeicjpbrvcuzad4aaf56r5gsd4sebmeqkytr3zsbvb54snix73pvz2m", - "contract/valory/gnosis_safe/0.1.0": "bafybeihjaxefx27ppcghwmnsehbrqqmhwkiur5mprpsdp7tluge7zzwqgm", + "contract/valory/service_registry/0.1.0": "bafybeibosqbwid6lacesj5jh6lqgjvhf47wtpchjqdzjoeskpzws5kctia", + "contract/valory/gnosis_safe/0.1.0": "bafybeigwknqulavb4fwvcslytmlwip2ebvevurapuocsqgouhdne2xfupe", "contract/valory/multisend/0.1.0": "bafybeig5byt5urg2d2bsecufxe5ql7f4mezg3mekfleeh32nmuusx66p4y", "contract/valory/erc20/0.1.0": "bafybeib7ctk3deleyxayrqvropewefr2muj4kcqe3t3wscak25bjmxnqwe", "contract/valory/service_registry_token_utility/0.1.0": "bafybeifdia2y5546tvk6xzxeaqzf2n5n7dutj2hdzbgenxohaqhjtnjqm4", - "contract/valory/squads_multisig/0.1.0": "bafybeif3yfw3a3mk4bqlgtnmj3vgajw7p54co57reh4rfunmiifd7s5syu", - "contract/valory/multicall2/0.1.0": "bafybeibwmwj4thovk346jgg7s3fmakiqxglhx2ykloz7qdavwde3c4p74m", - "connection/valory/abci/0.1.0": "bafybeibvb5gixohtgx22oymwlb2nntdzicdu2jkbs66azvmag6zf7vgfoq", - "connection/valory/ipfs/0.1.0": "bafybeiegnapkvkamis47v5ioza2haerrjdzzb23rptpmcydyneas7jc2wm", - "skill/valory/test_ipfs_abci/0.1.0": "bafybeigyvkfj3yyi3qtqs477f7sdimohwguota2hr5pitnkf7xiiiq7dde", - "skill/valory/abstract_abci/0.1.0": "bafybeidhxykmvnc35de2ne52vwncoowcvcsc6xwja4txg6j27wicadojuq", - "skill/valory/abstract_round_abci/0.1.0": "bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm", - "skill/valory/transaction_settlement_abci/0.1.0": "bafybeie3tjka4hwcvtg2rm5n6peazpskzuhg2p4zykdcypjotouclqw2ui", - "skill/valory/registration_abci/0.1.0": "bafybeihu4srivuolt4hdw6ovwl33p7bcsm44soaebqpfjvy32jbbtypwum", - "skill/valory/reset_pause_abci/0.1.0": "bafybeib6yae55mfof2yamd7plwr6twuxobfvpurm4bede6rhcqhllyoxnm", - "skill/valory/termination_abci/0.1.0": "bafybeigq3ehr5gvaysomh6lo4j6vmgyw2dgdemsoxzf5kxjanktbibgci4", - "skill/valory/counter/0.1.0": "bafybeiczhorpefldxwbw4dvvpgdcpg45zenaiqujuhgab227q3q3k2s3su", + "contract/valory/squads_multisig/0.1.0": "bafybeig3255ozp3uynecibpvse6wtwii4e6wak7l24wwr3ete7ews34r6m", + "contract/valory/multicall2/0.1.0": "bafybeiasmrkmklqmfbhj75ayvrfyqzaeuk3vp76utrdoohquamgxfu4n5a", + "connection/valory/abci/0.1.0": "bafybeiakwvcz7fousp2xpnavept764fbnfboz6vvwvyuhj256spvjyfnli", + "connection/valory/ipfs/0.1.0": "bafybeidgwcqdgr5qt4fkgd77tqlskqkfcuc2feglzpi5ns72jxzcev5y4q", + "skill/valory/test_ipfs_abci/0.1.0": "bafybeidtxfv3cw6q5jqyivhtvl2aqcy3kxogug2t3qy4olbk7735g6dl4m", + "skill/valory/abstract_abci/0.1.0": "bafybeicf455v2kqkmhrdt6vftxizmzx2sp22m7lfax4qhhcp7bhtnoqiqy", + "skill/valory/abstract_round_abci/0.1.0": "bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u", + "skill/valory/transaction_settlement_abci/0.1.0": "bafybeib734aek2i2a2xq3vtkeowitjc7pppij4roravzhrrmz5w4uku5zu", + "skill/valory/registration_abci/0.1.0": "bafybeibcfl2uo4idyfln5swilditxmb3ekvbkknvtlr43u7jksdy2q6p6e", + "skill/valory/reset_pause_abci/0.1.0": "bafybeigimcyxyvnrdxtleq5iwe3e6osko533uhl46k2zgelrd6kjagisme", + "skill/valory/termination_abci/0.1.0": "bafybeiaonsrhgg4rtz5fz6emj3g37wcsefsbwfefpeb5hrkgjmt3bzz46y", + "skill/valory/counter/0.1.0": "bafybeice562ilhtqepg3ss2kv2o22z5vxqvqiv2lgpump7xefth4atlj7q", "skill/valory/counter_client/0.1.0": "bafybeih2hz7bvltfnlw7cgjrwgjdw3xgejwcnkxry7i6ajcspwcw2hrb3e", - "skill/valory/register_reset_abci/0.1.0": "bafybeieepo5xipv2pg5374aamx73kilw65gdv3g3r65vtzvarje2atdlce", - "skill/valory/register_termination_abci/0.1.0": "bafybeicozwc7fm6djguapqkwha4gmhnbgoh5lkm56wuinmzvsjge5wqtsu", - "skill/valory/test_abci/0.1.0": "bafybeihpifogbya32alitepjt6lgedd7aopui34ikeenbxrhytd44qtukq", - "skill/valory/register_reset_recovery_abci/0.1.0": "bafybeihcw746pc6jalypa2u3bc4vtfsitzqqe2ayko53sshfxz7upj567i", - "skill/valory/slashing_abci/0.1.0": "bafybeigisnogt7acjqm7c7zydojtcsvy5ahxn3kjelncjvgr2lembt3kum", - "skill/valory/offend_abci/0.1.0": "bafybeia6z3loppvpwlkil5aqxk65ijyn3skkgluybfkz3xsxq7sjlv2mra", - "skill/valory/offend_slash_abci/0.1.0": "bafybeifmv3ykgh6tqtqmt4powoszrqe2p4wcgwe232rfldpam2duyluuxq", - "skill/valory/squads_transaction_settlement_abci/0.1.0": "bafybeiclwwyh3w5gzdmqa5u6diwdycgrenh52dy5zvbtyjh2pidae3vwnm", - "skill/valory/test_solana_tx_abci/0.1.0": "bafybeih5rs6naly7ylsmxg2sttgegkowrehnqwjpqg6sehktd3ytpgdn7e", - "agent/valory/test_ipfs/0.1.0": "bafybeie5i3jq4ptdsanieggil6eo2gmdlc2mjxlz66qgxxruztl72ogqdq", - "agent/valory/abstract_abci/0.1.0": "bafybeic3irlrci2cumvf527m3y3ce3sny7hgkov5xla6dbrbyff427q32i", - "agent/valory/counter/0.1.0": "bafybeicmkzuopqjckrjrbbnr6pj7w54acyr4cupwx7chyxmanw3xbvmvdu", - "agent/valory/counter_client/0.1.0": "bafybeigtaripyr6ek73uibrvqdvx5p6gdfejwghjdkiqzal2cxv6bi4rk4", - "agent/valory/register_reset/0.1.0": "bafybeiehtgg3jw5q5wulxeko5lsh7sxjzm2lpt2fjon7ik6pslqu2wcose", - "agent/valory/register_termination/0.1.0": "bafybeigxv6zxhyravhbfpna2ic5hynz3omaz6b43t7qfhmpbmvpwjevsz4", - "agent/valory/registration_start_up/0.1.0": "bafybeigjpbl4igywgbithjfm3dbyraaftnw6detxb3cwegosobm35kiiqi", - "agent/valory/test_abci/0.1.0": "bafybeifd6psj7elnp4uxgkbj2wvihuvzvoiydpzj55mxpoc3ow5oyic7pu", - "agent/valory/register_reset_recovery/0.1.0": "bafybeiairxx4ketm7yhjjraf4y5a7qjt7prgm43yulf5rst4it24igp6k4", - "agent/valory/offend_slash/0.1.0": "bafybeigkbue7uzbodge3umyucuikrcdue2viqzcfuxk7hxcr3mld7sjese", - "agent/valory/solana_transfer_agent/0.1.0": "bafybeic6lstxskhdq7ss3q7ugolntwkjnhttksinrgm6mpzi2gnuhdzdg4", - "service/valory/counter/0.1.0": "bafybeifuo5t3rf2ffgxhl6hblukjpqikpte276ecq5d44umrqj2dk4qhga", - "service/valory/register_reset/0.1.0": "bafybeifknstopql4yxtbh4gtuvprpz6kt2kidhdkm4gapoocjovkvueloe" + "skill/valory/register_reset_abci/0.1.0": "bafybeifousslxneywi2jb7bldr3dv4ggtb7wb5u627464cifkpgeitnjji", + "skill/valory/register_termination_abci/0.1.0": "bafybeib34ylzw7eqpag3kelyetjjeq5erga3d2odo3n7sei7rgdpvvjlv4", + "skill/valory/test_abci/0.1.0": "bafybeihkco6se6ke23gyvcju5ljoxwvvpux5mnfspsjivwjdmsb2icv2xi", + "skill/valory/register_reset_recovery_abci/0.1.0": "bafybeibsqklyvchzpehapuxxbcqqgakaacdg6r4af3sisv7kq455rbibvq", + "skill/valory/slashing_abci/0.1.0": "bafybeia4kb5gj7gvux5rxqfzzjholfoybmd7smtbyqqk7grvq6wvttpdpy", + "skill/valory/offend_abci/0.1.0": "bafybeie463qjhqs773dfjo7wnsvh4ex5cuvy64qn46rsvq3zobknhped6i", + "skill/valory/offend_slash_abci/0.1.0": "bafybeia73t65p43qp77tunautgystskqx4jdn3ixmdruloah6my2hcd4zu", + "skill/valory/squads_transaction_settlement_abci/0.1.0": "bafybeic66pivvpquznxxfofjdyhxx446lplgdxi77vlq6p5frpebecawqm", + "skill/valory/test_solana_tx_abci/0.1.0": "bafybeigkrzhqg4iq3qwt4lwt54njvlhlampedos7fc6zgczz5uakbucidi", + "agent/valory/test_ipfs/0.1.0": "bafybeiehx2mufyqsklco2z7iuheoaivq4ozow5ef454l2jwk2hastguaye", + "agent/valory/abstract_abci/0.1.0": "bafybeiha33im7ctvbn2j2pjwlfxsrjidgpf3cd4eitulurxpt43vkzj5oy", + "agent/valory/counter/0.1.0": "bafybeicyrwzcjlmnyzge6ezsnj5hdenevtbi54gtfly7z2a6xwc7ccwmt4", + "agent/valory/counter_client/0.1.0": "bafybeiddupmnsup4skrpfia2oyowzclqkggqkh7uifazfsch4r6chyf7ci", + "agent/valory/register_reset/0.1.0": "bafybeia56mklcyb6ujv2vox5s4u7wg64y7axmmreiejwgzdaunaqqylaqe", + "agent/valory/register_termination/0.1.0": "bafybeig7qy7f2az3oo3xcnaivxzswhphxsfqvuyr4dibbxlvcgxz7hgtiy", + "agent/valory/registration_start_up/0.1.0": "bafybeiam3ejpad3q2wtfhisn7lwgvlp7i2nfob6k66jzclxbfqjurtael4", + "agent/valory/test_abci/0.1.0": "bafybeich3n5p75ixldi6eidnxfd4vwgltjtkfgka5hewmkj6nlx74ip5be", + "agent/valory/register_reset_recovery/0.1.0": "bafybeienpfiau63z6aokmqj6haeqyoyh5elccqeobqfituzxneh4jmsdhq", + "agent/valory/offend_slash/0.1.0": "bafybeichelvlrrubuukasyga2tpglj52obakbeodvl3y2ukqw3rcrqki5u", + "agent/valory/solana_transfer_agent/0.1.0": "bafybeigy4m7pw3qvv3vrt7ahrh6pdhcijxfzmg6ueuhauhfbdg43rjskpa", + "service/valory/counter/0.1.0": "bafybeigrnqiyciudmpvjfdiyv5eznaxg3cdltzuzuvlyc32dnsyodkogr4", + "service/valory/register_reset/0.1.0": "bafybeihji5q5agu3qjwmnnn4pemrc4takobn4niqo53dclypf74hv6srf4" }, "third_party": { "protocol/open_aea/signing/1.0.0": "bafybeihv62fim3wl2bayavfcg3u5e5cxu3b7brtu4cn5xoxd6lqwachasi", diff --git a/packages/valory/agents/abstract_abci/aea-config.yaml b/packages/valory/agents/abstract_abci/aea-config.yaml index 587e4b804d..c26691f3c1 100644 --- a/packages/valory/agents/abstract_abci/aea-config.yaml +++ b/packages/valory/agents/abstract_abci/aea-config.yaml @@ -11,14 +11,14 @@ fingerprint: tests/test_abstract_abci.py: bafybeic4hileugdjd6bwy4n5beqrjo5auwalz5twt3lyx6m62kb65nc6ca fingerprint_ignore_patterns: [] connections: -- valory/abci:0.1.0:bafybeibvb5gixohtgx22oymwlb2nntdzicdu2jkbs66azvmag6zf7vgfoq +- valory/abci:0.1.0:bafybeiakwvcz7fousp2xpnavept764fbnfboz6vvwvyuhj256spvjyfnli - valory/p2p_libp2p_client:0.1.0:bafybeid3xg5k2ol5adflqloy75ibgljmol6xsvzvezebsg7oudxeeolz7e contracts: [] protocols: - open_aea/signing:1.0.0:bafybeihv62fim3wl2bayavfcg3u5e5cxu3b7brtu4cn5xoxd6lqwachasi - valory/abci:0.1.0:bafybeiaqmp7kocbfdboksayeqhkbrynvlfzsx4uy4x6nohywnmaig4an7u skills: -- valory/abstract_abci:0.1.0:bafybeidhxykmvnc35de2ne52vwncoowcvcsc6xwja4txg6j27wicadojuq +- valory/abstract_abci:0.1.0:bafybeicf455v2kqkmhrdt6vftxizmzx2sp22m7lfax4qhhcp7bhtnoqiqy default_ledger: ethereum required_ledgers: - ethereum diff --git a/packages/valory/agents/counter/aea-config.yaml b/packages/valory/agents/counter/aea-config.yaml index c61d890e84..93d3e74e84 100644 --- a/packages/valory/agents/counter/aea-config.yaml +++ b/packages/valory/agents/counter/aea-config.yaml @@ -11,15 +11,15 @@ fingerprint: tests/test_counter.py: bafybeiafaruvutgm65f6wnc4u5z37cyiizuttbpelgs4bpmimnjyp5tnj4 fingerprint_ignore_patterns: [] connections: -- valory/abci:0.1.0:bafybeibvb5gixohtgx22oymwlb2nntdzicdu2jkbs66azvmag6zf7vgfoq +- valory/abci:0.1.0:bafybeiakwvcz7fousp2xpnavept764fbnfboz6vvwvyuhj256spvjyfnli - valory/p2p_libp2p_client:0.1.0:bafybeid3xg5k2ol5adflqloy75ibgljmol6xsvzvezebsg7oudxeeolz7e contracts: [] protocols: - open_aea/signing:1.0.0:bafybeihv62fim3wl2bayavfcg3u5e5cxu3b7brtu4cn5xoxd6lqwachasi - valory/abci:0.1.0:bafybeiaqmp7kocbfdboksayeqhkbrynvlfzsx4uy4x6nohywnmaig4an7u skills: -- valory/abstract_abci:0.1.0:bafybeidhxykmvnc35de2ne52vwncoowcvcsc6xwja4txg6j27wicadojuq -- valory/counter:0.1.0:bafybeiczhorpefldxwbw4dvvpgdcpg45zenaiqujuhgab227q3q3k2s3su +- valory/abstract_abci:0.1.0:bafybeicf455v2kqkmhrdt6vftxizmzx2sp22m7lfax4qhhcp7bhtnoqiqy +- valory/counter:0.1.0:bafybeice562ilhtqepg3ss2kv2o22z5vxqvqiv2lgpump7xefth4atlj7q default_ledger: ethereum required_ledgers: - ethereum diff --git a/packages/valory/agents/offend_slash/aea-config.yaml b/packages/valory/agents/offend_slash/aea-config.yaml index 88162f8eb2..04f9d5775a 100644 --- a/packages/valory/agents/offend_slash/aea-config.yaml +++ b/packages/valory/agents/offend_slash/aea-config.yaml @@ -11,15 +11,15 @@ fingerprint: tests/test_offend_slash.py: bafybeideqlz3vfssoylvesyr4oualignptsjsbiqlzgoskpd7ru6vosg4m fingerprint_ignore_patterns: [] connections: -- valory/abci:0.1.0:bafybeibvb5gixohtgx22oymwlb2nntdzicdu2jkbs66azvmag6zf7vgfoq +- valory/abci:0.1.0:bafybeiakwvcz7fousp2xpnavept764fbnfboz6vvwvyuhj256spvjyfnli - valory/http_client:0.23.0:bafybeihi772xgzpqeipp3fhmvpct4y6e6tpjp4sogwqrnf3wqspgeilg4u -- valory/ipfs:0.1.0:bafybeiegnapkvkamis47v5ioza2haerrjdzzb23rptpmcydyneas7jc2wm +- valory/ipfs:0.1.0:bafybeidgwcqdgr5qt4fkgd77tqlskqkfcuc2feglzpi5ns72jxzcev5y4q - valory/ledger:0.19.0:bafybeigntoericenpzvwejqfuc3kqzo2pscs76qoygg5dbj6f4zxusru5e - valory/p2p_libp2p_client:0.1.0:bafybeid3xg5k2ol5adflqloy75ibgljmol6xsvzvezebsg7oudxeeolz7e contracts: -- valory/gnosis_safe:0.1.0:bafybeihjaxefx27ppcghwmnsehbrqqmhwkiur5mprpsdp7tluge7zzwqgm -- valory/gnosis_safe_proxy_factory:0.1.0:bafybeibcq4gedbqxrvg2lwj3gwcxoyfa45x3s2qiefiru6epudzu4dhjr4 -- valory/service_registry:0.1.0:bafybeicjpbrvcuzad4aaf56r5gsd4sebmeqkytr3zsbvb54snix73pvz2m +- valory/gnosis_safe:0.1.0:bafybeigwknqulavb4fwvcslytmlwip2ebvevurapuocsqgouhdne2xfupe +- valory/gnosis_safe_proxy_factory:0.1.0:bafybeidtmqtzzwdo5tgnjqkpkllqxfssdnyermddjm6ftptn3hwr7hez4a +- valory/service_registry:0.1.0:bafybeibosqbwid6lacesj5jh6lqgjvhf47wtpchjqdzjoeskpzws5kctia protocols: - open_aea/signing:1.0.0:bafybeihv62fim3wl2bayavfcg3u5e5cxu3b7brtu4cn5xoxd6lqwachasi - valory/abci:0.1.0:bafybeiaqmp7kocbfdboksayeqhkbrynvlfzsx4uy4x6nohywnmaig4an7u @@ -30,14 +30,14 @@ protocols: - valory/ledger_api:1.0.0:bafybeihdk6psr4guxmbcrc26jr2cbgzpd5aljkqvpwo64bvaz7tdti2oni - valory/tendermint:0.1.0:bafybeig4mi3vmlv5zpbjbfuzcgida6j5f2nhrpedxicmrrfjweqc5r7cra skills: -- valory/abstract_abci:0.1.0:bafybeidhxykmvnc35de2ne52vwncoowcvcsc6xwja4txg6j27wicadojuq -- valory/abstract_round_abci:0.1.0:bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm -- valory/offend_abci:0.1.0:bafybeia6z3loppvpwlkil5aqxk65ijyn3skkgluybfkz3xsxq7sjlv2mra -- valory/offend_slash_abci:0.1.0:bafybeifmv3ykgh6tqtqmt4powoszrqe2p4wcgwe232rfldpam2duyluuxq -- valory/registration_abci:0.1.0:bafybeihu4srivuolt4hdw6ovwl33p7bcsm44soaebqpfjvy32jbbtypwum -- valory/reset_pause_abci:0.1.0:bafybeib6yae55mfof2yamd7plwr6twuxobfvpurm4bede6rhcqhllyoxnm -- valory/slashing_abci:0.1.0:bafybeigisnogt7acjqm7c7zydojtcsvy5ahxn3kjelncjvgr2lembt3kum -- valory/transaction_settlement_abci:0.1.0:bafybeie3tjka4hwcvtg2rm5n6peazpskzuhg2p4zykdcypjotouclqw2ui +- valory/abstract_abci:0.1.0:bafybeicf455v2kqkmhrdt6vftxizmzx2sp22m7lfax4qhhcp7bhtnoqiqy +- valory/abstract_round_abci:0.1.0:bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u +- valory/offend_abci:0.1.0:bafybeie463qjhqs773dfjo7wnsvh4ex5cuvy64qn46rsvq3zobknhped6i +- valory/offend_slash_abci:0.1.0:bafybeia73t65p43qp77tunautgystskqx4jdn3ixmdruloah6my2hcd4zu +- valory/registration_abci:0.1.0:bafybeibcfl2uo4idyfln5swilditxmb3ekvbkknvtlr43u7jksdy2q6p6e +- valory/reset_pause_abci:0.1.0:bafybeigimcyxyvnrdxtleq5iwe3e6osko533uhl46k2zgelrd6kjagisme +- valory/slashing_abci:0.1.0:bafybeia4kb5gj7gvux5rxqfzzjholfoybmd7smtbyqqk7grvq6wvttpdpy +- valory/transaction_settlement_abci:0.1.0:bafybeib734aek2i2a2xq3vtkeowitjc7pppij4roravzhrrmz5w4uku5zu default_ledger: ethereum required_ledgers: - ethereum diff --git a/packages/valory/agents/register_reset/aea-config.yaml b/packages/valory/agents/register_reset/aea-config.yaml index db259b9f74..45a5b3726d 100644 --- a/packages/valory/agents/register_reset/aea-config.yaml +++ b/packages/valory/agents/register_reset/aea-config.yaml @@ -22,9 +22,9 @@ fingerprint: tests/test_register_reset.py: bafybeiecdipytoorhfpecbzd5pyx7e5zjpxsjc6yyqxezq2q6bhz7yuk7i fingerprint_ignore_patterns: [] connections: -- valory/abci:0.1.0:bafybeibvb5gixohtgx22oymwlb2nntdzicdu2jkbs66azvmag6zf7vgfoq +- valory/abci:0.1.0:bafybeiakwvcz7fousp2xpnavept764fbnfboz6vvwvyuhj256spvjyfnli - valory/http_client:0.23.0:bafybeihi772xgzpqeipp3fhmvpct4y6e6tpjp4sogwqrnf3wqspgeilg4u -- valory/ipfs:0.1.0:bafybeiegnapkvkamis47v5ioza2haerrjdzzb23rptpmcydyneas7jc2wm +- valory/ipfs:0.1.0:bafybeidgwcqdgr5qt4fkgd77tqlskqkfcuc2feglzpi5ns72jxzcev5y4q - valory/ledger:0.19.0:bafybeigntoericenpzvwejqfuc3kqzo2pscs76qoygg5dbj6f4zxusru5e - valory/p2p_libp2p_client:0.1.0:bafybeid3xg5k2ol5adflqloy75ibgljmol6xsvzvezebsg7oudxeeolz7e contracts: [] @@ -34,11 +34,11 @@ protocols: - valory/http:1.0.0:bafybeifugzl63kfdmwrxwphrnrhj7bn6iruxieme3a4ntzejf6kmtuwmae - valory/ipfs:0.1.0:bafybeiftxi2qhreewgsc5wevogi7yc5g6hbcbo4uiuaibauhv3nhfcdtvm skills: -- valory/abstract_abci:0.1.0:bafybeidhxykmvnc35de2ne52vwncoowcvcsc6xwja4txg6j27wicadojuq -- valory/abstract_round_abci:0.1.0:bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm -- valory/register_reset_abci:0.1.0:bafybeieepo5xipv2pg5374aamx73kilw65gdv3g3r65vtzvarje2atdlce -- valory/registration_abci:0.1.0:bafybeihu4srivuolt4hdw6ovwl33p7bcsm44soaebqpfjvy32jbbtypwum -- valory/reset_pause_abci:0.1.0:bafybeib6yae55mfof2yamd7plwr6twuxobfvpurm4bede6rhcqhllyoxnm +- valory/abstract_abci:0.1.0:bafybeicf455v2kqkmhrdt6vftxizmzx2sp22m7lfax4qhhcp7bhtnoqiqy +- valory/abstract_round_abci:0.1.0:bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u +- valory/register_reset_abci:0.1.0:bafybeifousslxneywi2jb7bldr3dv4ggtb7wb5u627464cifkpgeitnjji +- valory/registration_abci:0.1.0:bafybeibcfl2uo4idyfln5swilditxmb3ekvbkknvtlr43u7jksdy2q6p6e +- valory/reset_pause_abci:0.1.0:bafybeigimcyxyvnrdxtleq5iwe3e6osko533uhl46k2zgelrd6kjagisme default_ledger: ethereum required_ledgers: - ethereum diff --git a/packages/valory/agents/register_reset_recovery/aea-config.yaml b/packages/valory/agents/register_reset_recovery/aea-config.yaml index fe9d2bc40f..d76796c33b 100644 --- a/packages/valory/agents/register_reset_recovery/aea-config.yaml +++ b/packages/valory/agents/register_reset_recovery/aea-config.yaml @@ -12,9 +12,9 @@ fingerprint: tests/test_register_reset_recovery.py: bafybeiajrzfeqcdvapjhdjggyxya2g3gdxboodpagld6uyclrsrfsiri7u fingerprint_ignore_patterns: [] connections: -- valory/abci:0.1.0:bafybeibvb5gixohtgx22oymwlb2nntdzicdu2jkbs66azvmag6zf7vgfoq +- valory/abci:0.1.0:bafybeiakwvcz7fousp2xpnavept764fbnfboz6vvwvyuhj256spvjyfnli - valory/http_client:0.23.0:bafybeihi772xgzpqeipp3fhmvpct4y6e6tpjp4sogwqrnf3wqspgeilg4u -- valory/ipfs:0.1.0:bafybeiegnapkvkamis47v5ioza2haerrjdzzb23rptpmcydyneas7jc2wm +- valory/ipfs:0.1.0:bafybeidgwcqdgr5qt4fkgd77tqlskqkfcuc2feglzpi5ns72jxzcev5y4q - valory/ledger:0.19.0:bafybeigntoericenpzvwejqfuc3kqzo2pscs76qoygg5dbj6f4zxusru5e - valory/p2p_libp2p_client:0.1.0:bafybeid3xg5k2ol5adflqloy75ibgljmol6xsvzvezebsg7oudxeeolz7e contracts: [] @@ -24,10 +24,10 @@ protocols: - valory/http:1.0.0:bafybeifugzl63kfdmwrxwphrnrhj7bn6iruxieme3a4ntzejf6kmtuwmae - valory/ipfs:0.1.0:bafybeiftxi2qhreewgsc5wevogi7yc5g6hbcbo4uiuaibauhv3nhfcdtvm skills: -- valory/abstract_abci:0.1.0:bafybeidhxykmvnc35de2ne52vwncoowcvcsc6xwja4txg6j27wicadojuq -- valory/abstract_round_abci:0.1.0:bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm -- valory/register_reset_recovery_abci:0.1.0:bafybeihcw746pc6jalypa2u3bc4vtfsitzqqe2ayko53sshfxz7upj567i -- valory/registration_abci:0.1.0:bafybeihu4srivuolt4hdw6ovwl33p7bcsm44soaebqpfjvy32jbbtypwum +- valory/abstract_abci:0.1.0:bafybeicf455v2kqkmhrdt6vftxizmzx2sp22m7lfax4qhhcp7bhtnoqiqy +- valory/abstract_round_abci:0.1.0:bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u +- valory/register_reset_recovery_abci:0.1.0:bafybeibsqklyvchzpehapuxxbcqqgakaacdg6r4af3sisv7kq455rbibvq +- valory/registration_abci:0.1.0:bafybeibcfl2uo4idyfln5swilditxmb3ekvbkknvtlr43u7jksdy2q6p6e default_ledger: ethereum required_ledgers: - ethereum diff --git a/packages/valory/agents/register_termination/aea-config.yaml b/packages/valory/agents/register_termination/aea-config.yaml index 9b5bed50e7..c341030e14 100644 --- a/packages/valory/agents/register_termination/aea-config.yaml +++ b/packages/valory/agents/register_termination/aea-config.yaml @@ -12,16 +12,16 @@ fingerprint: tests/test_register_reset.py: bafybeieaeelbyrorts3akgsu7xp27jdsv5u7r4psatdxph2agvpym7em6m fingerprint_ignore_patterns: [] connections: -- valory/abci:0.1.0:bafybeibvb5gixohtgx22oymwlb2nntdzicdu2jkbs66azvmag6zf7vgfoq +- valory/abci:0.1.0:bafybeiakwvcz7fousp2xpnavept764fbnfboz6vvwvyuhj256spvjyfnli - valory/http_client:0.23.0:bafybeihi772xgzpqeipp3fhmvpct4y6e6tpjp4sogwqrnf3wqspgeilg4u -- valory/ipfs:0.1.0:bafybeiegnapkvkamis47v5ioza2haerrjdzzb23rptpmcydyneas7jc2wm +- valory/ipfs:0.1.0:bafybeidgwcqdgr5qt4fkgd77tqlskqkfcuc2feglzpi5ns72jxzcev5y4q - valory/ledger:0.19.0:bafybeigntoericenpzvwejqfuc3kqzo2pscs76qoygg5dbj6f4zxusru5e - valory/p2p_libp2p_client:0.1.0:bafybeid3xg5k2ol5adflqloy75ibgljmol6xsvzvezebsg7oudxeeolz7e contracts: -- valory/gnosis_safe:0.1.0:bafybeihjaxefx27ppcghwmnsehbrqqmhwkiur5mprpsdp7tluge7zzwqgm -- valory/gnosis_safe_proxy_factory:0.1.0:bafybeibcq4gedbqxrvg2lwj3gwcxoyfa45x3s2qiefiru6epudzu4dhjr4 +- valory/gnosis_safe:0.1.0:bafybeigwknqulavb4fwvcslytmlwip2ebvevurapuocsqgouhdne2xfupe +- valory/gnosis_safe_proxy_factory:0.1.0:bafybeidtmqtzzwdo5tgnjqkpkllqxfssdnyermddjm6ftptn3hwr7hez4a - valory/multisend:0.1.0:bafybeig5byt5urg2d2bsecufxe5ql7f4mezg3mekfleeh32nmuusx66p4y -- valory/service_registry:0.1.0:bafybeicjpbrvcuzad4aaf56r5gsd4sebmeqkytr3zsbvb54snix73pvz2m +- valory/service_registry:0.1.0:bafybeibosqbwid6lacesj5jh6lqgjvhf47wtpchjqdzjoeskpzws5kctia protocols: - open_aea/signing:1.0.0:bafybeihv62fim3wl2bayavfcg3u5e5cxu3b7brtu4cn5xoxd6lqwachasi - valory/abci:0.1.0:bafybeiaqmp7kocbfdboksayeqhkbrynvlfzsx4uy4x6nohywnmaig4an7u @@ -32,13 +32,13 @@ protocols: - valory/ledger_api:1.0.0:bafybeihdk6psr4guxmbcrc26jr2cbgzpd5aljkqvpwo64bvaz7tdti2oni - valory/tendermint:0.1.0:bafybeig4mi3vmlv5zpbjbfuzcgida6j5f2nhrpedxicmrrfjweqc5r7cra skills: -- valory/abstract_abci:0.1.0:bafybeidhxykmvnc35de2ne52vwncoowcvcsc6xwja4txg6j27wicadojuq -- valory/abstract_round_abci:0.1.0:bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm -- valory/register_termination_abci:0.1.0:bafybeicozwc7fm6djguapqkwha4gmhnbgoh5lkm56wuinmzvsjge5wqtsu -- valory/registration_abci:0.1.0:bafybeihu4srivuolt4hdw6ovwl33p7bcsm44soaebqpfjvy32jbbtypwum -- valory/reset_pause_abci:0.1.0:bafybeib6yae55mfof2yamd7plwr6twuxobfvpurm4bede6rhcqhllyoxnm -- valory/termination_abci:0.1.0:bafybeigq3ehr5gvaysomh6lo4j6vmgyw2dgdemsoxzf5kxjanktbibgci4 -- valory/transaction_settlement_abci:0.1.0:bafybeie3tjka4hwcvtg2rm5n6peazpskzuhg2p4zykdcypjotouclqw2ui +- valory/abstract_abci:0.1.0:bafybeicf455v2kqkmhrdt6vftxizmzx2sp22m7lfax4qhhcp7bhtnoqiqy +- valory/abstract_round_abci:0.1.0:bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u +- valory/register_termination_abci:0.1.0:bafybeib34ylzw7eqpag3kelyetjjeq5erga3d2odo3n7sei7rgdpvvjlv4 +- valory/registration_abci:0.1.0:bafybeibcfl2uo4idyfln5swilditxmb3ekvbkknvtlr43u7jksdy2q6p6e +- valory/reset_pause_abci:0.1.0:bafybeigimcyxyvnrdxtleq5iwe3e6osko533uhl46k2zgelrd6kjagisme +- valory/termination_abci:0.1.0:bafybeiaonsrhgg4rtz5fz6emj3g37wcsefsbwfefpeb5hrkgjmt3bzz46y +- valory/transaction_settlement_abci:0.1.0:bafybeib734aek2i2a2xq3vtkeowitjc7pppij4roravzhrrmz5w4uku5zu default_ledger: ethereum required_ledgers: - ethereum diff --git a/packages/valory/agents/registration_start_up/aea-config.yaml b/packages/valory/agents/registration_start_up/aea-config.yaml index 661de98798..25d8508680 100644 --- a/packages/valory/agents/registration_start_up/aea-config.yaml +++ b/packages/valory/agents/registration_start_up/aea-config.yaml @@ -11,13 +11,13 @@ fingerprint: tests/test_registration.py: bafybeigt74zxs36342pvi6txs375vjiiiyzw3ren3f4jzfsskxzventlku fingerprint_ignore_patterns: [] connections: -- valory/abci:0.1.0:bafybeibvb5gixohtgx22oymwlb2nntdzicdu2jkbs66azvmag6zf7vgfoq +- valory/abci:0.1.0:bafybeiakwvcz7fousp2xpnavept764fbnfboz6vvwvyuhj256spvjyfnli - valory/http_client:0.23.0:bafybeihi772xgzpqeipp3fhmvpct4y6e6tpjp4sogwqrnf3wqspgeilg4u -- valory/ipfs:0.1.0:bafybeiegnapkvkamis47v5ioza2haerrjdzzb23rptpmcydyneas7jc2wm +- valory/ipfs:0.1.0:bafybeidgwcqdgr5qt4fkgd77tqlskqkfcuc2feglzpi5ns72jxzcev5y4q - valory/ledger:0.19.0:bafybeigntoericenpzvwejqfuc3kqzo2pscs76qoygg5dbj6f4zxusru5e - valory/p2p_libp2p_client:0.1.0:bafybeid3xg5k2ol5adflqloy75ibgljmol6xsvzvezebsg7oudxeeolz7e contracts: -- valory/service_registry:0.1.0:bafybeicjpbrvcuzad4aaf56r5gsd4sebmeqkytr3zsbvb54snix73pvz2m +- valory/service_registry:0.1.0:bafybeibosqbwid6lacesj5jh6lqgjvhf47wtpchjqdzjoeskpzws5kctia protocols: - open_aea/signing:1.0.0:bafybeihv62fim3wl2bayavfcg3u5e5cxu3b7brtu4cn5xoxd6lqwachasi - valory/abci:0.1.0:bafybeiaqmp7kocbfdboksayeqhkbrynvlfzsx4uy4x6nohywnmaig4an7u @@ -28,9 +28,9 @@ protocols: - valory/ledger_api:1.0.0:bafybeihdk6psr4guxmbcrc26jr2cbgzpd5aljkqvpwo64bvaz7tdti2oni - valory/tendermint:0.1.0:bafybeig4mi3vmlv5zpbjbfuzcgida6j5f2nhrpedxicmrrfjweqc5r7cra skills: -- valory/abstract_abci:0.1.0:bafybeidhxykmvnc35de2ne52vwncoowcvcsc6xwja4txg6j27wicadojuq -- valory/abstract_round_abci:0.1.0:bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm -- valory/registration_abci:0.1.0:bafybeihu4srivuolt4hdw6ovwl33p7bcsm44soaebqpfjvy32jbbtypwum +- valory/abstract_abci:0.1.0:bafybeicf455v2kqkmhrdt6vftxizmzx2sp22m7lfax4qhhcp7bhtnoqiqy +- valory/abstract_round_abci:0.1.0:bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u +- valory/registration_abci:0.1.0:bafybeibcfl2uo4idyfln5swilditxmb3ekvbkknvtlr43u7jksdy2q6p6e default_ledger: ethereum required_ledgers: - ethereum diff --git a/packages/valory/agents/solana_transfer_agent/aea-config.yaml b/packages/valory/agents/solana_transfer_agent/aea-config.yaml index 9c3ad32e93..cfe6167e1b 100644 --- a/packages/valory/agents/solana_transfer_agent/aea-config.yaml +++ b/packages/valory/agents/solana_transfer_agent/aea-config.yaml @@ -12,14 +12,14 @@ fingerprint: tests/test_register_reset.py: bafybeibkkl43yfexlyizdyeabw2rjtzc55tdm27syk6wixdrcdsxeno53a fingerprint_ignore_patterns: [] connections: -- valory/abci:0.1.0:bafybeibvb5gixohtgx22oymwlb2nntdzicdu2jkbs66azvmag6zf7vgfoq +- valory/abci:0.1.0:bafybeiakwvcz7fousp2xpnavept764fbnfboz6vvwvyuhj256spvjyfnli - valory/http_client:0.23.0:bafybeihi772xgzpqeipp3fhmvpct4y6e6tpjp4sogwqrnf3wqspgeilg4u -- valory/ipfs:0.1.0:bafybeiegnapkvkamis47v5ioza2haerrjdzzb23rptpmcydyneas7jc2wm +- valory/ipfs:0.1.0:bafybeidgwcqdgr5qt4fkgd77tqlskqkfcuc2feglzpi5ns72jxzcev5y4q - valory/ledger:0.19.0:bafybeigntoericenpzvwejqfuc3kqzo2pscs76qoygg5dbj6f4zxusru5e - valory/p2p_libp2p_client:0.1.0:bafybeid3xg5k2ol5adflqloy75ibgljmol6xsvzvezebsg7oudxeeolz7e contracts: -- valory/service_registry:0.1.0:bafybeicjpbrvcuzad4aaf56r5gsd4sebmeqkytr3zsbvb54snix73pvz2m -- valory/squads_multisig:0.1.0:bafybeif3yfw3a3mk4bqlgtnmj3vgajw7p54co57reh4rfunmiifd7s5syu +- valory/service_registry:0.1.0:bafybeibosqbwid6lacesj5jh6lqgjvhf47wtpchjqdzjoeskpzws5kctia +- valory/squads_multisig:0.1.0:bafybeig3255ozp3uynecibpvse6wtwii4e6wak7l24wwr3ete7ews34r6m protocols: - open_aea/signing:1.0.0:bafybeihv62fim3wl2bayavfcg3u5e5cxu3b7brtu4cn5xoxd6lqwachasi - valory/abci:0.1.0:bafybeiaqmp7kocbfdboksayeqhkbrynvlfzsx4uy4x6nohywnmaig4an7u @@ -30,12 +30,12 @@ protocols: - valory/ledger_api:1.0.0:bafybeihdk6psr4guxmbcrc26jr2cbgzpd5aljkqvpwo64bvaz7tdti2oni - valory/tendermint:0.1.0:bafybeig4mi3vmlv5zpbjbfuzcgida6j5f2nhrpedxicmrrfjweqc5r7cra skills: -- valory/abstract_abci:0.1.0:bafybeidhxykmvnc35de2ne52vwncoowcvcsc6xwja4txg6j27wicadojuq -- valory/abstract_round_abci:0.1.0:bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm -- valory/registration_abci:0.1.0:bafybeihu4srivuolt4hdw6ovwl33p7bcsm44soaebqpfjvy32jbbtypwum -- valory/reset_pause_abci:0.1.0:bafybeib6yae55mfof2yamd7plwr6twuxobfvpurm4bede6rhcqhllyoxnm -- valory/squads_transaction_settlement_abci:0.1.0:bafybeiclwwyh3w5gzdmqa5u6diwdycgrenh52dy5zvbtyjh2pidae3vwnm -- valory/test_solana_tx_abci:0.1.0:bafybeih5rs6naly7ylsmxg2sttgegkowrehnqwjpqg6sehktd3ytpgdn7e +- valory/abstract_abci:0.1.0:bafybeicf455v2kqkmhrdt6vftxizmzx2sp22m7lfax4qhhcp7bhtnoqiqy +- valory/abstract_round_abci:0.1.0:bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u +- valory/registration_abci:0.1.0:bafybeibcfl2uo4idyfln5swilditxmb3ekvbkknvtlr43u7jksdy2q6p6e +- valory/reset_pause_abci:0.1.0:bafybeigimcyxyvnrdxtleq5iwe3e6osko533uhl46k2zgelrd6kjagisme +- valory/squads_transaction_settlement_abci:0.1.0:bafybeic66pivvpquznxxfofjdyhxx446lplgdxi77vlq6p5frpebecawqm +- valory/test_solana_tx_abci:0.1.0:bafybeigkrzhqg4iq3qwt4lwt54njvlhlampedos7fc6zgczz5uakbucidi default_ledger: solana required_ledgers: - solana diff --git a/packages/valory/agents/test_abci/aea-config.yaml b/packages/valory/agents/test_abci/aea-config.yaml index 28bc2d4b73..603d16f53b 100644 --- a/packages/valory/agents/test_abci/aea-config.yaml +++ b/packages/valory/agents/test_abci/aea-config.yaml @@ -8,9 +8,9 @@ fingerprint: README.md: bafybeib2s5p42rb4mbn7ag4jmjwutcm2mhvhb7q7vekxevr565crxkk6zy fingerprint_ignore_patterns: [] connections: -- valory/abci:0.1.0:bafybeibvb5gixohtgx22oymwlb2nntdzicdu2jkbs66azvmag6zf7vgfoq +- valory/abci:0.1.0:bafybeiakwvcz7fousp2xpnavept764fbnfboz6vvwvyuhj256spvjyfnli - valory/http_client:0.23.0:bafybeihi772xgzpqeipp3fhmvpct4y6e6tpjp4sogwqrnf3wqspgeilg4u -- valory/ipfs:0.1.0:bafybeiegnapkvkamis47v5ioza2haerrjdzzb23rptpmcydyneas7jc2wm +- valory/ipfs:0.1.0:bafybeidgwcqdgr5qt4fkgd77tqlskqkfcuc2feglzpi5ns72jxzcev5y4q - valory/ledger:0.19.0:bafybeigntoericenpzvwejqfuc3kqzo2pscs76qoygg5dbj6f4zxusru5e - valory/p2p_libp2p_client:0.1.0:bafybeid3xg5k2ol5adflqloy75ibgljmol6xsvzvezebsg7oudxeeolz7e contracts: [] @@ -22,9 +22,9 @@ protocols: - valory/ipfs:0.1.0:bafybeiftxi2qhreewgsc5wevogi7yc5g6hbcbo4uiuaibauhv3nhfcdtvm - valory/ledger_api:1.0.0:bafybeihdk6psr4guxmbcrc26jr2cbgzpd5aljkqvpwo64bvaz7tdti2oni skills: -- valory/abstract_abci:0.1.0:bafybeidhxykmvnc35de2ne52vwncoowcvcsc6xwja4txg6j27wicadojuq -- valory/abstract_round_abci:0.1.0:bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm -- valory/test_abci:0.1.0:bafybeihpifogbya32alitepjt6lgedd7aopui34ikeenbxrhytd44qtukq +- valory/abstract_abci:0.1.0:bafybeicf455v2kqkmhrdt6vftxizmzx2sp22m7lfax4qhhcp7bhtnoqiqy +- valory/abstract_round_abci:0.1.0:bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u +- valory/test_abci:0.1.0:bafybeihkco6se6ke23gyvcju5ljoxwvvpux5mnfspsjivwjdmsb2icv2xi default_ledger: ethereum required_ledgers: - ethereum diff --git a/packages/valory/agents/test_ipfs/aea-config.yaml b/packages/valory/agents/test_ipfs/aea-config.yaml index 71c8b27eda..87b2e10267 100644 --- a/packages/valory/agents/test_ipfs/aea-config.yaml +++ b/packages/valory/agents/test_ipfs/aea-config.yaml @@ -11,13 +11,13 @@ fingerprint: tests/test_ipfs.py: bafybeib5fxk5gjuqyevp2rvzcjnyjfuwhfapappohc32xn7rnuu6lpwws4 fingerprint_ignore_patterns: [] connections: -- valory/abci:0.1.0:bafybeibvb5gixohtgx22oymwlb2nntdzicdu2jkbs66azvmag6zf7vgfoq +- valory/abci:0.1.0:bafybeiakwvcz7fousp2xpnavept764fbnfboz6vvwvyuhj256spvjyfnli - valory/http_client:0.23.0:bafybeihi772xgzpqeipp3fhmvpct4y6e6tpjp4sogwqrnf3wqspgeilg4u -- valory/ipfs:0.1.0:bafybeiegnapkvkamis47v5ioza2haerrjdzzb23rptpmcydyneas7jc2wm +- valory/ipfs:0.1.0:bafybeidgwcqdgr5qt4fkgd77tqlskqkfcuc2feglzpi5ns72jxzcev5y4q - valory/ledger:0.19.0:bafybeigntoericenpzvwejqfuc3kqzo2pscs76qoygg5dbj6f4zxusru5e - valory/p2p_libp2p_client:0.1.0:bafybeid3xg5k2ol5adflqloy75ibgljmol6xsvzvezebsg7oudxeeolz7e contracts: -- valory/service_registry:0.1.0:bafybeicjpbrvcuzad4aaf56r5gsd4sebmeqkytr3zsbvb54snix73pvz2m +- valory/service_registry:0.1.0:bafybeibosqbwid6lacesj5jh6lqgjvhf47wtpchjqdzjoeskpzws5kctia protocols: - open_aea/signing:1.0.0:bafybeihv62fim3wl2bayavfcg3u5e5cxu3b7brtu4cn5xoxd6lqwachasi - valory/abci:0.1.0:bafybeiaqmp7kocbfdboksayeqhkbrynvlfzsx4uy4x6nohywnmaig4an7u @@ -28,9 +28,9 @@ protocols: - valory/ledger_api:1.0.0:bafybeihdk6psr4guxmbcrc26jr2cbgzpd5aljkqvpwo64bvaz7tdti2oni - valory/tendermint:0.1.0:bafybeig4mi3vmlv5zpbjbfuzcgida6j5f2nhrpedxicmrrfjweqc5r7cra skills: -- valory/abstract_abci:0.1.0:bafybeidhxykmvnc35de2ne52vwncoowcvcsc6xwja4txg6j27wicadojuq -- valory/abstract_round_abci:0.1.0:bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm -- valory/test_ipfs_abci:0.1.0:bafybeigyvkfj3yyi3qtqs477f7sdimohwguota2hr5pitnkf7xiiiq7dde +- valory/abstract_abci:0.1.0:bafybeicf455v2kqkmhrdt6vftxizmzx2sp22m7lfax4qhhcp7bhtnoqiqy +- valory/abstract_round_abci:0.1.0:bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u +- valory/test_ipfs_abci:0.1.0:bafybeidtxfv3cw6q5jqyivhtvl2aqcy3kxogug2t3qy4olbk7735g6dl4m default_ledger: ethereum required_ledgers: - ethereum diff --git a/packages/valory/contracts/gnosis_safe/contract.yaml b/packages/valory/contracts/gnosis_safe/contract.yaml index d62cd930f7..0a95793f78 100644 --- a/packages/valory/contracts/gnosis_safe/contract.yaml +++ b/packages/valory/contracts/gnosis_safe/contract.yaml @@ -15,7 +15,7 @@ fingerprint: tests/test_contract.py: bafybeidb4mrkkj6esxejlqdwx3m7skh2fdskqermxpuiuqpkyvkzb4ndyy fingerprint_ignore_patterns: [] contracts: -- valory/gnosis_safe_proxy_factory:0.1.0:bafybeibcq4gedbqxrvg2lwj3gwcxoyfa45x3s2qiefiru6epudzu4dhjr4 +- valory/gnosis_safe_proxy_factory:0.1.0:bafybeidtmqtzzwdo5tgnjqkpkllqxfssdnyermddjm6ftptn3hwr7hez4a class_name: GnosisSafeContract contract_interface_paths: ethereum: build/GnosisSafe_V1_3_0.json diff --git a/packages/valory/services/counter/service.yaml b/packages/valory/services/counter/service.yaml index 738ea97c76..326e24296f 100644 --- a/packages/valory/services/counter/service.yaml +++ b/packages/valory/services/counter/service.yaml @@ -8,7 +8,7 @@ fingerprint: README.md: bafybeidoybzzjch4djhhafqm4e4jcrpaqmlthntcnonlsjtowwpykbc5xi fingerprint_ignore_patterns: [] number_of_agents: 1 -agent: valory/counter:0.1.0:bafybeicmkzuopqjckrjrbbnr6pj7w54acyr4cupwx7chyxmanw3xbvmvdu +agent: valory/counter:0.1.0:bafybeicyrwzcjlmnyzge6ezsnj5hdenevtbi54gtfly7z2a6xwc7ccwmt4 deployment: {} dependencies: {} --- diff --git a/packages/valory/services/register_reset/service.yaml b/packages/valory/services/register_reset/service.yaml index 2879c2e237..dd6e96b35d 100644 --- a/packages/valory/services/register_reset/service.yaml +++ b/packages/valory/services/register_reset/service.yaml @@ -1,7 +1,7 @@ name: register_reset author: valory version: 0.1.0 -agent: valory/register_reset:0.1.0:bafybeiehtgg3jw5q5wulxeko5lsh7sxjzm2lpt2fjon7ik6pslqu2wcose +agent: valory/register_reset:0.1.0:bafybeia56mklcyb6ujv2vox5s4u7wg64y7axmmreiejwgzdaunaqqylaqe number_of_agents: 4 description: Test and debug tendermint reset mechanism. aea_version: '>=1.0.0, <2.0.0' diff --git a/packages/valory/skills/abstract_abci/skill.yaml b/packages/valory/skills/abstract_abci/skill.yaml index 7ee0993ad8..553481e1b5 100644 --- a/packages/valory/skills/abstract_abci/skill.yaml +++ b/packages/valory/skills/abstract_abci/skill.yaml @@ -15,7 +15,7 @@ fingerprint: tests/test_handlers.py: bafybeieeuwtu35ddaevr2wgnk33l7kdhrx7ruoeb5jiltiyn65ufdcnopu fingerprint_ignore_patterns: [] connections: -- valory/abci:0.1.0:bafybeibvb5gixohtgx22oymwlb2nntdzicdu2jkbs66azvmag6zf7vgfoq +- valory/abci:0.1.0:bafybeiakwvcz7fousp2xpnavept764fbnfboz6vvwvyuhj256spvjyfnli contracts: [] protocols: - valory/abci:0.1.0:bafybeiaqmp7kocbfdboksayeqhkbrynvlfzsx4uy4x6nohywnmaig4an7u diff --git a/packages/valory/skills/abstract_round_abci/skill.yaml b/packages/valory/skills/abstract_round_abci/skill.yaml index a546d743d3..0b1f31aa36 100644 --- a/packages/valory/skills/abstract_round_abci/skill.yaml +++ b/packages/valory/skills/abstract_round_abci/skill.yaml @@ -60,13 +60,13 @@ fingerprint: utils.py: bafybeidbha3c3tcxo4lhucyx2x6yra4z2p2fp6sucqqzhxanbvgrraykbi fingerprint_ignore_patterns: [] connections: -- valory/abci:0.1.0:bafybeibvb5gixohtgx22oymwlb2nntdzicdu2jkbs66azvmag6zf7vgfoq +- valory/abci:0.1.0:bafybeiakwvcz7fousp2xpnavept764fbnfboz6vvwvyuhj256spvjyfnli - valory/http_client:0.23.0:bafybeihi772xgzpqeipp3fhmvpct4y6e6tpjp4sogwqrnf3wqspgeilg4u -- valory/ipfs:0.1.0:bafybeiegnapkvkamis47v5ioza2haerrjdzzb23rptpmcydyneas7jc2wm +- valory/ipfs:0.1.0:bafybeidgwcqdgr5qt4fkgd77tqlskqkfcuc2feglzpi5ns72jxzcev5y4q - valory/ledger:0.19.0:bafybeigntoericenpzvwejqfuc3kqzo2pscs76qoygg5dbj6f4zxusru5e - valory/p2p_libp2p_client:0.1.0:bafybeid3xg5k2ol5adflqloy75ibgljmol6xsvzvezebsg7oudxeeolz7e contracts: -- valory/service_registry:0.1.0:bafybeicjpbrvcuzad4aaf56r5gsd4sebmeqkytr3zsbvb54snix73pvz2m +- valory/service_registry:0.1.0:bafybeibosqbwid6lacesj5jh6lqgjvhf47wtpchjqdzjoeskpzws5kctia protocols: - open_aea/signing:1.0.0:bafybeihv62fim3wl2bayavfcg3u5e5cxu3b7brtu4cn5xoxd6lqwachasi - valory/abci:0.1.0:bafybeiaqmp7kocbfdboksayeqhkbrynvlfzsx4uy4x6nohywnmaig4an7u @@ -76,7 +76,7 @@ protocols: - valory/ledger_api:1.0.0:bafybeihdk6psr4guxmbcrc26jr2cbgzpd5aljkqvpwo64bvaz7tdti2oni - valory/tendermint:0.1.0:bafybeig4mi3vmlv5zpbjbfuzcgida6j5f2nhrpedxicmrrfjweqc5r7cra skills: -- valory/abstract_abci:0.1.0:bafybeidhxykmvnc35de2ne52vwncoowcvcsc6xwja4txg6j27wicadojuq +- valory/abstract_abci:0.1.0:bafybeicf455v2kqkmhrdt6vftxizmzx2sp22m7lfax4qhhcp7bhtnoqiqy behaviours: main: args: {} diff --git a/packages/valory/skills/counter/skill.yaml b/packages/valory/skills/counter/skill.yaml index 4ff08ea905..514b575f97 100644 --- a/packages/valory/skills/counter/skill.yaml +++ b/packages/valory/skills/counter/skill.yaml @@ -14,12 +14,12 @@ fingerprint: tests/test_counter.py: bafybeiazi36djqnjzu5t6rn72mngsmntoqz7z7wqa53z3lccgblgsycnbi fingerprint_ignore_patterns: [] connections: -- valory/abci:0.1.0:bafybeibvb5gixohtgx22oymwlb2nntdzicdu2jkbs66azvmag6zf7vgfoq +- valory/abci:0.1.0:bafybeiakwvcz7fousp2xpnavept764fbnfboz6vvwvyuhj256spvjyfnli contracts: [] protocols: - valory/abci:0.1.0:bafybeiaqmp7kocbfdboksayeqhkbrynvlfzsx4uy4x6nohywnmaig4an7u skills: -- valory/abstract_abci:0.1.0:bafybeidhxykmvnc35de2ne52vwncoowcvcsc6xwja4txg6j27wicadojuq +- valory/abstract_abci:0.1.0:bafybeicf455v2kqkmhrdt6vftxizmzx2sp22m7lfax4qhhcp7bhtnoqiqy behaviours: {} handlers: abci: diff --git a/packages/valory/skills/offend_abci/skill.yaml b/packages/valory/skills/offend_abci/skill.yaml index 51f37362d2..3f036677e3 100644 --- a/packages/valory/skills/offend_abci/skill.yaml +++ b/packages/valory/skills/offend_abci/skill.yaml @@ -27,7 +27,7 @@ connections: [] contracts: [] protocols: [] skills: -- valory/abstract_round_abci:0.1.0:bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm +- valory/abstract_round_abci:0.1.0:bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u behaviours: main: args: {} diff --git a/packages/valory/skills/offend_slash_abci/skill.yaml b/packages/valory/skills/offend_slash_abci/skill.yaml index d5509293a0..abff1f6310 100644 --- a/packages/valory/skills/offend_slash_abci/skill.yaml +++ b/packages/valory/skills/offend_slash_abci/skill.yaml @@ -23,11 +23,11 @@ connections: [] contracts: [] protocols: [] skills: -- valory/abstract_round_abci:0.1.0:bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm -- valory/offend_abci:0.1.0:bafybeia6z3loppvpwlkil5aqxk65ijyn3skkgluybfkz3xsxq7sjlv2mra -- valory/registration_abci:0.1.0:bafybeihu4srivuolt4hdw6ovwl33p7bcsm44soaebqpfjvy32jbbtypwum -- valory/reset_pause_abci:0.1.0:bafybeib6yae55mfof2yamd7plwr6twuxobfvpurm4bede6rhcqhllyoxnm -- valory/slashing_abci:0.1.0:bafybeigisnogt7acjqm7c7zydojtcsvy5ahxn3kjelncjvgr2lembt3kum +- valory/abstract_round_abci:0.1.0:bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u +- valory/offend_abci:0.1.0:bafybeie463qjhqs773dfjo7wnsvh4ex5cuvy64qn46rsvq3zobknhped6i +- valory/registration_abci:0.1.0:bafybeibcfl2uo4idyfln5swilditxmb3ekvbkknvtlr43u7jksdy2q6p6e +- valory/reset_pause_abci:0.1.0:bafybeigimcyxyvnrdxtleq5iwe3e6osko533uhl46k2zgelrd6kjagisme +- valory/slashing_abci:0.1.0:bafybeia4kb5gj7gvux5rxqfzzjholfoybmd7smtbyqqk7grvq6wvttpdpy behaviours: main: args: {} diff --git a/packages/valory/skills/register_reset_abci/skill.yaml b/packages/valory/skills/register_reset_abci/skill.yaml index fc6e887d64..6452442219 100644 --- a/packages/valory/skills/register_reset_abci/skill.yaml +++ b/packages/valory/skills/register_reset_abci/skill.yaml @@ -24,9 +24,9 @@ connections: [] contracts: [] protocols: [] skills: -- valory/abstract_round_abci:0.1.0:bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm -- valory/registration_abci:0.1.0:bafybeihu4srivuolt4hdw6ovwl33p7bcsm44soaebqpfjvy32jbbtypwum -- valory/reset_pause_abci:0.1.0:bafybeib6yae55mfof2yamd7plwr6twuxobfvpurm4bede6rhcqhllyoxnm +- valory/abstract_round_abci:0.1.0:bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u +- valory/registration_abci:0.1.0:bafybeibcfl2uo4idyfln5swilditxmb3ekvbkknvtlr43u7jksdy2q6p6e +- valory/reset_pause_abci:0.1.0:bafybeigimcyxyvnrdxtleq5iwe3e6osko533uhl46k2zgelrd6kjagisme behaviours: main: args: {} diff --git a/packages/valory/skills/register_reset_recovery_abci/skill.yaml b/packages/valory/skills/register_reset_recovery_abci/skill.yaml index 522554ef89..c91d8e5a6a 100644 --- a/packages/valory/skills/register_reset_recovery_abci/skill.yaml +++ b/packages/valory/skills/register_reset_recovery_abci/skill.yaml @@ -26,8 +26,8 @@ connections: [] contracts: [] protocols: [] skills: -- valory/abstract_round_abci:0.1.0:bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm -- valory/registration_abci:0.1.0:bafybeihu4srivuolt4hdw6ovwl33p7bcsm44soaebqpfjvy32jbbtypwum +- valory/abstract_round_abci:0.1.0:bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u +- valory/registration_abci:0.1.0:bafybeibcfl2uo4idyfln5swilditxmb3ekvbkknvtlr43u7jksdy2q6p6e behaviours: main: args: {} diff --git a/packages/valory/skills/register_termination_abci/skill.yaml b/packages/valory/skills/register_termination_abci/skill.yaml index 9aa5daa6c3..abb34d9197 100644 --- a/packages/valory/skills/register_termination_abci/skill.yaml +++ b/packages/valory/skills/register_termination_abci/skill.yaml @@ -23,10 +23,10 @@ connections: [] contracts: [] protocols: [] skills: -- valory/abstract_round_abci:0.1.0:bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm -- valory/registration_abci:0.1.0:bafybeihu4srivuolt4hdw6ovwl33p7bcsm44soaebqpfjvy32jbbtypwum -- valory/reset_pause_abci:0.1.0:bafybeib6yae55mfof2yamd7plwr6twuxobfvpurm4bede6rhcqhllyoxnm -- valory/termination_abci:0.1.0:bafybeigq3ehr5gvaysomh6lo4j6vmgyw2dgdemsoxzf5kxjanktbibgci4 +- valory/abstract_round_abci:0.1.0:bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u +- valory/registration_abci:0.1.0:bafybeibcfl2uo4idyfln5swilditxmb3ekvbkknvtlr43u7jksdy2q6p6e +- valory/reset_pause_abci:0.1.0:bafybeigimcyxyvnrdxtleq5iwe3e6osko533uhl46k2zgelrd6kjagisme +- valory/termination_abci:0.1.0:bafybeiaonsrhgg4rtz5fz6emj3g37wcsefsbwfefpeb5hrkgjmt3bzz46y behaviours: main: args: {} diff --git a/packages/valory/skills/registration_abci/skill.yaml b/packages/valory/skills/registration_abci/skill.yaml index 75ce221bd1..eb5f952a98 100644 --- a/packages/valory/skills/registration_abci/skill.yaml +++ b/packages/valory/skills/registration_abci/skill.yaml @@ -26,13 +26,13 @@ fingerprint_ignore_patterns: [] connections: - valory/p2p_libp2p_client:0.1.0:bafybeid3xg5k2ol5adflqloy75ibgljmol6xsvzvezebsg7oudxeeolz7e contracts: -- valory/service_registry:0.1.0:bafybeicjpbrvcuzad4aaf56r5gsd4sebmeqkytr3zsbvb54snix73pvz2m +- valory/service_registry:0.1.0:bafybeibosqbwid6lacesj5jh6lqgjvhf47wtpchjqdzjoeskpzws5kctia protocols: - valory/contract_api:1.0.0:bafybeidgu7o5llh26xp3u3ebq3yluull5lupiyeu6iooi2xyymdrgnzq5i - valory/http:1.0.0:bafybeifugzl63kfdmwrxwphrnrhj7bn6iruxieme3a4ntzejf6kmtuwmae - valory/tendermint:0.1.0:bafybeig4mi3vmlv5zpbjbfuzcgida6j5f2nhrpedxicmrrfjweqc5r7cra skills: -- valory/abstract_round_abci:0.1.0:bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm +- valory/abstract_round_abci:0.1.0:bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u behaviours: main: args: {} diff --git a/packages/valory/skills/reset_pause_abci/skill.yaml b/packages/valory/skills/reset_pause_abci/skill.yaml index 564a7a047d..a854be7338 100644 --- a/packages/valory/skills/reset_pause_abci/skill.yaml +++ b/packages/valory/skills/reset_pause_abci/skill.yaml @@ -26,7 +26,7 @@ connections: [] contracts: [] protocols: [] skills: -- valory/abstract_round_abci:0.1.0:bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm +- valory/abstract_round_abci:0.1.0:bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u behaviours: main: args: {} diff --git a/packages/valory/skills/slashing_abci/skill.yaml b/packages/valory/skills/slashing_abci/skill.yaml index 6f1748cfa3..cb3a49ad71 100644 --- a/packages/valory/skills/slashing_abci/skill.yaml +++ b/packages/valory/skills/slashing_abci/skill.yaml @@ -24,13 +24,13 @@ fingerprint: fingerprint_ignore_patterns: [] connections: [] contracts: -- valory/gnosis_safe:0.1.0:bafybeihjaxefx27ppcghwmnsehbrqqmhwkiur5mprpsdp7tluge7zzwqgm -- valory/service_registry:0.1.0:bafybeicjpbrvcuzad4aaf56r5gsd4sebmeqkytr3zsbvb54snix73pvz2m +- valory/gnosis_safe:0.1.0:bafybeigwknqulavb4fwvcslytmlwip2ebvevurapuocsqgouhdne2xfupe +- valory/service_registry:0.1.0:bafybeibosqbwid6lacesj5jh6lqgjvhf47wtpchjqdzjoeskpzws5kctia protocols: - valory/contract_api:1.0.0:bafybeidgu7o5llh26xp3u3ebq3yluull5lupiyeu6iooi2xyymdrgnzq5i skills: -- valory/abstract_round_abci:0.1.0:bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm -- valory/transaction_settlement_abci:0.1.0:bafybeie3tjka4hwcvtg2rm5n6peazpskzuhg2p4zykdcypjotouclqw2ui +- valory/abstract_round_abci:0.1.0:bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u +- valory/transaction_settlement_abci:0.1.0:bafybeib734aek2i2a2xq3vtkeowitjc7pppij4roravzhrrmz5w4uku5zu behaviours: main: args: {} diff --git a/packages/valory/skills/squads_transaction_settlement_abci/skill.yaml b/packages/valory/skills/squads_transaction_settlement_abci/skill.yaml index 5fe6c2b9f7..30d75a3f5a 100644 --- a/packages/valory/skills/squads_transaction_settlement_abci/skill.yaml +++ b/packages/valory/skills/squads_transaction_settlement_abci/skill.yaml @@ -17,11 +17,11 @@ fingerprint: fingerprint_ignore_patterns: [] connections: [] contracts: -- valory/squads_multisig:0.1.0:bafybeif3yfw3a3mk4bqlgtnmj3vgajw7p54co57reh4rfunmiifd7s5syu +- valory/squads_multisig:0.1.0:bafybeig3255ozp3uynecibpvse6wtwii4e6wak7l24wwr3ete7ews34r6m protocols: - valory/contract_api:1.0.0:bafybeidgu7o5llh26xp3u3ebq3yluull5lupiyeu6iooi2xyymdrgnzq5i skills: -- valory/abstract_round_abci:0.1.0:bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm +- valory/abstract_round_abci:0.1.0:bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u behaviours: main: args: {} diff --git a/packages/valory/skills/termination_abci/skill.yaml b/packages/valory/skills/termination_abci/skill.yaml index 6f7371acf4..b831a553ef 100644 --- a/packages/valory/skills/termination_abci/skill.yaml +++ b/packages/valory/skills/termination_abci/skill.yaml @@ -23,14 +23,14 @@ fingerprint: fingerprint_ignore_patterns: [] connections: [] contracts: -- valory/gnosis_safe:0.1.0:bafybeihjaxefx27ppcghwmnsehbrqqmhwkiur5mprpsdp7tluge7zzwqgm +- valory/gnosis_safe:0.1.0:bafybeigwknqulavb4fwvcslytmlwip2ebvevurapuocsqgouhdne2xfupe - valory/multisend:0.1.0:bafybeig5byt5urg2d2bsecufxe5ql7f4mezg3mekfleeh32nmuusx66p4y -- valory/service_registry:0.1.0:bafybeicjpbrvcuzad4aaf56r5gsd4sebmeqkytr3zsbvb54snix73pvz2m +- valory/service_registry:0.1.0:bafybeibosqbwid6lacesj5jh6lqgjvhf47wtpchjqdzjoeskpzws5kctia protocols: - valory/contract_api:1.0.0:bafybeidgu7o5llh26xp3u3ebq3yluull5lupiyeu6iooi2xyymdrgnzq5i skills: -- valory/abstract_round_abci:0.1.0:bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm -- valory/transaction_settlement_abci:0.1.0:bafybeie3tjka4hwcvtg2rm5n6peazpskzuhg2p4zykdcypjotouclqw2ui +- valory/abstract_round_abci:0.1.0:bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u +- valory/transaction_settlement_abci:0.1.0:bafybeib734aek2i2a2xq3vtkeowitjc7pppij4roravzhrrmz5w4uku5zu behaviours: main: args: {} diff --git a/packages/valory/skills/test_abci/skill.yaml b/packages/valory/skills/test_abci/skill.yaml index 502b6f7b24..c8b5ce9488 100644 --- a/packages/valory/skills/test_abci/skill.yaml +++ b/packages/valory/skills/test_abci/skill.yaml @@ -26,8 +26,8 @@ connections: [] contracts: [] protocols: [] skills: -- valory/abstract_abci:0.1.0:bafybeidhxykmvnc35de2ne52vwncoowcvcsc6xwja4txg6j27wicadojuq -- valory/abstract_round_abci:0.1.0:bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm +- valory/abstract_abci:0.1.0:bafybeicf455v2kqkmhrdt6vftxizmzx2sp22m7lfax4qhhcp7bhtnoqiqy +- valory/abstract_round_abci:0.1.0:bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u behaviours: main: args: {} diff --git a/packages/valory/skills/test_ipfs_abci/skill.yaml b/packages/valory/skills/test_ipfs_abci/skill.yaml index f304a51a96..e4a9aeea05 100644 --- a/packages/valory/skills/test_ipfs_abci/skill.yaml +++ b/packages/valory/skills/test_ipfs_abci/skill.yaml @@ -27,7 +27,7 @@ connections: [] contracts: [] protocols: [] skills: -- valory/abstract_round_abci:0.1.0:bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm +- valory/abstract_round_abci:0.1.0:bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u behaviours: main: args: {} diff --git a/packages/valory/skills/test_solana_tx_abci/skill.yaml b/packages/valory/skills/test_solana_tx_abci/skill.yaml index c37a0a07ad..4617887921 100644 --- a/packages/valory/skills/test_solana_tx_abci/skill.yaml +++ b/packages/valory/skills/test_solana_tx_abci/skill.yaml @@ -19,14 +19,14 @@ fingerprint: fingerprint_ignore_patterns: [] connections: [] contracts: -- valory/squads_multisig:0.1.0:bafybeif3yfw3a3mk4bqlgtnmj3vgajw7p54co57reh4rfunmiifd7s5syu +- valory/squads_multisig:0.1.0:bafybeig3255ozp3uynecibpvse6wtwii4e6wak7l24wwr3ete7ews34r6m protocols: - valory/contract_api:1.0.0:bafybeidgu7o5llh26xp3u3ebq3yluull5lupiyeu6iooi2xyymdrgnzq5i skills: -- valory/abstract_round_abci:0.1.0:bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm -- valory/registration_abci:0.1.0:bafybeihu4srivuolt4hdw6ovwl33p7bcsm44soaebqpfjvy32jbbtypwum -- valory/reset_pause_abci:0.1.0:bafybeib6yae55mfof2yamd7plwr6twuxobfvpurm4bede6rhcqhllyoxnm -- valory/squads_transaction_settlement_abci:0.1.0:bafybeiclwwyh3w5gzdmqa5u6diwdycgrenh52dy5zvbtyjh2pidae3vwnm +- valory/abstract_round_abci:0.1.0:bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u +- valory/registration_abci:0.1.0:bafybeibcfl2uo4idyfln5swilditxmb3ekvbkknvtlr43u7jksdy2q6p6e +- valory/reset_pause_abci:0.1.0:bafybeigimcyxyvnrdxtleq5iwe3e6osko533uhl46k2zgelrd6kjagisme +- valory/squads_transaction_settlement_abci:0.1.0:bafybeic66pivvpquznxxfofjdyhxx446lplgdxi77vlq6p5frpebecawqm behaviours: main: args: {} diff --git a/packages/valory/skills/transaction_settlement_abci/skill.yaml b/packages/valory/skills/transaction_settlement_abci/skill.yaml index 78029091d4..4a26fb1bd2 100644 --- a/packages/valory/skills/transaction_settlement_abci/skill.yaml +++ b/packages/valory/skills/transaction_settlement_abci/skill.yaml @@ -31,14 +31,14 @@ fingerprint: fingerprint_ignore_patterns: [] connections: [] contracts: -- valory/gnosis_safe:0.1.0:bafybeihjaxefx27ppcghwmnsehbrqqmhwkiur5mprpsdp7tluge7zzwqgm +- valory/gnosis_safe:0.1.0:bafybeigwknqulavb4fwvcslytmlwip2ebvevurapuocsqgouhdne2xfupe protocols: - open_aea/signing:1.0.0:bafybeihv62fim3wl2bayavfcg3u5e5cxu3b7brtu4cn5xoxd6lqwachasi - valory/abci:0.1.0:bafybeiaqmp7kocbfdboksayeqhkbrynvlfzsx4uy4x6nohywnmaig4an7u - valory/contract_api:1.0.0:bafybeidgu7o5llh26xp3u3ebq3yluull5lupiyeu6iooi2xyymdrgnzq5i - valory/ledger_api:1.0.0:bafybeihdk6psr4guxmbcrc26jr2cbgzpd5aljkqvpwo64bvaz7tdti2oni skills: -- valory/abstract_round_abci:0.1.0:bafybeid3f7hted4j44fpmlg6hbjadtldir6k2jauo7gyptuezwpbvkqsrm +- valory/abstract_round_abci:0.1.0:bafybeihinmp6fj7vsooudtfxr7e64scleawt5dqlfqwrhovuw57gbfmc3u behaviours: main: args: {} From 17d453b93a7da8ea9f5c82fee9ca246d9fa2aad7 Mon Sep 17 00:00:00 2001 From: Adamantios Date: Fri, 18 Oct 2024 13:46:37 +0300 Subject: [PATCH 4/4] chore: update history and upgrading guide --- HISTORY.md | 7 +++++++ docs/upgrading.md | 8 ++++++++ 2 files changed, 15 insertions(+) diff --git a/HISTORY.md b/HISTORY.md index 8bace7813c..31deaa6daa 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,12 @@ # Release History - `open-autonomy` +# 0.18.0 (2024-10-18) + +Autonomy: +- Fixes the cleanup on scaffolding validation failure #2269 +- Adds support for dictionary overrides #2270 +- Bumps `open-aea@1.58.0` #2271 + # 0.17.0 (2024-10-17) Autonomy: diff --git a/docs/upgrading.md b/docs/upgrading.md index 2395a757d6..5bd63c6103 100644 --- a/docs/upgrading.md +++ b/docs/upgrading.md @@ -5,6 +5,14 @@ Below we describe the additional manual steps required to upgrade between differ # Open Autonomy +## `v0.17.0` to `v0.18.0` + +- The agent and service configurations for dictionaries should now be in the following form: + `${dict:{"some_key": "some_value"}`. + For more information, please take a look at an example upgrade in https://github.com/valory-xyz/trader/pull/311. +- The generated builds do not include the environment variables of the agents inside the compose file anymore. + Instead, they exist in a separate environment file per agent and are referenced in the compose file. + ## `v0.16.1` to `v0.17.0` - The structure of the build folder has been updated.