Skip to content

Commit

Permalink
Merge pull request #144 from valory-xyz/fix/script-paths
Browse files Browse the repository at this point in the history
Fix script paths
  • Loading branch information
DavidMinarsch authored May 13, 2022
2 parents 8197760 + e0a87a9 commit 3bd8da0
Show file tree
Hide file tree
Showing 53 changed files with 115 additions and 67 deletions.
7 changes: 7 additions & 0 deletions .spelling
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,13 @@ acn
args
open-aea
cleanup
gc
memray
pluging
cli
mkdocs
ipfs
command_line
- docs/language-agnostic-definition.md
fetchai
protocol_id
Expand Down
31 changes: 31 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,37 @@
# Release History - open AEA


## 1.8.0 (2022-05-12)

AEA:
- Extends the `run` command to print all available addresses at the AEA start up.
- Introduces support for usage of hashes as a part of the `PublicId`
- Adds support for IPFS based registry
- Introduces dialogue cleanup
- Adds support for removing the temporal `None` values in the dialogue label
- Updated the profiler to
- Removing the unwanted variables in profiling
- Set counters also in the destructor
- Only iterate the gc one
- Use types blacklist
- Get info from all objects
- Adds support for memray in the profiler
- Ports the `generate_all_protocols.py` and `generate_ipfs_hashes.py` to `aea.cli` as a command line tools.
- Adds support for the usage of environment variables in `issue-certificates` command.

Pluging:
- Updates IPFS cli plugin tool to support remote registry and extended `PublicId`

Packages:
- Updated `tendermint/protocol` for config sharing

Chores:
- Adds support for IPFS in CI for windows based environments
- Profile parser checks for non empty data before plotting
- The paths to download the packages folder with svn are now pointing to the version tag rather than main.
- Adds the missing search plugin for mkdocs.
- Adds new functionality to the log parser to add an extra plot with common objects in the garbage collector.

## 1.7.0 (2022-04-15)

AEA:
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ The following table shows which versions of `open-aea` are currently being suppo

| Version | Supported |
| --------- | ------------------ |
| `1.7.x` | :white_check_mark: |
| `< 1.7.0` | :x: |
| `1.8.x` | :white_check_mark: |
| `< 1.8.0` | :x: |

## Reporting a Vulnerability

Expand Down
2 changes: 1 addition & 1 deletion aea/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
__title__ = "open-aea"
__description__ = "Open Autonomous Economic Agent framework (without vendor lock-in)"
__url__ = "https://github.com/valory-xyz/open-aea.git"
__version__ = "1.7.0"
__version__ = "1.8.0"
__author__ = "Valory AG"
__license__ = "Apache-2.0"
__copyright__ = "2021 Valory AG, 2019 Fetch.AI Limited"
2 changes: 1 addition & 1 deletion deploy-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apk add --no-cache go

# aea installation
RUN pip install --upgrade pip
RUN pip install --upgrade --force-reinstall open-aea[all]==1.7.0
RUN pip install --upgrade --force-reinstall open-aea[all]==1.8.0

# directories and aea cli config
COPY /.aea /home/.aea
Expand Down
2 changes: 1 addition & 1 deletion deploy-image/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The example uses the `fetchai/my_first_aea` project. You will likely want to mod
Install subversion, then download the example directory to your local working directory

``` bash
svn checkout https://github.com/valory-xyz/open-aea/tags/v1.7.0/packages packages
svn checkout https://github.com/valory-xyz/open-aea/tags/v1.8.0/packages packages
```

### Modify scripts
Expand Down
2 changes: 1 addition & 1 deletion develop-image/docker-env.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# Swap the following lines if you want to work with 'latest'
DOCKER_IMAGE_TAG=valory/open-aea-develop:1.7.0
DOCKER_IMAGE_TAG=valory/open-aea-develop:1.8.0
# DOCKER_IMAGE_TAG=valory/open-aea-develop:latest

DOCKER_BUILD_CONTEXT_DIR=..
Expand Down
2 changes: 1 addition & 1 deletion docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ AEAs are composed of components. AEAs and AEA components can be developed by any

To load Valory packages please use <a href="https://subversion.apache.org/packages.html" target="_blank">SVN</a> to checkout the specific folders;
```bash
svn checkout https://github.com/valory-xyz/open-aea/tags/v1.7.0/packages packages
svn checkout https://github.com/valory-xyz/open-aea/tags/v1.8.0/packages packages
```


Expand Down
10 changes: 10 additions & 0 deletions docs/upgrading.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ Below we describe the additional manual steps required to upgrade between differ

# Open AEA

## `v1.7.0` to `1.8.0`

This release introduces a new format for `PublicId` parameter which allows users to use IPFS hashes as a part of the `PublicId` which may lead to some unexpected behaviours or bugs.

Previous implementation of `PublicId` used `author/package:version` format, The new implementation uses `author/package:version:hash`

This release also fixes the hash inconsistency by using wrapper hashes to represent packages.

Plugins from previous versions are not compatible anymore.

## `v1.6.0` to `v1.7.0`

No backwards incompatible changes.
Expand Down
2 changes: 1 addition & 1 deletion examples/tac_deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN apk add --no-cache go

# aea installation
RUN python -m pip install --upgrade pip
RUN pip install --upgrade --force-reinstall aea[all]==1.7.0
RUN pip install --upgrade --force-reinstall aea[all]==1.8.0

# directories and aea cli config
COPY /.aea /home/.aea
Expand Down
3 changes: 3 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ nav:
- Exec Timeout: 'api/helpers/exec_timeout.md'
- File IO: 'api/helpers/file_io.md'
- File Lock: 'api/helpers/file_lock.md'
- Git: api/helpers/git.md
- HttpRequests: 'api/helpers/http_requests.md'
- Install Dependency: 'api/helpers/install_dependency.md'
- IO: 'api/helpers/io.md'
Expand All @@ -160,6 +161,7 @@ nav:
- Pipe: 'api/helpers/pipe.md'
- Preferences:
- Base: 'api/helpers/preference_representations/base.md'
- Profiler Type Blacklist: api/helpers/profiler_type_black_list.md
- Profiling: 'api/helpers/profiling.md'
- Search:
- Generic: 'api/helpers/search/generic.md'
Expand All @@ -180,6 +182,7 @@ nav:
- Manager:
- Manager: 'api/manager/manager.md'
- Project: 'api/manager/project.md'
- Helpers: api/manager/helpers.md
- Utils: 'api/manager/utils.md'
- Protocols:
- Base: 'api/protocols/base.md'
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/protocols/contract_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""
This module contains the support resources for the contract_api protocol.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.7.0`.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.8.0`.
"""

from packages.fetchai.protocols.contract_api.message import ContractApiMessage
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/protocols/contract_api/protocol.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license: Apache-2.0
aea_version: '>=1.0.0, <2.0.0'
fingerprint:
README.md: QmYJqcqfbCFE3LHMgok2xkP9z8myB9NNZsm6iR6NXh2HQF
__init__.py: Qmb7JgyFrHFoLCEBzS4LiTRr7YNAaKE5HnFmEpwYm8vMHD
__init__.py: QmbNML14edvpZxQg3MRhP8YfEvZrqa6W4ALedydWWKpJGY
contract_api.proto: QmVezvQ3vgN19nzJD1CfgvjHxjdaP4yLUSwaQDMQq85vUZ
contract_api_pb2.py: QmRp7JBW1HQGwShSagVLTpvQvEkQPqAZLqnTT2HkBpXBuk
custom_types.py: QmW9Ju9GnYc8A7sbG8RvR8NnTCf5sVfycYqotN6WZb76LG
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/protocols/default/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""
This module contains the support resources for the default protocol.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.7.0`.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.8.0`.
"""

