Skip to content

Commit

Permalink
chore: update hashes in the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
angrybayblade committed Jul 6, 2022
1 parent 563219b commit 151980b
Show file tree
Hide file tree
Showing 16 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion docs/agent-vs-aea.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ aea create my_aea # create an agent
cd my_aea
aea add connection fetchai/stub:0.21.0:QmektTWmXcjThQd8md8nSYgLapR3Gks3n3WEzwAWQFgc4z --remote # get a connection from the remote registry
aea push connection fetchai/stub --local # push to local registry
aea add protocol fetchai/default:1.0.0:QmYNdsSrdKRvJGKjAbREuvkjGXgnanDjxCBS8CfJb9fzr1 --remote
aea add protocol fetchai/default:1.0.0:QmWoiXYAKqwyqXDQ4gC1b11uRAxKRBiicWWuqthqeNWyEw --remote
aea push protocol fetchai/default --local
cd ..
aea delete my_aea # delete the agent
Expand Down
2 changes: 1 addition & 1 deletion docs/build-aea-programmatically.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Get the needed packages from IPFS:
mkdir packages
aea create my_aea
cd my_aea
aea add protocol fetchai/default:1.0.0:QmYNdsSrdKRvJGKjAbREuvkjGXgnanDjxCBS8CfJb9fzr1 --remote
aea add protocol fetchai/default:1.0.0:QmWoiXYAKqwyqXDQ4gC1b11uRAxKRBiicWWuqthqeNWyEw --remote
aea push protocol fetchai/default --local
cd ..
aea delete my_aea
Expand Down
2 changes: 1 addition & 1 deletion docs/decision-maker-transaction.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ First, get the packages directory from IPFS:
mkdir packages
aea create my_aea
cd my_aea
aea add protocol open_aea/signing:1.0.0:QmRL1Qt5TEzbw6xRn3grz1fe22uM761AXL8UQ8QvGmQn8K --remote
aea add protocol open_aea/signing:1.0.0:QmX5gZL9j8y1z8HYkNJmMkcdTBH4ENiJBAFfYYuJgYcHSH --remote
aea push protocol open_aea/signing --local
cd ..
aea delete my_aea
Expand Down
2 changes: 1 addition & 1 deletion docs/echo_demo.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This demo assumes you have followed the setup guide.
The fastest way to have your first AEA is to fetch one that already exists!

``` bash
aea fetch open_aea/my_first_aea:0.1.0:QmPnksZuyuJxRxCChsSN8QVFB3RGynLmPQLQk53rRTFA1K --remote
aea fetch open_aea/my_first_aea:0.1.0:QmZgZRnT8VJoE5RKDNoJTeaaj4PDzaHAbggSXxcWuRjxkq --remote
cd my_first_aea
```
### Install AEA dependencies
Expand Down
4 changes: 2 additions & 2 deletions docs/gym-skill.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Follow the <a href="../quickstart/#preliminaries">Preliminaries</a> and <a href=

First, fetch the gym AEA:
``` bash
aea fetch open_aea/gym_aea:0.1.0:QmNVoBXZP9bs1DkVrA74mPw6uCuSniFm7NkFMo3A2nRtS3 --remote
aea fetch open_aea/gym_aea:0.1.0:QmVx4N6ZWqqdRgNw5euHZsJDkC2kUZUo494hKpmPXWcKLP --remote
cd gym_aea
aea install
```
Expand All @@ -36,7 +36,7 @@ cd my_gym_aea

### Add the gym skill
``` bash
aea add skill fetchai/gym:0.20.0:QmTqPWwPXVPRH1Rg9xq4obCHnUpXAyTCoo8cBEcyz4YVfg --remote
aea add skill fetchai/gym:0.20.0:QmYnGJzk9JfSDREa8FyLqQxDnGUKwjrpFQYSuV8aho3uCV --remote
```

