-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmkdocs.yml
103 lines (97 loc) · 4.09 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
site_name: Avalanche Documentation
site_url: https://docs.avax.network/
site_description: Avalanche Documentation.
site_author: Avalanche Community
copyright: 2020 AVA Labs
#extra project info and template customisation
extra:
support:
discord: https://chat.avalabs.org
avalabs_website: https://www.avalabs.org
# Repository
repo_name: github.com/ava-labs
repo_url: https://github.com/ava-labs/
theme:
name: 'material'
custom_dir: docs/custom_theme
palette:
primary: pink
accent: deep purple
favicon: assets/images/favicon.png
logo:
icon: library_books
feature:
tabs: true
nav:
- Avalanche Documentation :
- Home : index.md
- Quickstart : ./v1.0/en/quickstart/ava-getting-started.md
- FAQ and Known Issues : ./v1.0/en/faq/faq.md
- System Overview: v1.0/en/core-concepts/overview.md
- Tutorials:
- Create a Fixed-Cap Asset : ./v1.0/en/tutorials/fixed-cap-asset.md
- Create a Variable-Cap Asset : ./v1.0/en/tutorials/variable-cap-asset.md
- Create a Subnet : ./v1.0/en/tutorials/create-a-subnet.md
- Add Validators to a Subnet : ./v1.0/en/tutorials/adding-validators.md
- Create a Blockchain : ./v1.0/en/tutorials/create-a-blockchain.md
- Create a Virtual Machine : ./v1.0/en/tutorials/creating-a-virtual-machine.md
- Transfer AVAX between Chains : ./v1.0/en/tutorials/atomic-swap.md
- Create a Local Test Network : ./v1.0/en/tutorials/creating-a-local-testnet.md
- APIs:
- Introduction : ./v1.0/en/api/intro-apis.md
- Issuing API Calls : ./v1.0/en/api/issuing-api-calls.md
- Admin API : ./v1.0/en/api/admin.md
- AVM (X-Chain) API : ./v1.0/en/api/avm.md
- EVM (C-Chain) API : ./v1.0/en/api/evm.md
- Health API : ./v1.0/en/api/health.md
- Info API : ./v1.0/en/api/info.md
- IPC API : ./v1.0/en/api/ipc.md
- Keystore API : ./v1.0/en/api/keystore.md
- Metrics API : ./v1.0/en/api/metrics.md
- Platform (P-Chain) API : ./v1.0/en/api/platform.md
- Timestamp API : ./v1.0/en/api/timestamp.md
- Developer Tools:
- Overview : ./v1.0/en/tools/index.md
- Avalanche.js :
- Overview : ./v1.0/en/tools/avalanche.js/index.md
- API : ./v1.0/en/tools/avalanche.js/api/README.md
- Manage Keys : ./v1.0/en/tools/avalanche.js/managing-keys.md
- Create Asset : ./v1.0/en/tools/avalanche.js/create-asset.md
- Send Asset : ./v1.0/en/tools/avalanche.js/send-coins.md
- Avash : ./v1.0/en/tools/avash.md
- Reference Materials:
- Command Line Interface : v1.0/en/references/command-line-interface.md
- Cryptographic Primitives : v1.0/en/references/cryptographic-primitives.md
- Serialization Primitives : v1.0/en/references/serialization-primitives.md
- Transaction Format : v1.0/en/references/avm-transaction-serialization.md
- Network Protocol : v1.0/en/references/network-protocol.md
- Glossary : v1.0/en/references/glossary.md
- Papers : v1.0/en/papers/index.md
- Release Notes:
- Release History: v1.0/en/release-notes/release-history.md
- Roadmap and Feature Pipeline: v1.0/en/references/feature-pipeline.md
markdown_extensions:
- codehilite
- markdown_include.include:
base_path: docs
- admonition
- footnotes
- def_list
- abbr
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.keys
- pymdownx.details
- pymdownx.emoji
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- meta
- smarty
plugins:
- search