forked from witnet/witnet-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
150 lines (144 loc) · 5.9 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
site_name: Witnet-rust Documentation
site_url: https://docs.witnet.io
copyright: © 2018 Witnet Foundation. Available under <a href="https://www.gnu.org/licenses/fdl-1.3.en.html" rel="license">GNU Free Documentation License v1.3</a>
docs_dir: docs
nav:
- Home: index.md
- Get started:
- What is Witnet: get-started/what-is-witnet.md
- Why Rust?: get-started/why-rust.md
- Design Overview: get-started/design-overview.md
- Install:
- GNU/Linux: get-started/installation/gnu-linux.md
- macOS: get-started/installation/macos.md
- Windows: get-started/installation/windows.md
- From source code: get-started/installation/from-source.md
- Cross compilation: get-started/installation/cross-compilation.md
- Protocol:
- Network:
- Overview: protocol/network/overview.md
- Data Structures:
- Block: protocol/network/data-structures/block.md
- IP Address: protocol/network/data-structures/ip-address.md
- Signature: protocol/network/data-structures/signature.md
- Transaction: protocol/network/data-structures/transaction.md
- Messages:
- Overview: protocol/network/messages/overview.md
- Handshake: protocol/network/messages/handshake.md
- Peer Discovery: protocol/network/messages/peer-discovery.md
- Heartbeat: protocol/network/messages/heartbeat.md
- Inventory exchange: protocol/network/messages/inventory.md
- Constants: protocol/network/constants.md
- Data requests:
- Overview: protocol/data-requests/overview.md
- RADON:
- Encoding: protocol/data-requests/radon/encoding.md
- Types and operators:
- Overview: protocol/data-requests/radon/types/overview.md
- Array<V>: protocol/data-requests/radon/types/array.md
- Boolean: protocol/data-requests/radon/types/boolean.md
- Integer: protocol/data-requests/radon/types/integer.md
- Float: protocol/data-requests/radon/types/float.md
- Map<V>: protocol/data-requests/radon/types/map.md
- Bytes: protocol/data-requests/radon/types/bytes.md
- Null: protocol/data-requests/radon/types/null.md
- Result<V>: protocol/data-requests/radon/types/result.md
- String: protocol/data-requests/radon/types/string.md
- Implicit `Result<V>` wrapping: protocol/data-requests/radon/wrapping.md
- Exception handling: protocol/data-requests/radon/exceptions.md
- Predefined functions: protocol/data-requests/radon/functions.md
- Subscripts: protocol/data-requests/radon/subscripts.md
- Examples: protocol/data-requests/radon/examples.md
- Constants: protocol/data-requests/radon/constants.md
- Transactions:
- Introduction: protocol/transactions.md
- WitScript: protocol/witscript.md
- Blocks: protocol/blocks.md
- Mining: protocol/mining.md
- Reputation: protocol/reputation.md
- Serialization: protocol/serialization.md
- Task assignment: protocol/task-assignment.md
- Architecture:
- Overview: architecture/overview.md
- Peer-To-Peer:
- Connections: architecture/p2p/connections.md
- Gossiping: architecture/p2p/gossip.md
- Encoding: architecture/p2p/encoding.md
- Persistent Storage: architecture/storage.md
- Managers:
- Introduction: architecture/managers/managers.md
- Chain Manager: architecture/managers/chain-manager.md
- Config Manager: architecture/managers/config-manager.md
- Connections Manager: architecture/managers/connections-manager.md
- Epoch Manager: architecture/managers/epoch-manager.md
- Inventory Manager: architecture/managers/inventory-manager.md
- Peers Manager: architecture/managers/peers-manager.md
- RAD Manager: architecture/managers/rad-manager.md
- Sessions Manager: architecture/managers/sessions-manager.md
- Storage Manager: architecture/managers/storage-manager.md
- Session: architecture/session.md
- Mempool Management: architecture/mempool-mgmt.md
- Block Management: architecture/block-mgmt.md
- UTXO Management: architecture/utxo-mgmt.md
- Data Requests:
- Overview: architecture/rad/overview.md
- Witscript Parser: architecture/witscript.md
- JSON-RPC Server: architecture/json-rpc-server.md
- Interface:
- Command Line Interface (CLI): interface/cli.md
- JSON-RPC: interface/json-rpc.md
- Pub/Sub API: interface/pub-sub.md
- Wallet: interface/wallet.md
- Advanced:
- Network constants: advanced/constants.md
- Differences with the whitepaper: advanced/whitepaper-differences.md
- Roadmap: roadmap.md
- Contributing: contributing.md
- Development: development.md
- Configuration:
- Custom toml file: configuration/toml-file.md
- Command Line Interface (CLI): configuration/cli.md
- Environment defaults: configuration/environment.md
- Glossary: glossary.md
theme:
name: 'material'
favicon: 'assets/images/favicon.ico'
logo: 'assets/images/logo.svg" alt="Witnet Logo'
palette:
primary: 'deep purple'
accent: 'deep orange'
repo_name: 'witnet/witnet-rust'
repo_url: 'https://github.com/witnet/witnet-rust'
edit_uri: 'blob/master/docs'
remote_name: 'upstream'
extra:
og_image: 'assets/images/logo-docs.png'
social:
- type: 'github'
link: 'https://github.com/witnet'
- type: 'reddit'
link: 'https://reddit.com/r/witnet'
- type: 'twitter'
link: 'https://twitter.com/witnet_io'
markdown_extensions:
- admonition
- codehilite
- footnotes
- toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde