-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
220 lines (201 loc) · 6.53 KB
/
Copy pathmkdocs.yml
File metadata and controls
220 lines (201 loc) · 6.53 KB
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
site_name: BitVMX Documentation
site_url: https://bitvmx.org
site_description: Comprehensive documentation for BitVMX - A CPU for Universal Computation on Bitcoin
site_author: BitVMX Team
repo_name: FairgateLabs/BitVMX
repo_url: https://github.com/FairgateLabs/bitvmx-docs
edit_uri: ""
theme:
name: material
language: en
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue
accent: light blue
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue
accent: light blue
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.tabs.link
- content.tooltips
- navigation.expand
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress
- navigation.path
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
icon:
repo: fontawesome/brands/github
logo: material/cpu-64-bit
hooks:
- hooks/copy_rust_docs.py
plugins:
- search:
separator: '[\s\-,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
- mermaid2:
version: 10.6.0
markdown_extensions:
# Python Markdown
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
toc_depth: 3
# Python Markdown Extensions
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:mermaid2.fence_mermaid_custom
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/FairgateLabs
name: BitVMX on GitHub
- icon: fontawesome/brands/telegram
link: https://t.me/+HnlusWvtyyY4YjEx
name: BitVMX Telegram
- icon: fontawesome/brands/twitter
link: https://twitter.com/bitvmx
name: BitVMX on Twitter
generator: false
extra_css:
- stylesheets/extra.css
- stylesheets/rustdoc-theme.css
nav:
- Home: index.md
- Getting Started:
- getting-started/index.md
- Prerequisites: getting-started/prerequisites.md
- Installation: getting-started/installation.md
- Quick Start: getting-started/quick-start.md
- Core Concepts:
- core-concepts/index.md
- What is BitVMX: core-concepts/what-is-bitvmx.md
- Architecture: core-concepts/architecture.md
- Challenge-Response Protocol: core-concepts/challenge-response.md
- Hash Chain System: core-concepts/hash-chains.md
- RISC-V Implementation: core-concepts/risc-v.md
- Security Model: core-concepts/security-model.md
- Union Bridge:
- union-bridge/index.md
- Introduction: union-bridge/introduction.md
- Peg-In Flow: union-bridge/pegin-flow.md
- Peg-Out Flow: union-bridge/pegout-flow.md
- Protocols: union-bridge/protocols.md
- Smart Contracts: union-bridge/smart-contracts.md
- Packet Architecture: union-bridge/packet-architecture.md
- Components:
- components/index.md
- BitVMX Client: components/bitvmx-client.md
- BitVMX CPU: components/bitvmx-cpu.md
- Protocol Builder: components/protocol-builder.md
- Key Manager: components/key-manager.md
- Wallet: components/wallet.md
- Broker: components/broker.md
- ZK Proofs: components/zk-proofs.md
- Bitcoin Coordinator: components/coordinator.md
- Blockchain Indexer: components/indexer.md
- Transaction Monitor: components/transaction-monitor.md
- Storage Backend: components/storage.md
- Developer Guide:
- developer-guide/index.md
- Workspace Setup: developer-guide/workspace-setup.md
- Building Protocols: developer-guide/building-protocols.md
- API Usage: developer-guide/api-usage.md
- Testing: developer-guide/testing.md
- Docker: developer-guide/docker.md
- Troubleshooting: developer-guide/troubleshooting.md
- API Reference:
- api-reference/index.md
- API Messages: api-reference/messages.md
- Client API: api-reference/client-api.md
- Protocol Builder API: api-reference/protocol-builder-api.md
- Key Manager API: api-reference/key-manager-api.md
- Storage Backend API: api-reference/storage-api.md
- Broker API: api-reference/broker-api.md
- Coordinator API: api-reference/coordinator-api.md
- Indexer API: api-reference/indexer-api.md
- Transaction Monitor API: api-reference/transaction-monitor-api.md
- Wallet API: api-reference/wallet-api.md
- Settings API: api-reference/settings-api.md
- Tutorials:
- tutorials/index.md
- Your First Protocol: tutorials/first-protocol.md
- Payment Channels: tutorials/payment-channels.md
- Bridge Operation: tutorials/bridge-operation.md
- Running Examples: tutorials/running-examples.md
- Technical Reference:
- technical-reference/index.md
- Glossary: technical-reference/glossary.md
- BitVMX vs BitVM: technical-reference/comparison-bitvm.md
- Latest Innovations: technical-reference/innovations.md
- ESSPI: technical-reference/esspi.md
- Specifications: technical-reference/specifications.md
- Contributing:
- contributing/index.md
- Code Style: contributing/code-style.md
- Documentation Guidelines: contributing/documentation.md
- Testing Standards: contributing/testing-guidelines.md
- Resources:
- resources/index.md
- Academic Papers: resources/papers.md
- Articles & Blog Posts: resources/articles.md
- Videos: resources/videos.md
- External Links: resources/links.md
copyright: Copyright © 2024-2025 BitVMX Team