from packages.fetchai.protocols.default.message import DefaultMessage
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/protocols/default/protocol.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license: Apache-2.0
aea_version: '>=1.0.0, <2.0.0'
fingerprint:
README.md: QmNN1eJSSeAGs4uny1tqWkeQwyr6SVV2QgKAoPz18W5jnV
__init__.py: QmNwGUYMk7SK7G8JnHgxJrQD9soPq2KyYP5tRaoTHh1Kr6
__init__.py: Qmf3MG4Dd6xomxvpi7kk3gczHw4sz63nCE4zvTGFQ3YqaB
custom_types.py: QmVbmxfpiHM8xDvsRvytPr4jmjD5Ktc5171fweYGBkXvBd
default.proto: QmWYzTSHVbz7FBS84iKFMhGSXPxay2mss29vY7ufz2BFJ8
default_pb2.py: QmRjBnFfnHHPygYmSdXfVp6A2FZ7PtrYKpdwTXxMYLwEGK
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/protocols/fipa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""
This module contains the support resources for the fipa protocol.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.7.0`.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.8.0`.
"""

from packages.fetchai.protocols.fipa.message import FipaMessage
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/protocols/fipa/protocol.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license: Apache-2.0
aea_version: '>=1.0.0, <2.0.0'
fingerprint:
README.md: QmfZxjMzApLKdff7s77G6RKqsmXLdc18yLoMLpDsoV2C8c
__init__.py: QmZjSzRQzJt2ArJjqBtVAfwb92AAkt3ztYC5SEArsgSpFT
__init__.py: QmRPVXtoxePsMzTX9cyiv4B23uA2JbbSJp15LARK31byiw
custom_types.py: Qmf72KRbkNsxxAHwMtkmJc5TRL23fU7AuzJAdSTftckwJQ
dialogues.py: QmRvjJDEbGyhTh1cF6kSbzf45F7bEXFpWMnTw4Yf2TBymL
fipa.proto: QmS7aXZ2JoG3oyMHWiPYoP9RJ7iChsoTC9KQLsj6vi3ejR
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/protocols/gym/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""
This module contains the support resources for the gym protocol.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.7.0`.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.8.0`.
"""

from packages.fetchai.protocols.gym.message import GymMessage
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/protocols/gym/protocol.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license: Apache-2.0
aea_version: '>=1.0.0, <2.0.0'
fingerprint:
README.md: QmSrL3oujtXaSgrbxQzYD12oHjb5d55kNSFiZ4SA3jSNj1
__init__.py: QmeGCQdcUsT8xccZP5cyuTWHVzZ1siRNRSS17BSJPKYw8j
__init__.py: QmQjwNciUNKKpjqdtEQvdAkXQTmj71wi7xaU8YXHG7BbfV
custom_types.py: QmTQSizkRh6awSk4J2cPGjidMcZ356bTyYxNG2HSgfkj9B
dialogues.py: QmYPuD9fkw6Rowu6eXJV5yaCjUe9jX9Ji3JSx3kQ6xaDKK
gym.proto: QmSYD1qtmNwKnfuTUtPGzbfW3kww4viJ714aRTPupLdV62
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/protocols/http/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""
This module contains the support resources for the http protocol.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.7.0`.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.8.0`.
"""

from packages.fetchai.protocols.http.message import HttpMessage
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/protocols/http/protocol.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license: Apache-2.0
aea_version: '>=1.0.0, <2.0.0'
fingerprint:
README.md: QmVzD8i4VPm36TKUn8yfuswTJbeaMBSuSqb4amokQCDc9d
__init__.py: QmdRid99mUpgCiiAPMTvrJzTnA5ZNa9yTAiYm5RdDdwUNS
__init__.py: QmbHWAKiax5aryjaBL5Y4oYEQ1ZQfXdjnmc2ysH18FpTHs
dialogues.py: Qmc7ZyMiofAp95bwty32Ty3bgtEuWN2A76LWhKeYVpDNWj
http.proto: QmfJj4aoNpVCZs8HsQNmf1Zx2y8b9JbuPG2Dysow4LwRQU
http_pb2.py: QmeQd42QbVdvnjuW1Eqz9UGxn2GsdMgb1Ew4Vb52xN9DKk
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/protocols/ledger_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""
This module contains the support resources for the ledger_api protocol.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.7.0`.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.8.0`.
"""