### Set gym connection as default
Expand Down
6 changes: 3 additions & 3 deletions docs/http-connection-and-skill.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ Add the http server connection package:
mkdir packages
aea create my_aea
cd my_aea
aea add connection fetchai/http_server:0.22.0:QmbTKQYumbrBQBwSy91GyEhKr4kgGD2S9rHjybb3EDD8PA --remote
aea add connection fetchai/http_server:0.22.0:QmbJ2Bcv156rY4ikSc7RB6Z4EwsXeZW1MqvdYcjw4kKY9z --remote
aea push connection fetchai/http_server --local
aea add protocol fetchai/default:1.0.0:QmYNdsSrdKRvJGKjAbREuvkjGXgnanDjxCBS8CfJb9fzr1 --remote
aea add protocol fetchai/default:1.0.0:QmWoiXYAKqwyqXDQ4gC1b11uRAxKRBiicWWuqthqeNWyEw --remote
aea push protocol fetchai/default --local
aea add protocol fetchai/http:1.0.0:QmVUoaxD2pMd2czgrUjFH6LifM8h9KUt4TzRRPjUHCCYyv --remote
aea add protocol fetchai/http:1.0.0:Qmdz2FD7P9VXzUMZpLUh3DV5YtgWZwJKDxxw78heeaHv4M --remote
aea push protocol fetchai/http --local
cd ..
aea delete my_aea
Expand Down
2 changes: 1 addition & 1 deletion docs/http-echo-demo.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The easiest way to get started with the http server is to use our pre-built exam

``` bash
pipenv shell
aea fetch open_aea/http_echo:0.1.0:QmNh1RY6SP4JDdB2P9aXjsPNsrjLiPdTRkgDfJEwS6ToVb --remote
aea fetch open_aea/http_echo:0.1.0:QmbxJbfm94zgXq4W3PNrd32JnrniSv5QxL6ANQJTt2jRMy --remote
cd http_echo
aea generate-key ethereum; aea add-key ethereum
aea run --aev
Expand Down
4 changes: 2 additions & 2 deletions docs/ipfs_registry.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ Packages can be downloaded using both extended public ids and hashes

Add the signing protocol using

`aea add protocol QmRL1Qt5TEzbw6xRn3grz1fe22uM761AXL8UQ8QvGmQn8K --remote`
`aea add protocol QmX5gZL9j8y1z8HYkNJmMkcdTBH4ENiJBAFfYYuJgYcHSH --remote`

Or

`aea add protocol open_aea/signing:1.0.0:QmRL1Qt5TEzbw6xRn3grz1fe22uM761AXL8UQ8QvGmQn8K --remote`
`aea add protocol open_aea/signing:1.0.0:QmX5gZL9j8y1z8HYkNJmMkcdTBH4ENiJBAFfYYuJgYcHSH --remote`

## Publishing agents

Expand Down
2 changes: 1 addition & 1 deletion docs/multiplexer-standalone.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ First, get the required packages from IPFS.
mkdir packages
aea create my_aea
cd my_aea
aea add protocol fetchai/default:1.0.0:QmYNdsSrdKRvJGKjAbREuvkjGXgnanDjxCBS8CfJb9fzr1 --remote
aea add protocol fetchai/default:1.0.0:QmWoiXYAKqwyqXDQ4gC1b11uRAxKRBiicWWuqthqeNWyEw --remote
aea push connection fetchai/default --local
aea add connection fetchai/stub:0.21.0:QmektTWmXcjThQd8md8nSYgLapR3Gks3n3WEzwAWQFgc4z --remote
aea push connection fetchai/stub --local
Expand Down
4 changes: 2 additions & 2 deletions docs/p2p-connection.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Create one AEA as follows:
``` bash
aea create my_genesis_aea
cd my_genesis_aea
aea add connection valory/p2p_libp2p:0.1.0:QmYyTVCipGK4ef3q62KUDHgf5A729ztPZ7k54NbSUxvhU7 --remote
aea add connection valory/p2p_libp2p:0.1.0:QmQNMWYrzxDastciN9TdgKHVVffxUie33B7esD9ggJmw79 --remote
aea config set agent.default_connection valory/p2p_libp2p:0.1.0
aea install
aea build
Expand Down Expand Up @@ -58,7 +58,7 @@ Create a second AEA:
``` bash
aea create my_other_aea
cd my_other_aea
aea add connection valory/p2p_libp2p:0.1.0:QmYyTVCipGK4ef3q62KUDHgf5A729ztPZ7k54NbSUxvhU7 --remote
aea add connection valory/p2p_libp2p:0.1.0:QmQNMWYrzxDastciN9TdgKHVVffxUie33B7esD9ggJmw79 --remote
aea config set agent.default_connection valory/p2p_libp2p:0.1.0
aea install
aea build
Expand Down
6 changes: 3 additions & 3 deletions docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ This is a simple demo that introduces you to the main components of an AEA.
The fastest way to have your first AEA is to fetch one that already exists!

``` bash
aea fetch open_aea/my_first_aea:0.1.0:QmPnksZuyuJxRxCChsSN8QVFB3RGynLmPQLQk53rRTFA1K --remote
aea fetch open_aea/my_first_aea:0.1.0:QmZgZRnT8VJoE5RKDNoJTeaaj4PDzaHAbggSXxcWuRjxkq --remote
cd my_first_aea
```
### Install AEA dependencies
Expand Down Expand Up @@ -262,7 +262,7 @@ aea add connection fetchai/stub:0.21.0:QmektTWmXcjThQd8md8nSYgLapR3Gks3n3WEzwAWQ
<br>
Third, add the echo skill to the project.
``` bash
aea add skill fetchai/echo:0.19.0:QmQxMpYwxRNCNzEqWaPmNXFTWgu4Xmz89ZjTp2TQu3wbPM --remote
aea add skill fetchai/echo:0.19.0:QmWGXT761veL8iK7ZroBRGExxAYKpHhvQcAvnLjwoqT1WH --remote
```
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.
</details>
Expand Down Expand Up @@ -319,7 +319,7 @@ First, get the needed packages directory from IPFS (execute from the working dir
```bash
mkdir packages
cd my_first_aea
aea add protocol fetchai/default:1.0.0:QmYNdsSrdKRvJGKjAbREuvkjGXgnanDjxCBS8CfJb9fzr1 --remote
aea add protocol fetchai/default:1.0.0:QmWoiXYAKqwyqXDQ4gC1b11uRAxKRBiicWWuqthqeNWyEw --remote
aea push protocol fetchai/default --local
cd ..
aea delete my_aea
Expand Down
2 changes: 1 addition & 1 deletion docs/registry.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Successfully added protocol 'open_aea/signing:1.0.0'.
Once we have an agent, we can add individual components to the agent as so;

