forked from aeternity/aepp-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
82 lines (77 loc) · 1.98 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
site_name: æternity JavaScript SDK
plugins:
- search
- mkdocs-simple-hooks:
hooks:
on_pre_build: 'docs.hooks:pre_build'
repo_url: 'https://github.com/aeternity/aepp-sdk-js'
edit_uri: ''
extra:
version:
provider: mike
theme:
favicon: images/favicon.png
name: material
custom_dir: tooling/docs/overrides
palette:
- scheme: default
media: "(prefers-color-scheme: light)"
primary: pink
accent: pink
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
media: "(prefers-color-scheme: dark)"
primary: pink
accent: pink
toggle:
icon: material/weather-sunny
name: Switch to light mode
features:
- content.tabs.link
- search.highlight
- search.share
- search.suggest
# Don't include MkDocs' JavaScript
include_search_page: false
search_index_only: true
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
nav:
- index.md
- quick-start.md
- Usage Guides:
- guides/aens.md
- guides/contracts.md
- guides/contract-events.md
- guides/oracles.md
- guides/paying-for-tx.md
- guides/batch-requests.md
- guides/error-handling.md
- guides/low-vs-high-usage.md
- Wallet interaction:
- guides/connect-aepp-to-wallet.md
- guides/build-wallet.md
- transaction-options.md
- Examples & Tutorials:
- NodeJS:
- examples/node/transfer-ae.md
- examples/node/contract-interaction.md
- PayingForTx:
- examples/node/paying-for-tx-contract-call-tx.md
- examples/node/paying-for-tx-spend-tx.md
- tutorials/vuejs/helloworld-blockheight.md
- 'API Reference': api/
- compatibility.md
- Changelog: CHANGELOG.md
- Migration Guides:
- guides/migration/12.0.0.md
- guides/migration/11.0.0.md
- guides/migration/10.0.0.md
- guides/migration/9.0.0.md
- guides/migration/7.0.0.md
- Contribute:
- contrib/README.md
- contrib/releases.md