-
Notifications
You must be signed in to change notification settings - Fork 28
/
mkdocs.yml
321 lines (307 loc) · 15 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
site_name: Open Autonomy
site_url: https://valory.xyz/
site_description: A framework for the creation of autonomous agent services.
repo_url: https://github.com/valory-xyz/open-autonomy
site_author: [email protected]
edit_uri: edit/main/docs/
# TODO: Set true after fixing the material dependency
strict: false
theme:
name: 'material'
language: en
favicon: images/favicon.ico
logo: images/logo.svg
icon:
admonition:
abstract: material/book-open-variant
features:
- navigation.indexes
- navigation.top
- navigation.tracking
- navigation.footer
- search.highlight
- search.share
- search.suggest
- content.code.copy
- content.code.annotate
- content.tabs.link
extra_css:
- stylesheets/extra.css
nav:
- Home: 'index.md'
- Get started:
- What is an agent service: 'get_started/what_is_an_agent_service.md'
- Why do we need agent services: 'get_started/why_do_we_need_agent_services.md'
- Agent services compared to...: 'get_started/agent_services_compared_to.md'
- Use cases: 'get_started/use_cases.md'
- Guides:
- 'guides/index.md'
- Set up: 'guides/set_up.md'
- Quick start: 'guides/quick_start.md'
- Overview of the development process: 'guides/overview_of_the_development_process.md'
- Draft the service idea and define the FSM specification: 'guides/draft_service_idea_and_define_fsm_specification.md'
- Code the FSM App skill: 'guides/code_fsm_app_skill.md'
- Define the agent: 'guides/define_agent.md'
- Define the service: 'guides/define_service.md'
- Publish and mint packages: 'guides/publish_mint_packages.md'
- Deploy the service: 'guides/deploy_service.md'
- Bumping the service: 'guides/bumping_services.md'
- Key concepts:
- 'key_concepts/index.md'
- Autonomous economic agents: 'key_concepts/aea.md'
- Finite-state machines: 'key_concepts/fsm.md'
- The Application BlockChain Interface: 'key_concepts/abci.md'
- FSM Apps:
- Introduction to FSM Apps: 'key_concepts/fsm_app_introduction.md'
- Components of an FSM App: 'key_concepts/fsm_app_components.md'
- The AbciApp class: 'key_concepts/abci_app_class.md'
- The AbstractRoundBehaviour class: 'key_concepts/abci_app_abstract_round_behaviour.md'
- The AsyncBehaviour class: 'key_concepts/abci_app_async_behaviour.md'
- The AbstractRound class: 'key_concepts/abci_app_abstract_round.md'
- Interactions between components: 'key_concepts/abci_app_interactions.md'
- Sequence diagram: 'key_concepts/poc-diagram.md'
- Threat model: 'key_concepts/threat_model.md'
- Configure the service:
- The service configuration file: 'configure_service/service_configuration_file.md'
- Configure access to external chains: 'configure_service/configure_access_external_chains.md'
- On-chain deployment checklist: 'configure_service/on-chain_deployment_checklist.md'
- Analise and test: 'configure_service/analise_test.md'
- Advanced reference:
- 'advanced_reference/index.md'
# - publish fetch: 'guides/publish_fetch_packages.md'
- Commands:
- autonomy deploy: 'advanced_reference/commands/autonomy_deploy.md'
- autonomy build-image: 'advanced_reference/commands/autonomy_build-image.md'
- autonomy replay: 'advanced_reference/commands/autonomy_replay.md'
- autonomy analyse: 'advanced_reference/commands/autonomy_analyse.md'
- autonomy fetch: 'advanced_reference/commands/autonomy_fetch.md'
- autonomy scaffold: 'advanced_reference/commands/autonomy_scaffold.md'
- autonomy mint: 'advanced_reference/commands/autonomy_mint.md'
- autonomy service: 'advanced_reference/commands/autonomy_service.md'
- Developer tooling:
- Dev mode: 'advanced_reference/developer_tooling/dev_mode.md'
- Execution replay: 'advanced_reference/developer_tooling/execution_replay.md'
- Benchmarking: 'advanced_reference/developer_tooling/benchmarking.md'
- Debugging in the cluster: 'advanced_reference/developer_tooling/debugging_in_the_cluster.md'
- Debugging using Tenderly: 'advanced_reference/developer_tooling/debugging_using_tenderly.md'
- Deployment:
- Container Control Flow: 'control_flow.md'
- Using custom images in a deployment: 'advanced_reference/use_custom_images.md'
- Using custom dockerfile: advanced_reference/developer_tooling/custom_agent_image.md
- On Chain Addresses: 'advanced_reference/on_chain_addresses.md'
- API:
- Library:
- Constants: 'api/constants.md'
- Analyse:
- ABCI:
- App Spec: 'api/analyse/abci/app_spec.md'
- Docstrings: 'api/analyse/abci/docstrings.md'
- Handlers: 'api/analyse/handlers.md'
- Logs:
- Base: 'api/analyse/logs/base.md'
- Collection: 'api/analyse/logs/collection.md'
- Db: 'api/analyse/logs/db.md'
- Benchmark:
- Aggregate: 'api/analyse/benchmark/aggregate.md'
- HTML: 'api/analyse/benchmark/html.md'
- CLI:
- Analyse: 'api/cli/analyse.md'
- Core: 'api/cli/core.md'
- Deploy: 'api/cli/deploy.md'
- Develop: 'api/cli/develop.md'
- Fetch: 'api/cli/fetch.md'
- Hash: 'api/cli/hash.md'
- Publish: 'api/cli/publish.md'
- Push All: 'api/cli/push_all.md'
- Replay: 'api/cli/replay.md'
- Utils: 'api/cli/utils/click_utils.md'
- Build Images: 'api/cli/build_images.md'
- Scaffold FSM: 'api/cli/scaffold_fsm.md'
- Helpers:
- Deployment: api/cli/helpers/deployment.md
- Docstring: api/cli/helpers/docstring.md
- FSM Spec: api/cli/helpers/fsm_spec.md
- IFPS Hash: api/cli/helpers/ipfs_hash.md
- Registry: api/cli/helpers/registry.md
- Configurations:
- Base: 'api/configurations/base.md'
- Constants: 'api/configurations/constants.md'
- Loader: 'api/configurations/loader.md'
- Validation: 'api/configurations/validation.md'
- Deploy:
- Base: 'api/deploy/base.md'
- Build: 'api/deploy/build.md'
- Constants: 'api/deploy/constants.md'
- Image: 'api/deploy/image.md'
- Generators:
- Docker Compose:
- Base: 'api/deploy/generators/docker_compose/base.md'
- Templates: 'api/deploy/generators/docker_compose/templates.md'
- Kubernetes:
- Base: 'api/deploy/generators/kubernetes/base.md'
- Templates: 'api/deploy/generators/kubernetes/templates.md'
- Replay:
- Agent: 'api/replay/agent.md'
- Tendermint: 'api/replay/tendermint.md'
- Utils: 'api/replay/utils.md'
- FSM:
- Scaffold:
- Constants: api/fsm/scaffold/constants.md
- Base: api/fsm/scaffold/base.md
- Scaffold tools: api/fsm/scaffold/scaffold_skill.md
- Generators:
- Components: api/fsm/scaffold/generators/components.md
- Tests: api/fsm/scaffold/generators/tests.md
- Templates:
- Components: api/fsm/scaffold/templates/components.md
- Tests: api/fsm/scaffold/templates/tests.md
- Test Tools:
- Configurations: 'api/plugins/aea_test_autonomy/configurations.md'
- Fixture Helpers: 'api/plugins/aea_test_autonomy/fixture_helpers.md'
- Base Test Classes:
- Agents: 'api/plugins/aea_test_autonomy/base_test_classes/agents.md'
- Contracts: 'api/plugins/aea_test_autonomy/base_test_classes/contracts.md'
- Docker:
- ACN Node: 'api/plugins/aea_test_autonomy/docker/acn_node.md'
- AMM Net: 'api/plugins/aea_test_autonomy/docker/amm_net.md'
- Base: 'api/plugins/aea_test_autonomy/docker/base.md'
- Ganache Helpers: 'api/plugins/aea_test_autonomy/docker/ganache.md'
- Gnosis Safe Helpers: 'api/plugins/aea_test_autonomy/docker/gnosis_safe_net.md'
- Registries: 'api/plugins/aea_test_autonomy/docker/registries.md'
- Tendermint Helpers: 'api/plugins/aea_test_autonomy/docker/tendermint.md'
- Helpers:
- Async Utils: 'api/plugins/aea_test_autonomy/helpers/async_utils.md'
- Base: 'api/plugins/aea_test_autonomy/helpers/base.md'
- Contracts: 'api/plugins/aea_test_autonomy/helpers/contracts.md'
- Tendermint Utils: 'api/plugins/aea_test_autonomy/helpers/tendermint_utils.md'
- Connections:
- ABCI:
- Check Dependencies: 'api/connections/abci/check_dependencies.md'
- Connection: 'api/connections/abci/connection.md'
- Dialogues: 'api/connections/abci/dialogues.md'
- Tendermint Decoder: 'api/connections/abci/tendermint_decoder.md'
- Tendermint Encoder: 'api/connections/abci/tendermint_encoder.md'
- Scripts: 'api/connections/abci/scripts/genproto.md'
- Tests - Helper:
- Helper: 'api/connections/abci/tests/helper.md'
- Base: 'api/connections/abci/tests/test_fuzz/base.md'
- Mock Node - Node: 'api/connections/abci/tests/test_fuzz/mock_node/node.md'
- Mock Node - Channels Base: 'api/connections/abci/tests/test_fuzz/mock_node/channels/base.md'
- Mock Node - Channels GRPC: 'api/connections/abci/tests/test_fuzz/mock_node/channels/grpc_channel.md'
- Mock Node - Channels TCP: 'api/connections/abci/tests/test_fuzz/mock_node/channels/tcp_channel.md'
- Contracts:
- Gnosis Safe:
- Contract: 'api/contracts/gnosis_safe/contract.md'
- Gnosis Safe Proxy Factory:
- Contract: 'api/contracts/gnosis_safe_proxy_factory/contract.md'
- Protocols:
- ABCI:
- Custom Types: 'api/protocols/abci/custom_types.md'
- Dialogues: 'api/protocols/abci/dialogues.md'
- Message: 'api/protocols/abci/message.md'
- Serialization: 'api/protocols/abci/serialization.md'
- Skills:
- Abstract ABCI:
- Dialogues: 'api/skills/abstract_abci/dialogues.md'
- Handlers: 'api/skills/abstract_abci/handlers.md'
- Abstract Round ABCI:
- Abci App Chain: 'api/skills/abstract_round_abci/abci_app_chain.md'
- Base: 'api/skills/abstract_round_abci/base.md'
- Behaviour Utils: 'api/skills/abstract_round_abci/behaviour_utils.md'
- Behaviour: 'api/skills/abstract_round_abci/behaviours.md'
- Common: 'api/skills/abstract_round_abci/common.md'
- Dialogues: 'api/skills/abstract_round_abci/dialogues.md'
- Handlers: 'api/skills/abstract_round_abci/handlers.md'
- Models: 'api/skills/abstract_round_abci/models.md'
- Test Tools:
- ABCI App: 'api/skills/abstract_round_abci/test_tools/abci_app.md'
- Base: 'api/skills/abstract_round_abci/test_tools/base.md'
- Common: 'api/skills/abstract_round_abci/test_tools/common.md'
- Integration: 'api/skills/abstract_round_abci/test_tools/integration.md'
- Rounds: 'api/skills/abstract_round_abci/test_tools/rounds.md'
- IO:
- IPFS: 'api/skills/abstract_round_abci/io_/ipfs.md'
- Load: 'api/skills/abstract_round_abci/io_/load.md'
- Paths: 'api/skills/abstract_round_abci/io_/paths.md'
- Store: 'api/skills/abstract_round_abci/io_/store.md'
- Utils: 'api/skills/abstract_round_abci/utils.md'
- Registration ABCI:
- Behaviours: 'api/skills/registration_abci/behaviours.md'
- Payloads: 'api/skills/registration_abci/payloads.md'
- Rounds: 'api/skills/registration_abci/rounds.md'
- Dialogues: 'api/skills/registration_abci/dialogues.md'
- Handlers: 'api/skills/registration_abci/handlers.md'
- Models: 'api/skills/registration_abci/models.md'
- Transaction Settlement ABCI:
- Behaviours: 'api/skills/transaction_settlement_abci/behaviours.md'
- Payloads: 'api/skills/transaction_settlement_abci/payloads.md'
- Rounds: 'api/skills/transaction_settlement_abci/rounds.md'
- Dialogues: 'api/skills/transaction_settlement_abci/dialogues.md'
- Handlers: 'api/skills/transaction_settlement_abci/handlers.md'
- Models: 'api/skills/transaction_settlement_abci/models.md'
- Payload Tools: 'api/skills/transaction_settlement_abci/payload_tools.md'
- Test Tools: 'api/skills/transaction_settlement_abci/test_tools/integration.md'
- Exceptions: 'exceptions.md'
- Package list: 'package_list.md'
- Version: 'version.md'
- Upgrading: 'upgrading.md'
- FAQ: 'questions-and-answers.md'
plugins:
- macros:
on_error_fail: true
on_undefined: strict
- search
markdown_extensions:
- admonition
- attr_list
- pymdownx.details
- pymdownx.keys
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.arithmatex:
generic: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- def_list
- md_in_html
- toc:
title: On this page
toc_depth: 3
extra:
open_aea: '[Open AEA](https://github.com/valory-xyz/open-aea)'
open_aea_doc: '[Open AEA documentation](https://open-aea.docs.autonolas.tech)'
open_aea_api: '[Open AEA API](https://open-aea.docs.autonolas.tech/api)'
fsm_app: 'FSM App'
open_autonomy: '[Open Autonomy](https://github.com/valory-xyz/open-autonomy)'
open_autonomy_api: '[Open Autonomy API](https://docs.autonolas.network)'
open_aea_repository: '[Open AEA repository](https://github.com/valory-xyz/open-aea)'
open_autonomy_repository: '[Open Autonomy repository](https://github.com/valory-xyz/open-autonomy)'
autonolas_whitepaper: '[Autonolas Whitepaper](https://www.autonolas.network/documents/whitepaper/Whitepaper%20v1.0.pdf)'
autonolas_protocol: '[Autonolas Protocol](https://docs.autonolas.network/protocol)'
autonolas_protocol_registry_dapp_link: 'https://registry.olas.network'
autonolas_protocol_registry_dapp: '[Autonolas Registry web app](https://registry.olas.network)'
autonolas_protocol_tokenomics_dapp: '[Autonolas Tokenomics web app](https://tokenomics.olas.network)'
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/autonolas
name: Autonolas on Twitter
- icon: fontawesome/brands/discord
link: https://discord.com/invite/z2PT65jKqQ
name: Autonolas on Discord
- icon: fontawesome/brands/github
link: https://github.com/valory-xyz
name: Autonolas on GitHub
extra_javascript:
- https://unpkg.com/[email protected]/dist/mermaid.min.js
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- javascripts/dynamic-hash.js