```
aea add skill fetchai/echo:0.19.0:QmQxMpYwxRNCNzEqWaPmNXFTWgu4Xmz89ZjTp2TQu3wbPM --remote
aea add skill fetchai/echo:0.19.0:QmWGXT761veL8iK7ZroBRGExxAYKpHhvQcAvnLjwoqT1WH --remote
Registry path not provided and local registry `packages` not found in current (.) and parent directory.
Trying remote registry (`--remote`).
Adding skill 'fetchai/echo:latest'...
Expand Down
4 changes: 2 additions & 2 deletions tests/test_docs/test_bash_yaml/md_files/bash-gym-skill.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
``` bash
aea fetch open_aea/gym_aea:0.1.0:QmNVoBXZP9bs1DkVrA74mPw6uCuSniFm7NkFMo3A2nRtS3 --remote
aea fetch open_aea/gym_aea:0.1.0:QmVx4N6ZWqqdRgNw5euHZsJDkC2kUZUo494hKpmPXWcKLP --remote
cd gym_aea
aea install
```
Expand All @@ -8,7 +8,7 @@ aea create my_gym_aea
cd my_gym_aea
```
``` bash
aea add skill fetchai/gym:0.20.0:QmTqPWwPXVPRH1Rg9xq4obCHnUpXAyTCoo8cBEcyz4YVfg --remote
aea add skill fetchai/gym:0.20.0:QmYnGJzk9JfSDREa8FyLqQxDnGUKwjrpFQYSuV8aho3uCV --remote
```
``` bash
aea config set agent.default_connection fetchai/gym:0.19.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ aea create my_aea
cd my_aea
```
``` bash
aea add connection fetchai/http_server:0.22.0:QmbTKQYumbrBQBwSy91GyEhKr4kgGD2S9rHjybb3EDD8PA --remote
aea add connection fetchai/http_server:0.22.0:QmbJ2Bcv156rY4ikSc7RB6Z4EwsXeZW1MqvdYcjw4kKY9z --remote
```
``` bash
aea config set agent.default_connection fetchai/http_server:0.22.0
Expand Down Expand Up @@ -48,11 +48,11 @@ models:
mkdir packages
aea create my_aea
cd my_aea
aea add connection fetchai/http_server:0.22.0:QmbTKQYumbrBQBwSy91GyEhKr4kgGD2S9rHjybb3EDD8PA --remote
aea add connection fetchai/http_server:0.22.0:QmbJ2Bcv156rY4ikSc7RB6Z4EwsXeZW1MqvdYcjw4kKY9z --remote
aea push connection fetchai/http_server --local
aea add protocol fetchai/default:1.0.0:QmYNdsSrdKRvJGKjAbREuvkjGXgnanDjxCBS8CfJb9fzr1 --remote
aea add protocol fetchai/default:1.0.0:QmWoiXYAKqwyqXDQ4gC1b11uRAxKRBiicWWuqthqeNWyEw --remote
aea push protocol fetchai/default --local
aea add protocol fetchai/http:1.0.0:QmVUoaxD2pMd2czgrUjFH6LifM8h9KUt4TzRRPjUHCCYyv --remote
aea add protocol fetchai/http:1.0.0:Qmdz2FD7P9VXzUMZpLUh3DV5YtgWZwJKDxxw78heeaHv4M --remote
aea push protocol fetchai/http --local
cd ..
aea delete my_aea
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
``` bash
pipenv shell
aea fetch open_aea/http_echo:0.1.0:QmNh1RY6SP4JDdB2P9aXjsPNsrjLiPdTRkgDfJEwS6ToVb --remote
aea fetch open_aea/http_echo:0.1.0:QmbxJbfm94zgXq4W3PNrd32JnrniSv5QxL6ANQJTt2jRMy --remote
cd http_echo
aea generate-key ethereum; aea add-key ethereum
aea run --aev
Expand Down
8 changes: 4 additions & 4 deletions tests/test_docs/test_bash_yaml/md_files/bash-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ v1.7.0
AEA configurations successfully initialized: {'author': 'fetchai'}
```
``` bash
aea fetch open_aea/my_first_aea:0.1.0:QmPnksZuyuJxRxCChsSN8QVFB3RGynLmPQLQk53rRTFA1K --remote
aea fetch open_aea/my_first_aea:0.1.0:QmZgZRnT8VJoE5RKDNoJTeaaj4PDzaHAbggSXxcWuRjxkq --remote
cd my_first_aea
```
``` bash
Expand Down Expand Up @@ -151,19 +151,19 @@ aea delete my_first_aea