from packages.fetchai.protocols.ledger_api.message import LedgerApiMessage
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/protocols/ledger_api/protocol.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license: Apache-2.0
aea_version: '>=1.0.0, <2.0.0'
fingerprint:
README.md: QmUjEQqcfDm1F1ARmG2fVp9J6nBdeHrXQiFAPKawtgR1g6
__init__.py: QmXGf98pYAckTzbSwRkbJqjrhLYZSYcwusLBDUzrqp7Usb
__init__.py: QmW5AeEb1trFWBwmdEfP3SaA1Bn5Mz6sedcGyj8qf6wLaX
custom_types.py: QmT3aUh6HP2LaD5HziEEvjxVpv4G671P5EKV3rfh77epgy
dialogues.py: QmcYRdn3UNeyCD8aSrcrc19Witznb2LqeMwyNRCVFkBmDb
ledger_api.proto: QmdSbtU1eXT1ZLFZkdCzTpBD8NyDMWgiA4MJBoHJLdCkz3
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/protocols/oef_search/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""
This module contains the support resources for the oef_search protocol.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.7.0`.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.8.0`.
"""

from packages.fetchai.protocols.oef_search.message import OefSearchMessage
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/protocols/oef_search/protocol.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license: Apache-2.0
aea_version: '>=1.0.0, <2.0.0'
fingerprint:
README.md: QmRzU4RAYqfnDKxHv6iH9hmbG59uEJequ6CA4rwwbvgjuW
__init__.py: QmVVHDD8H5gv6vTSW8dReoZfRKbGS7j4surWcLKDF7V6QK
__init__.py: QmUcC3tQgGdYqnszd7RCpGPDdR9ZxYDEnHDe9t46zSzBfb
custom_types.py: QmeyJUULbC8HuNbaU8kmQYau9BJo6gBkTTsZPFmk8ngtPf
dialogues.py: QmTQL6ccCPnYCwaFQiJGtuWQx5SbCXmukUaPainmreyFBZ
message.py: QmRAqT4QhYP4b3o1HbU1NcU6hpzoxRbyzv4PEYwVZbnV9T
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/protocols/state_update/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""
This module contains the support resources for the state_update protocol.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.7.0`.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.8.0`.
"""

