Skip to content

Commit 4b7ea9b

Browse files
authored
Merge pull request #2355 from valory-xyz/chore/docs-links
chore: replace old domain name to stack
2 parents 95ad38b + 5093c9a commit 4b7ea9b

23 files changed

+37
-36
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ def some_method(some_arg: Type) -> ReturnType:
6262

6363
### Agent development
6464

65-
You can find several general recommendations in the **Considerations to Develop FSM Apps** section in our documentation [here](https://docs.autonolas.network/open-autonomy/key_concepts/fsm_app_introduction/).
65+
You can find several general recommendations in the **Considerations to Develop FSM Apps** section in our documentation [here](https://stack.olas.network/open-autonomy/key_concepts/fsm_app_introduction/).

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ smart contracts provide, making it possible to execute **arbitrarily complex ope
5050

5151
## Get started developing agent services
5252

53-
Read the [Open Autonomy documentation](https://docs.autonolas.network/open-autonomy/) to learn more about agent services. Follow the [set up](https://docs.autonolas.network/open-autonomy/guides/set_up/) and [quick start](https://docs.autonolas.network/open-autonomy/guides/quick_start/) guides to start building your own services.
53+
Read the [Open Autonomy documentation](https://stack.olas.network/open-autonomy/) to learn more about agent services. Follow the [set up](https://stack.olas.network/open-autonomy/guides/set_up/) and [quick start](https://stack.olas.network/open-autonomy/guides/quick_start/) guides to start building your own services.
5454

5555

5656
## For developers contributing to the framework: install from source

autonomy/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,4 @@
6666
DEFAULT_DOCKER_IMAGE_AUTHOR = "valory"
6767
OAR_IMAGE = "{image_author}/oar-{agent}:{version}"
6868
ABSTRACT_ROUND_ABCI_SKILL_WITH_HASH = "valory/abstract_round_abci:0.1.0:bafybeifirqx2aavth5ub5wkz66l3773pzmksbftojzmha34rch4oypf5xa"
69-
OLAS_DOCS_URL = "https://docs.autonolas.network"
69+
OLAS_DOCS_URL = "https://stack.olas.network"

docs/advanced_reference/commands/autonomy_analyse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This command verifies that the [`AbciApp` class](../../key_concepts/abci_app_cla
1212

1313
??? example
1414

15-
The docstring corresponding to the [Hello World agent service](https://docs.autonolas.network/demos/hello-world/) is
15+
The docstring corresponding to the [Hello World agent service](https://stack.olas.network/demos/hello-world/) is
1616

1717

1818
```python

docs/advanced_reference/commands/autonomy_fetch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ autonomy --registry-path=./packages fetch valory/hello_world:0.1.0 --service --l
9898

9999
Fetch the agent service `hello_world` from a remote registry using [IPFS](https://ipfs.io) hash:
100100
```bash
101-
autonomy fetch valory/hello_world:0.1.0:bafybeihl6j7ihkytk4t4ca2ffhctpzydwi6r4a354ubjasttuv2pw4oaci --service --remote
101+
autonomy fetch valory/hello_world:0.1.0:bafybeicj73kflta5sfxq7gnnk7smcdp2gwcfvfvm2plxc5ojhulwa3xnoq --service --remote
102102
```
103103

104104
Fetch the agent service with the token ID `123` on Gnosis chain:

docs/advanced_reference/commands/autonomy_service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Tools to manage services minted in the {{ autonolas_protocol }}.
22

3-
This command group consists of a number of functionalities to manage [the life cycle of services](https://docs.autonolas.network/protocol/life_cycle_of_a_service/) that have been minted in the {{ autonolas_protocol }}.
3+
This command group consists of a number of functionalities to manage [the life cycle of services](https://stack.olas.network/protocol/life_cycle_of_a_service/) that have been minted in the {{ autonolas_protocol }}.
44

55
!!! info
66

docs/configure_service/analise_test.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ The `valory/abstract_round_abci` skill packages come with a number of testing to
5050
Fetch the `hello_world` agent, which comes with the `hello_world_abci` {{fsm_app}} skill within:
5151

5252
```bash
53-
autonomy fetch valory/hello_world:0.1.0:bafybeihtmp45mbfs5tyzrgxfoimh552on6dif42ifqidifait3ej2m5zvq --alias hello_world_agent
53+
autonomy fetch valory/hello_world:0.1.0:bafybeig2mv6afojsype4v2fwkpzkvdohbeg6ilvp2tokn7i6ub2csd6wxi --alias hello_world_agent
5454
```
5555

5656
Look at the unit tests for the `hello_world_abci` skill, located in the folder
@@ -76,7 +76,7 @@ The same plugin also provides tools for writing end-to-end tests for agents. The
7676
Fetch the `hello_world` agent:
7777

7878
```bash
79-
autonomy fetch valory/hello_world:0.1.0:bafybeihtmp45mbfs5tyzrgxfoimh552on6dif42ifqidifait3ej2m5zvq --alias hello_world_agent
79+
autonomy fetch valory/hello_world:0.1.0:bafybeig2mv6afojsype4v2fwkpzkvdohbeg6ilvp2tokn7i6ub2csd6wxi --alias hello_world_agent
8080
```
8181

8282
Look at the end-to-end tests, located in the folder

docs/configure_service/service_configuration_file.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The service configuration file `service.yaml` is typically composed of service-s
77

88
???+ example
99

10-
Here is an example of the service configuration file of the [Hello World service](https://docs.autonolas.network/demos/hello-world/):
10+
Here is an example of the service configuration file of the [Hello World service](https://stack.olas.network/demos/hello-world/):
1111

1212
```yaml title="service.yaml"
1313
name: hello_world
@@ -98,7 +98,7 @@ The {{open_aea}} framework already has the notion of [component overrides](https
9898
Similarly, the {{open_autonomy}} framework has the notion of service-level overrides. You can define them in the service configuration file `service.yaml`, which will be used to generate the deployment environment for the agents.
9999

100100
Service-level overrides follow the mandatory service-specific attributes, separated by `---`.
101-
You can, for example, override the default `HELLO_WORLD!` string that each agent prints on their console in the [Hello World service](https://docs.autonolas.network/demos/hello-world/), which is originally defined in the `hello_world_abci` skill.
101+
You can, for example, override the default `HELLO_WORLD!` string that each agent prints on their console in the [Hello World service](https://stack.olas.network/demos/hello-world/), which is originally defined in the `hello_world_abci` skill.
102102

103103
```yaml title="service.yaml"
104104
name: hello_world
@@ -165,7 +165,7 @@ type: skill
165165

166166
???+ example
167167

168-
If you wish that each agent outputs a different message in the [Hello World service](https://docs.autonolas.network/demos/hello-world/) with four agents, you can define the following multiple override in the `service.yaml` file:
168+
If you wish that each agent outputs a different message in the [Hello World service](https://stack.olas.network/demos/hello-world/) with four agents, you can define the following multiple override in the `service.yaml` file:
169169

170170
```yaml title="service.yaml"
171171
# (...)

docs/guides/code_fsm_app_skill.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ You must ensure that your machine satisfies the [framework requirements](./set_u
3636
* `rounds.py`,
3737
* `payloads.py`.
3838
39-
You should also define a number of test classes. You can review how the [demo services](https://docs.autonolas.network/demos/) are implemented, or read about the [internals of {{fsm_app}}s](../key_concepts/fsm_app_introduction.md) to learn how to populate the template classes.
39+
You should also define a number of test classes. You can review how the [demo services](https://stack.olas.network/demos/) are implemented, or read about the [internals of {{fsm_app}}s](../key_concepts/fsm_app_introduction.md) to learn how to populate the template classes.
4040
4141
!!! tip
4242

docs/guides/define_agent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ You must ensure that your machine satisfies the [framework requirements](./set_u
1515

1616
## Step-by-step instructions
1717

18-
In order to deploy and run a service you need an agent with a working {{fsm_app}}. We base this guide on a default {{fsm_app}} available in the remote registry, namely, the `hello_world_abci` {{fsm_app}}. As a result, we will define an agent implementing a functionality equivalent to the [Hello World service](https://docs.autonolas.network/demos/hello-world/). You can, of course, use your own {{fsm_app}} to define your agent.
18+
In order to deploy and run a service you need an agent with a working {{fsm_app}}. We base this guide on a default {{fsm_app}} available in the remote registry, namely, the `hello_world_abci` {{fsm_app}}. As a result, we will define an agent implementing a functionality equivalent to the [Hello World service](https://stack.olas.network/demos/hello-world/). You can, of course, use your own {{fsm_app}} to define your agent.
1919

2020
!!! warning "Important"
2121

0 commit comments

Comments
 (0)