``` bash
aea fetch open_aea/my_first_aea:0.1.0:QmPnksZuyuJxRxCChsSN8QVFB3RGynLmPQLQk53rRTFA1K --remote
aea fetch open_aea/my_first_aea:0.1.0:QmZgZRnT8VJoE5RKDNoJTeaaj4PDzaHAbggSXxcWuRjxkq --remote
cd my_first_aea
```

``` bash
aea fetch open_aea/my_first_aea:0.1.0:QmPnksZuyuJxRxCChsSN8QVFB3RGynLmPQLQk53rRTFA1K --remote
aea fetch open_aea/my_first_aea:0.1.0:QmZgZRnT8VJoE5RKDNoJTeaaj4PDzaHAbggSXxcWuRjxkq --remote
cd my_first_aea
```

```bash
mkdir packages
cd my_first_aea
aea add protocol fetchai/default:1.0.0:QmYNdsSrdKRvJGKjAbREuvkjGXgnanDjxCBS8CfJb9fzr1 --remote
aea add protocol fetchai/default:1.0.0:QmWoiXYAKqwyqXDQ4gC1b11uRAxKRBiicWWuqthqeNWyEw --remote
aea push protocol fetchai/default --local
cd ..
aea delete my_aea
Expand Down

0 comments on commit 151980b

Please sign in to comment.