from packages.fetchai.protocols.state_update.message import StateUpdateMessage
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/protocols/state_update/protocol.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license: Apache-2.0
aea_version: '>=1.0.0, <2.0.0'
fingerprint:
README.md: QmXUyoQ3NTF9EBSSk7ENNRbCANwABKJvfbrKi2Pmoc2JkT
__init__.py: QmW3swmhMvVBEQcxtx1RA4srhBfMGtrgP6PpBdAxB9xjJS
__init__.py: QmaPx2HB9zQtpHiMCa6c4uezVxAkHBbL8PokxJid5vqvjc
dialogues.py: QmPKGuXmBsC62b4WGojPrYNH1cXSWj4ir5oAS9v3xfZvKa
message.py: QmP9uR4AvQv1A1Fx41bVC3cbQj4veRuEY1yERCdV8HvcQj
serialization.py: QmZTJMieof5uL3zDQXRMnZso8Fs1CqgNn4Tua7DqihkFdk
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/protocols/tac/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""
This module contains the support resources for the tac protocol.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.7.0`.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.8.0`.
"""

from packages.fetchai.protocols.tac.message import TacMessage
Expand Down
2 changes: 1 addition & 1 deletion packages/fetchai/protocols/tac/protocol.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license: Apache-2.0
aea_version: '>=1.0.0, <2.0.0'
fingerprint:
README.md: QmRKpjkcyW9vQUfVQFAZqTc8tXj6MeKQvwFseCaZcMt4AK
__init__.py: QmcL5JtER7ZJKn4kGLNufw4Vwu8cigAViTbEWGbUAQZyhY
__init__.py: QmP1uZbzmKvNKP182rXXoGe4jTeZThLY3Pp3fW2Ty7BEk1
custom_types.py: QmNzs8yaVU3xL7XKA7WZWHyuEctAdj5UJLnZfompFvXf1i
dialogues.py: QmPmqYyKNJLrfS2kyuujoK4qMzeyJ9yfEQmWeETXXgZ7Lr
message.py: QmSSGEPx2kR2Q1bdXFCKxQAkt9RDXxwhoWeozf76MY2Kce
Expand Down
24 changes: 12 additions & 12 deletions packages/hashes.csv
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ fetchai/connections/ledger,QmbeWYjrjpGogmm6b1ehfxupAjDJ3vNEeUoyrRiFnWVKcg
fetchai/connections/local,QmRwjeaPh7sBooVc8aT1LxBaiY7792s4nK4EGgsPL1uShn
fetchai/connections/stub,QmZ5AZHR6Gh8LFS7Kgce2R9uV4HbSw9T523gHz33wvAs9c
fetchai/contracts/erc1155,QmcWju76BLXDzeH6po8nHhkZL7BgSEq4KqgvTgP1Y1ZUQ2
fetchai/protocols/contract_api,QmQAxKiF6rh1oXS5RkMZrSvQ1epBv7MfK8T4qrNyKwHZRR
fetchai/protocols/default,QmQCJ7taqUQzYFYeCuigDDyUnMPDYKY39uXdsLkv75xGZz
fetchai/protocols/fipa,QmTAVFhAkRonEbpUnUCrMo45KYt71uPja3xdchEa53MjDG
fetchai/protocols/gym,QmPuRfTusrxyVUu9LK49pcHwDwK8nmPVNaPDYAoEgMNk5M
fetchai/protocols/http,QmagBvneniYHYNMFQ5vLuPDxpNwpj9y1zEMDFMHHqJQbPg
fetchai/protocols/ledger_api,Qmdq2upsbb7J1DCtYtKa1xoU1L8phZxdsWibykZ74FiAhK
fetchai/protocols/oef_search,QmcbT1FWESdX7WXCd9YW5d4GV6Vp2u6KJPRLkr9EGQAHHV
fetchai/protocols/state_update,QmPR6WvNf8THneCZmL6JYKo81VhpDpicZgU3ApiRxRavDU
fetchai/protocols/tac,QmbMnJgVUsEBC3BBW7nmCiAhggtxZby6JsVCrW1MKrfznZ
fetchai/protocols/contract_api,QmcaSjvkpcV8wHjCjkorkYizwq6zP2K9rNLy5uUbHQk6Nv
fetchai/protocols/default,QmYvdtdJLQhB8wH7PZUUASoPbCG7jXTPZRG9PKZ59wB9XV
fetchai/protocols/fipa,QmcD4Mis4HQFxLBjdbJcAktQ4vrjnHb7zw4DLHvbEqkRM2
fetchai/protocols/gym,QmRVQSNkWbQTf5KkW3JTBZocrHooeNEwUPH9uMa9Afh9Kr
fetchai/protocols/http,QmbEw8GuKc28kcz5tatLkmGxoUCxjNXbaoqcJUMP3acCzh
fetchai/protocols/ledger_api,QmUCpcjuaukLwrBQ5iEnzitpQzKLeQoJV6h7uQZT9fjmJU
fetchai/protocols/oef_search,QmeAn55EjBbGhgFmRDoSFxkd5SZnCqarPNykWVwFmYBzcC
fetchai/protocols/state_update,QmQyufe2zh8NMMf4qgBNFiLbj86iCERNBhfx5EroN9qPQy
fetchai/protocols/tac,QmPXiWfZWAHAbF6KvcYZbxMPqXo3MVUdH3NDd33sj9hxw5
fetchai/skills/echo,QmYYa5DnMxRs6HbhKcLVjGspiJhD4yq2he7UtBkcbv7K5o
fetchai/skills/erc1155_client,QmboFSeh56dyK2zkpNSZwWBBf83ThtesfiobaMAuKKmo3V
fetchai/skills/erc1155_deploy,QmZ6i99djan3BcRZw2LDU3NGzk7ypFWniGAyaBePbrjoH8
Expand All @@ -34,10 +34,10 @@ open_aea/agents/my_first_aea,QmS48sDGYZ37VdSEZJWJrasnFaN4HN3ncy4uErMikH3rTu
open_aea/connections/scaffold,QmZ42VNQKHxG1pWad4GCtD4Z8pwS258xd45KbM8pTgmyFk
open_aea/contracts/scaffold,QmWk6GLpbV3ZSZuhpTqejGdPd6c5iJQCGjo7g4ktW2BdMu
open_aea/protocols/scaffold,QmSV8Xe9eDWvtSxRKZQquMy5d2kcR7FprJtStUD7wb5b3B
open_aea/protocols/signing,QmQ8wgB8BskasQVih3Vv1uT3ecuQ9tu9NnQwobjeVEVbfM
open_aea/protocols/signing,QmdrqznAYpnTWtLvLtLXiyMVr8PRfmj251puWbMZMNBw41
open_aea/skills/scaffold,QmemZUe28kMS72q9zLW6VVzfss2adEgFGwtWinPXzGPmUm
valory/connections/p2p_libp2p,QmcVBGRQYPrLUGKTF48CdgiyBjED8nLFScEiSKiA58Lpri
valory/connections/p2p_libp2p_client,QmUimd7PxMpoCnPtBygrfowrkJuHLkrV3baKVZZiznmdCh
valory/connections/p2p_libp2p_mailbox,QmQ4XqKhUSxvNvNtDJJJfWm6yGAcvuoDJjWo36qSjBj1HH
valory/protocols/acn,QmZpwT2j2PQPdLW1LjaJqAJh8EmJh1VshV6YxQvw9zKWgv
valory/protocols/tendermint,QmbapEv6Mo4G67wfQ6tneoNYTSLd2jepCeQyVSKyqVF5Va
valory/protocols/acn,QmQBwxeumMyuQSsm35WZG5Xoco7jCygk8DTz2bLM9uBQjF
valory/protocols/tendermint,QmQG4Eh3Ux4jjYvFXZgLvsATNeHFirAuybxRZKRXH61NVh
2 changes: 1 addition & 1 deletion packages/open_aea/protocols/signing/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""
This module contains the support resources for the signing protocol.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.7.0`.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.8.0`.
"""

