-
Notifications
You must be signed in to change notification settings - Fork 15
/
mkdocs.yml
104 lines (100 loc) · 3.1 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
# yaml-language-server: $schema=https://squidfunk.github.io/mkdocs-material/schema.json
site_name: The Book of BDK
repo_name: bitcoindevkit/bdk
repo_url: https://github.com/bitcoindevkit/bdk
plugins:
- search
theme:
name: material
logo: assets/favicon.ico
icon:
repo: fontawesome/brands/github
favicon: assets/favicon.ico
palette:
- scheme: default
primary: white
accent: deep orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: black
accent: deep orange
toggle:
icon: material/brightness-4
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
features:
- navigation.tabs
# - navigation.tabs.sticky
# - navigation.sections
- navigation.instant
# - navigation.indexes
- navigation.footer
# - navigation.expand # expands all sidebar sections by default
- search.suggest
- search.highlight
- content.tabs.link
extra:
homepage: https://bitcoindevkit.org
generator: false
social:
- icon: fontawesome/solid/globe
link: https://bitcoindevkit.org
- icon: fontawesome/brands/twitter
link: https://twitter.com/bitcoindevkit
- icon: fontawesome/brands/discord
link: https://discord.gg/dstn4dQ
markdown_extensions:
- tables
- attr_list
- pymdownx.highlight:
anchor_linenums: true
linenums: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- def_list
- md_in_html
- pymdownx.snippets:
dedent_subsections: True
nav:
- Getting Started:
- About BDK: index.md
- Why this Book?: getting-started/why-book.md
- Project Organization: getting-started/organization.md
- Getting Started: getting-started/getting-started.md
- API Documentation: getting-started/api-documentation.md
- Build a Wallet: getting-started/build-a-wallet.md
- Cookbook:
- Quick Start Example: cookbook/quickstart.md
- Full Wallet Example: cookbook/full-wallet.md
- Syncing:
- Full Scan vs Sync: cookbook/syncing/full-scan-vs-sync.md
- Electrum Sync: cookbook/syncing/electrum.md
- Esplora Sync: cookbook/syncing/esplora.md
- RPC Sync: cookbook/syncing/rpc.md
- Persistence:
- In-Memory Wallet: cookbook/persistence/memory.md
- SQLite Database: cookbook/persistence/sqlite.md
- Flat File Persistence: cookbook/persistence/flat-file.md
- Keys and Descriptors:
- Creating Descriptors: cookbook/keys-descriptors/descriptors.md
- Seed Phrase to Descriptors: cookbook/keys-descriptors/seed-phrase.md
- Transactions:
- Transaction Builder: cookbook/transactions/transaction-builder.md
- Architecture:
- Overview:
- Design: architecture/design.md