Skip to content

Commit d6c6c4d

Browse files
Merge pull request #518 from valory-xyz/fix/release-bugs
This PR addresses issues found in valory-xyz/open-autonomy#1701
2 parents 8ecfd83 + b77ab2d commit d6c6c4d

File tree

129 files changed

+328
-313
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+328
-313
lines changed

aea/__version__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
# ------------------------------------------------------------------------------
33
#
4-
# Copyright 2022 Valory AG
4+
# Copyright 2022-2023 Valory AG
55
# Copyright 2018-2019 Fetch.AI Limited
66
#
77
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -23,7 +23,7 @@
2323
__title__ = "open-aea"
2424
__description__ = "Open Autonomous Economic Agent framework (without vendor lock-in)"
2525
__url__ = "https://github.com/valory-xyz/open-aea.git"
26-
__version__ = "1.27.0"
26+
__version__ = "1.27.0.post1"
2727
__author__ = "Valory AG"
2828
__license__ = "Apache-2.0"
2929
__copyright__ = "2021 Valory AG, 2019 Fetch.AI Limited"

aea/cli/test.py

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
# ------------------------------------------------------------------------------
33
#
4-
# Copyright 2021-2022 Valory AG
4+
# Copyright 2021-2023 Valory AG
55
# Copyright 2018-2019 Fetch.AI Limited
66
#
77
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -37,7 +37,7 @@
3737
from aea.cli.utils.context import Context
3838
from aea.cli.utils.decorators import check_aea_project
3939
from aea.cli.utils.package_utils import get_package_path
40-
from aea.components.base import load_aea_package
40+
from aea.components.base import load_aea_package, perform_load_aea_package
4141
from aea.configurations.base import ComponentConfiguration
4242
from aea.configurations.constants import (
4343
AEA_TEST_DIRNAME,
@@ -437,6 +437,13 @@ def load_package(
437437
)
438438
configuration.directory = package_dir
439439
load_aea_packages_recursively(configuration, package_path_finder, root_packages)
440+
else:
441+
perform_load_aea_package(
442+
dir_=package_dir,
443+
author=package_dir.parent.parent.name,
444+
package_type_plural=PackageType(package_type).to_plural(),
445+
package_name=package_dir.name,
446+
)
440447

441448
test_package_dir = package_dir / AEA_TEST_DIRNAME
442449
enforce(

aea/configurations/constants.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
# ------------------------------------------------------------------------------
33
#
4-
# Copyright 2021-2022 Valory AG
4+
# Copyright 2021-2023 Valory AG
55
# Copyright 2018-2020 Fetch.AI Limited
66
#
77
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -29,7 +29,7 @@
2929
_COSMOS_IDENTIFIER = "cosmos"
3030
SIGNING_PROTOCOL = "open_aea/signing:latest"
3131
SIGNING_PROTOCOL_WITH_HASH = (
32-
"open_aea/signing:1.0.0:bafybeiambqptflge33eemdhis2whik67hjplfnqwieoa6wblzlaf7vuo44"
32+
"open_aea/signing:1.0.0:bafybeihgwrowgtegpe4ixe3iy5jx65u7pxebl5btrkywzmx7g52gjtbnpi"
3333
)
3434
DEFAULT_LEDGER = _ETHEREUM_IDENTIFIER
3535
PRIVATE_KEY_PATH_SCHEMA = "{}_private_key.txt"

deploy-image/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN apk add --no-cache go
1616

1717
# aea installation
1818
RUN pip install --upgrade pip
19-
RUN pip install --upgrade --force-reinstall open-aea[all]==1.27.0 "open-aea-cli-ipfs<2.0.0,>=1.27.0.post3"
19+
RUN pip install --upgrade --force-reinstall open-aea[all]==1.27.0.post1 "open-aea-cli-ipfs<2.0.0,>=1.27.0.post4"
2020

2121
# directories and aea cli config
2222
WORKDIR /home/agents

deploy-image/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The example uses the `fetchai/my_first_aea` project. You will likely want to mod
1111
Install subversion, then download the example directory to your local working directory
1212

1313
``` bash
14-
svn checkout https://github.com/valory-xyz/open-aea/tags/v1.27.0/packages packages
14+
svn checkout https://github.com/valory-xyz/open-aea/tags/v1.27.0.post1/packages packages
1515
```
1616

1717
### Modify scripts

deploy-image/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -e
33

44
# setup the agent
5-
aea fetch open_aea/my_first_aea:0.1.0:bafybeifelwg4md24lwpxgx7x5cugq7ovhbkew3lxw43m52rdppfn5o5g4i --remote
5+
aea fetch open_aea/my_first_aea:0.1.0:bafybeiewms67jpwf46u4wwh6tbzedsi5jffajnywgydeo5nlvvr6pcz2zm --remote
66
cd my_first_aea/
77
aea install
88
aea build

develop-image/docker-env.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
# Swap the following lines if you want to work with 'latest'
4-
DOCKER_IMAGE_TAG=valory/open-aea-develop:1.27.0
4+
DOCKER_IMAGE_TAG=valory/open-aea-develop:1.27.0.post1
55
# DOCKER_IMAGE_TAG=valory/open-aea-develop:latest
66

77
DOCKER_BUILD_CONTEXT_DIR=..

docs/agent-vs-aea.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ First, use an empty agent to get the stub connection and default protocol.
1111
mkdir packages # packages folder will contain the local package repository
1212
aea create my_aea # create an agent
1313
cd my_aea
14-
aea add connection fetchai/stub:0.21.0:bafybeieqlozydyvdxmjxhqygwq27djecpiftoqwlcpcr4qpotomwnh66yy --remote # get a connection from the remote registry
14+
aea add connection fetchai/stub:0.21.0:bafybeiabltjd53zkkyo2xmq5fmytg7cpsqmgioex7w2krrdwg3xmjosdyq --remote # get a connection from the remote registry
1515
aea push connection fetchai/stub --local # push to local registry
16-
aea add protocol fetchai/default:1.0.0:bafybeihzesahyayexkhk26fg7rqnjuqaab3bmcijtjekvskvs4xw6ecyuu --remote
16+
aea add protocol fetchai/default:1.0.0:bafybeifdodei24xy4zsnmurg3dbbe2ysp7ii7v5bmrsgl7stt7lj22pezq --remote
1717
aea push protocol fetchai/default --local
1818
cd ..
1919
aea delete my_aea # delete the agent

docs/build-aea-programmatically.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Get the needed packages from IPFS:
99
mkdir packages
1010
aea create my_aea
1111
cd my_aea
12-
aea add protocol fetchai/default:1.0.0:bafybeihzesahyayexkhk26fg7rqnjuqaab3bmcijtjekvskvs4xw6ecyuu --remote
12+
aea add protocol fetchai/default:1.0.0:bafybeifdodei24xy4zsnmurg3dbbe2ysp7ii7v5bmrsgl7stt7lj22pezq --remote
1313
aea push protocol fetchai/default --local
1414
cd ..
1515
aea delete my_aea

docs/decision-maker-transaction.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ First, get the packages directory from IPFS:
66
mkdir packages
77
aea create my_aea
88
cd my_aea
9-
aea add protocol open_aea/signing:1.0.0:bafybeiambqptflge33eemdhis2whik67hjplfnqwieoa6wblzlaf7vuo44 --remote
9+
aea add protocol open_aea/signing:1.0.0:bafybeihgwrowgtegpe4ixe3iy5jx65u7pxebl5btrkywzmx7g52gjtbnpi --remote
1010
aea push protocol open_aea/signing --local
1111
cd ..
1212
aea delete my_aea

docs/echo_demo.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This demo assumes you have followed the setup guide.
77
The fastest way to have your first AEA is to fetch one that already exists!
88

99
``` bash
10-
aea fetch open_aea/my_first_aea:0.1.0:bafybeifelwg4md24lwpxgx7x5cugq7ovhbkew3lxw43m52rdppfn5o5g4i --remote
10+
aea fetch open_aea/my_first_aea:0.1.0:bafybeiewms67jpwf46u4wwh6tbzedsi5jffajnywgydeo5nlvvr6pcz2zm --remote
1111
cd my_first_aea
1212
```
1313
### Install AEA dependencies

docs/gym-skill.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Follow the <a href="../quickstart/#preliminaries">Preliminaries</a> and <a href=
1919

2020
First, fetch the gym AEA:
2121
``` bash
22-
aea fetch open_aea/gym_aea:0.1.0:bafybeidgnc6yoyzyjpekrcijhioe4orcfw325yjb4hw7mmfocbnd6z4rja --remote
22+
aea fetch open_aea/gym_aea:0.1.0:bafybeifuecshz62hjludvf3d3xgsk3x73dy5p5esptqjifz7na472ajhoe --remote
2323
cd gym_aea
2424
aea install
2525
```
@@ -36,7 +36,7 @@ cd my_gym_aea
3636

3737
### Add the gym skill
3838
``` bash
39-
aea add skill fetchai/gym:0.20.0:bafybeiejzgnbm3mprvt3riytwbnlrl3bdqduubr5qqc7tfthheu36yoqua --remote
39+
aea add skill fetchai/gym:0.20.0:bafybeidx5jg5353gqk544h4u4vivos5upwc5sfy4xjmvf6ppzinzbmpfxe --remote
4040
```
4141

4242
### Set gym connection as default

docs/http-connection-and-skill.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ Add the http server connection package:
2929
mkdir packages
3030
aea create my_aea
3131
cd my_aea
32-
aea add connection fetchai/http_server:0.22.0:bafybeidxb5gk3samqoflbztqnlnqtvtph5emobaojx3w47674ay5d7pmeu --remote
32+
aea add connection fetchai/http_server:0.22.0:bafybeic7p2e2ey44k6yv3dzznepekggceqc6mxb55e4xovcjnr3qym5ncu --remote
3333
aea push connection fetchai/http_server --local
34-
aea add protocol fetchai/default:1.0.0:bafybeihzesahyayexkhk26fg7rqnjuqaab3bmcijtjekvskvs4xw6ecyuu --remote
34+
aea add protocol fetchai/default:1.0.0:bafybeifdodei24xy4zsnmurg3dbbe2ysp7ii7v5bmrsgl7stt7lj22pezq --remote
3535
aea push protocol fetchai/default --local
36-
aea add protocol valory/http:1.0.0:bafybeigzqo2zaakcjtzzsm6dh4x73v72xg6ctk6muyp5uq5ueb7y34fbxy --remote
36+
aea add protocol valory/http:1.0.0:bafybeifru3qs6udfzprax7jxktbsuzn7immfvi3scgfspifq3zdxwkgvnm --remote
3737
aea push protocol valory/http --local
3838
cd ..
3939
aea delete my_aea

docs/http-echo-demo.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The easiest way to get started with the http server is to use our pre-built exam
1616

1717
``` bash
1818
pipenv shell
19-
aea fetch open_aea/http_echo:0.1.0:bafybeifx3fqbwsggrm4ccztv56xt5xohgyf3g32ieryfxkm2jnuxo7raqq --remote
19+
aea fetch open_aea/http_echo:0.1.0:bafybeichpma2xd5z5ohx5omtypvvj3r65ziev3ttj6ctedqsaorwjgpkhu --remote
2020
cd http_echo
2121
aea generate-key ethereum; aea add-key ethereum
2222
aea install

docs/ipfs_registry.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ Packages can be downloaded using both extended public ids and hashes
3838

3939
Add the signing protocol using
4040

41-
`aea add protocol open_aea/signing:1.0.0:bafybeiambqptflge33eemdhis2whik67hjplfnqwieoa6wblzlaf7vuo44 --remote`
41+
`aea add protocol open_aea/signing:1.0.0:bafybeihgwrowgtegpe4ixe3iy5jx65u7pxebl5btrkywzmx7g52gjtbnpi --remote`
4242

4343
Or
4444

45-
`aea add protocol open_aea/signing:1.0.0:bafybeiambqptflge33eemdhis2whik67hjplfnqwieoa6wblzlaf7vuo44 --remote`
45+
`aea add protocol open_aea/signing:1.0.0:bafybeihgwrowgtegpe4ixe3iy5jx65u7pxebl5btrkywzmx7g52gjtbnpi --remote`
4646

4747
## Publishing agents
4848

docs/multi-agent-manager.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ component_overrides = [{
5050
"cert_requests": [{
5151
"identifier": "acn",
5252
"ledger_id": "fetchai",
53-
"not_after": '2023-01-01',
54-
"not_before": '2022-01-01',
53+
"not_after": '2024-01-01',
54+
"not_before": '2023-01-01',
5555
"public_key": "fetchai",
5656
"message_format": "{public_key}",
5757
"save_path": "conn_cert.txt"
@@ -81,8 +81,8 @@ component_overrides = [{
8181
"cert_requests": [{
8282
"identifier": "acn",
8383
"ledger_id": "fetchai",
84-
"not_after": '2023-01-01',
85-
"not_before": '2022-01-01',
84+
"not_after": '2024-01-01',
85+
"not_before": '2023-01-01',
8686
"public_key": "fetchai",
8787
"message_format": "{public_key}",
8888
"save_path": "conn_cert.txt"

docs/multiplexer-standalone.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ First, get the required packages from IPFS.
66
mkdir packages
77
aea create my_aea
88
cd my_aea
9-
aea add protocol fetchai/default:1.0.0:bafybeihzesahyayexkhk26fg7rqnjuqaab3bmcijtjekvskvs4xw6ecyuu --remote
9+
aea add protocol fetchai/default:1.0.0:bafybeifdodei24xy4zsnmurg3dbbe2ysp7ii7v5bmrsgl7stt7lj22pezq --remote
1010
aea push connection fetchai/default --local
11-
aea add connection fetchai/stub:0.21.0:bafybeieqlozydyvdxmjxhqygwq27djecpiftoqwlcpcr4qpotomwnh66yy --remote
11+
aea add connection fetchai/stub:0.21.0:bafybeiabltjd53zkkyo2xmq5fmytg7cpsqmgioex7w2krrdwg3xmjosdyq --remote
1212
aea push connection fetchai/stub --local
1313
cd ..
1414
aea delete my_aea

docs/p2p-connection.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Create one AEA as follows:
2626
``` bash
2727
aea create my_genesis_aea
2828
cd my_genesis_aea
29-
aea add connection valory/p2p_libp2p:0.1.0:bafybeigfp2fjiqqcy5xess6kffcqp7eb2qmn2p6ihb6kgpul2ygcawtx2i --remote
29+
aea add connection valory/p2p_libp2p:0.1.0:bafybeiabusw3r7tlru57ciceqoarusmdbpubpjq63yav3kbgvrbnbzacqu --remote
3030
aea config set agent.default_connection valory/p2p_libp2p:0.1.0
3131
aea install
3232
aea build
@@ -58,7 +58,7 @@ Create a second AEA:
5858
``` bash
5959
aea create my_other_aea
6060
cd my_other_aea
61-
aea add connection valory/p2p_libp2p:0.1.0:bafybeigfp2fjiqqcy5xess6kffcqp7eb2qmn2p6ihb6kgpul2ygcawtx2i --remote
61+
aea add connection valory/p2p_libp2p:0.1.0:bafybeiabusw3r7tlru57ciceqoarusmdbpubpjq63yav3kbgvrbnbzacqu --remote
6262
aea config set agent.default_connection valory/p2p_libp2p:0.1.0
6363
aea install
6464
aea build

docs/por.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ In the former connection, the configuration YAML specifies a `cert_requests` fie
99
cert_requests:
1010
- identifier: acn
1111
ledger_id: fetchai
12-
not_after: '2023-01-01'
13-
not_before: '2022-01-01'
12+
not_after: '2024-01-01'
13+
not_before: '2023-01-01'
1414
public_key: fetchai
1515
message_format: '{public_key}'
1616
save_path: .certs/conn_cert.txt

docs/quickstart.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ This is a simple demo that introduces you to the main components of an AEA.
168168
The fastest way to have your first AEA is to fetch one that already exists!
169169

170170
``` bash
171-
aea fetch open_aea/my_first_aea:0.1.0:bafybeifelwg4md24lwpxgx7x5cugq7ovhbkew3lxw43m52rdppfn5o5g4i --remote
171+
aea fetch open_aea/my_first_aea:0.1.0:bafybeiewms67jpwf46u4wwh6tbzedsi5jffajnywgydeo5nlvvr6pcz2zm --remote
172172
cd my_first_aea
173173
```
174174
### Install AEA dependencies
@@ -264,14 +264,14 @@ cd my_first_aea
264264
<br>
265265
Second, add the stub connection to the project.
266266
``` bash
267-
aea add connection fetchai/stub:0.21.0:bafybeieqlozydyvdxmjxhqygwq27djecpiftoqwlcpcr4qpotomwnh66yy --remote
267+
aea add connection fetchai/stub:0.21.0:bafybeiabltjd53zkkyo2xmq5fmytg7cpsqmgioex7w2krrdwg3xmjosdyq --remote
268268
```
269269
<br>
270270
<b>Add the echo skill</b>
271271
<br>
272272
Third, add the echo skill to the project.
273273
``` bash
274-
aea add skill fetchai/echo:0.19.0:bafybeia3ovoxmnipktwnyztie55itsuempnfeircw72jn62uojzry5pwsu --remote
274+
aea add skill fetchai/echo:0.19.0:bafybeigqyfnmx3yoryx3yho6aj2te4px5u242nxtbhy3wnqrz35yoj6cyu --remote
275275
```
276276
This copies the <code>fetchai/echo:0.19.0</code> skill code containing the "behaviours", and "handlers" into the project, ready to run. The identifier of the skill <code>fetchai/echo:0.19.0</code> consists of the name of the author of the skill, followed by the skill name and its version.
277277
</details>
@@ -328,7 +328,7 @@ First, get the needed packages directory from IPFS (execute from the working dir
328328
```bash
329329
mkdir packages
330330
cd my_first_aea
331-
aea add protocol fetchai/default:1.0.0:bafybeihzesahyayexkhk26fg7rqnjuqaab3bmcijtjekvskvs4xw6ecyuu --remote
331+
aea add protocol fetchai/default:1.0.0:bafybeifdodei24xy4zsnmurg3dbbe2ysp7ii7v5bmrsgl7stt7lj22pezq --remote
332332
aea push protocol fetchai/default --local
333333
cd ..
334334
aea delete my_aea

docs/registry.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Successfully added protocol 'open_aea/signing:1.0.0'.
2222
Once we have an agent, we can add individual components to the agent as so;
2323

2424
```
25-
aea add skill fetchai/echo:0.19.0:bafybeia3ovoxmnipktwnyztie55itsuempnfeircw72jn62uojzry5pwsu --remote
25+
aea add skill fetchai/echo:0.19.0:bafybeigqyfnmx3yoryx3yho6aj2te4px5u242nxtbhy3wnqrz35yoj6cyu --remote
2626
Registry path not provided and local registry `packages` not found in current (.) and parent directory.
2727
Trying remote registry (`--remote`).
2828
Adding skill 'fetchai/echo:latest'...

examples/tac_deploy/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN apk add --no-cache go
1919

2020
# aea installation
2121
RUN python -m pip install --upgrade pip
22-
RUN pip install --upgrade --force-reinstall aea[all]==1.27.0
22+
RUN pip install --upgrade --force-reinstall aea[all]==1.27.0.post1
2323

2424
# directories and aea cli config
2525
COPY /.aea /home/.aea

packages/fetchai/agents/error_test/aea-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ fingerprint:
88
README.md: bafybeig75bdp2xp2k44ohxt277etnzeqhwdkwsjfciz7upwgymawmfo2vm
99
fingerprint_ignore_patterns: []
1010
connections:
11-
- fetchai/stub:0.21.0:bafybeieqlozydyvdxmjxhqygwq27djecpiftoqwlcpcr4qpotomwnh66yy
11+
- fetchai/stub:0.21.0:bafybeiabltjd53zkkyo2xmq5fmytg7cpsqmgioex7w2krrdwg3xmjosdyq
1212
contracts: []
1313
protocols: []
1414
skills:

packages/fetchai/agents/gym_aea/aea-config.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ fingerprint:
99
README.md: bafybeiadln5ca6tu6rzbsgjpeluf6nz5efxl3u223c3vxwgf2iynkj5n6q
1010
fingerprint_ignore_patterns: []
1111
connections:
12-
- fetchai/gym:0.19.0:bafybeicehd5z4aktwtffytkrqiq7b4ui2grdf4yvqfpiczjp3gtmmxngqu
12+
- fetchai/gym:0.19.0:bafybeia4huyoi4iguyea4apktr2fq62rewtzo2vskmkb4drzj6md5dzn44
1313
contracts: []
1414
protocols:
15-
- fetchai/default:1.0.0:bafybeihzesahyayexkhk26fg7rqnjuqaab3bmcijtjekvskvs4xw6ecyuu
16-
- fetchai/gym:1.0.0:bafybeihpjm2sgnrpuwaqicikw4aybltm7xrjmf7cscpp2cy2xdoi6pekbq
17-
- fetchai/state_update:1.0.0:bafybeidtndlmppst6l6iughpflqbbbkzditixo2fy2dncxfkb5apkx5y4m
18-
- open_aea/signing:1.0.0:bafybeiambqptflge33eemdhis2whik67hjplfnqwieoa6wblzlaf7vuo44
15+
- fetchai/default:1.0.0:bafybeifdodei24xy4zsnmurg3dbbe2ysp7ii7v5bmrsgl7stt7lj22pezq
16+
- fetchai/gym:1.0.0:bafybeig47gwtvosvtghwbhhwqgxhz3whxbrmyicibxtzjtss3dkbygy3iq
17+
- fetchai/state_update:1.0.0:bafybeif2hpmks3bt2wfgmjbckk23c6pmuszqyb4dttlxjqjuhf5qebo3ye
18+
- open_aea/signing:1.0.0:bafybeihgwrowgtegpe4ixe3iy5jx65u7pxebl5btrkywzmx7g52gjtbnpi
1919
skills:
20-
- fetchai/gym:0.20.0:bafybeiejzgnbm3mprvt3riytwbnlrl3bdqduubr5qqc7tfthheu36yoqua
20+
- fetchai/gym:0.20.0:bafybeidx5jg5353gqk544h4u4vivos5upwc5sfy4xjmvf6ppzinzbmpfxe
2121
default_connection: fetchai/gym:0.19.0
2222
default_ledger: fetchai
2323
required_ledgers:

packages/fetchai/agents/my_first_aea/aea-config.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ fingerprint:
88
README.md: bafybeiftiqiqpxn7ghrurhepquzqzk3su3x6wanlnolt2uj772fzgz574m
99
fingerprint_ignore_patterns: []
1010
connections:
11-
- fetchai/stub:0.21.0:bafybeieqlozydyvdxmjxhqygwq27djecpiftoqwlcpcr4qpotomwnh66yy
11+
- fetchai/stub:0.21.0:bafybeiabltjd53zkkyo2xmq5fmytg7cpsqmgioex7w2krrdwg3xmjosdyq
1212
contracts: []
1313
protocols:
14-
- fetchai/default:1.0.0:bafybeihzesahyayexkhk26fg7rqnjuqaab3bmcijtjekvskvs4xw6ecyuu
15-
- fetchai/state_update:1.0.0:bafybeidtndlmppst6l6iughpflqbbbkzditixo2fy2dncxfkb5apkx5y4m
16-
- open_aea/signing:1.0.0:bafybeiambqptflge33eemdhis2whik67hjplfnqwieoa6wblzlaf7vuo44
14+
- fetchai/default:1.0.0:bafybeifdodei24xy4zsnmurg3dbbe2ysp7ii7v5bmrsgl7stt7lj22pezq
15+
- fetchai/state_update:1.0.0:bafybeif2hpmks3bt2wfgmjbckk23c6pmuszqyb4dttlxjqjuhf5qebo3ye
16+
- open_aea/signing:1.0.0:bafybeihgwrowgtegpe4ixe3iy5jx65u7pxebl5btrkywzmx7g52gjtbnpi
1717
skills:
18-
- fetchai/echo:0.19.0:bafybeia3ovoxmnipktwnyztie55itsuempnfeircw72jn62uojzry5pwsu
18+
- fetchai/echo:0.19.0:bafybeigqyfnmx3yoryx3yho6aj2te4px5u242nxtbhy3wnqrz35yoj6cyu
1919
default_connection: fetchai/stub:0.21.0
2020
default_ledger: fetchai
2121
required_ledgers:

packages/fetchai/connections/gym/connection.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ fingerprint:
1414
fingerprint_ignore_patterns: []
1515
connections: []
1616
protocols:
17-
- fetchai/gym:1.0.0:bafybeihpjm2sgnrpuwaqicikw4aybltm7xrjmf7cscpp2cy2xdoi6pekbq
17+
- fetchai/gym:1.0.0:bafybeig47gwtvosvtghwbhhwqgxhz3whxbrmyicibxtzjtss3dkbygy3iq
1818
class_name: GymConnection
1919
config:
2020
env: ''

packages/fetchai/connections/http_server/connection.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ fingerprint:
1919
fingerprint_ignore_patterns: []
2020
connections: []
2121
protocols:
22-
- valory/http:1.0.0:bafybeigzqo2zaakcjtzzsm6dh4x73v72xg6ctk6muyp5uq5ueb7y34fbxy
22+
- valory/http:1.0.0:bafybeifru3qs6udfzprax7jxktbsuzn7immfvi3scgfspifq3zdxwkgvnm
2323
class_name: HTTPServerConnection
2424
config:
2525
api_spec_path: null

packages/fetchai/connections/local/connection.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ fingerprint:
1515
fingerprint_ignore_patterns: []
1616
connections: []
1717
protocols:
18-
- fetchai/default:1.0.0:bafybeihzesahyayexkhk26fg7rqnjuqaab3bmcijtjekvskvs4xw6ecyuu
19-
- fetchai/fipa:1.0.0:bafybeih27chr3b3anjeq26yd5c2p3hypp4sijzdu6yrorpwwxnvkeoa2ei
20-
- fetchai/oef_search:1.0.0:bafybeifiec4jvsa6mcbmasjno3bwvjwwwubyp25hjqwe7gjfksgvwgdisq
18+
- fetchai/default:1.0.0:bafybeifdodei24xy4zsnmurg3dbbe2ysp7ii7v5bmrsgl7stt7lj22pezq
19+
- fetchai/fipa:1.0.0:bafybeidox4hs4wawq5raikqfdw3752xv2w4bvzxs5ezwtymdmn6gpmipla
20+
- fetchai/oef_search:1.0.0:bafybeifim32o7w5wkpcnict6kn6lp7rlddwlul7dfigcg4nzmqayxpvduu
2121
class_name: OEFLocalConnection
2222
config: {}
2323
excluded_protocols: []

0 commit comments

Comments
 (0)