from packages.open_aea.protocols.signing.message import SigningMessage
Expand Down
2 changes: 1 addition & 1 deletion packages/open_aea/protocols/signing/protocol.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license: Apache-2.0
aea_version: '>=1.0.0, <2.0.0'
fingerprint:
README.md: QmTym1GXLScdeJVd4WsLfgVpn8ouPX6ddwi1LLcTX1rPTg
__init__.py: QmV2kYq4xizLy78pc1ndeRDGoc17gYhBtWfR5sQgpPRZ4p
__init__.py: QmQ37f4Q8pptdCTy7LogaP3ZVE4yQV5ah2eiG5SnbHnRnu
custom_types.py: QmSjuy9e7KkzhyGDr8eB1cjmjTAkBoNQjb1YXjBk5B36d1
dialogues.py: QmRaEqaneDaGd69od629EW4FmXakaQfbdXKNCfxsDhbHcG
message.py: QmREhvXNi6bEc4yCnSs172wPnBb3YpE1nuRdSSD9Q6XMfM
Expand Down
2 changes: 1 addition & 1 deletion packages/valory/protocols/acn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""
This module contains the support resources for the acn protocol.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.7.0`.
It was created with protocol buffer compiler version `libprotoc 3.19.4` and aea version `1.8.0`.
"""

from packages.valory.protocols.acn.message import AcnMessage
Expand Down
2 changes: 1 addition & 1 deletion packages/valory/protocols/acn/protocol.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license: Apache-2.0
aea_version: '>=1.0.0, <2.0.0'
fingerprint:
README.md: QmZ59igTs2SKsMDHzuew8gfGdqjW1vNZ3DxBDqWLnDd6XD
__init__.py: QmRP6JEvAjvBu862ri2RXrSwZHkVrgdWCq49Jnrs3XXALs
__init__.py: QmXYFwr8WkxXtRgkBaELTKRhZqWQhzKLhmoV8iKudChShi
acn.proto: QmVWvXETUNe7QZTvBgzwpofNP3suFthwyxbTVUqSx8mdnE
acn_pb2.py: Qmf3HYmJtGwugpCuWSmJEDVHwZcnCF6BWmeEouUSpBRs45
custom_types.py: QmS9xN5EPy8pZRbwpUdewH7TocNGCx7xv3GwupxSQRRVgM
Expand Down
Loading

0 comments on commit 3bd8da0

Please sign in to comment.