-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathmkdocs.yml
98 lines (93 loc) · 2.72 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
site_name: æternity JavaScript SDK
plugins:
- search
- mkdocs-simple-hooks:
hooks:
on_pre_build: docs.hooks:pre_build
on_page_markdown: docs.hooks:page_markdown
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:
- README.md
- quick-start.md
- Usage Guides:
- guides/address-length.md
- 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
- guides/typed-data.md
- guides/jwt.md
- Wallet interaction:
- guides/connect-aepp-to-wallet.md
- guides/build-wallet.md
- guides/ledger-wallet.md
- guides/metamask-snap.md
- transaction-options.md
- Examples & Tutorials:
- NodeJS:
- examples/node/transfer-ae.md
- examples/node/contract-interaction.md
- PayingForTx:
- examples/node/paying-for-contract-call-tx.md
- examples/node/paying-for-spend-tx.md
- examples/node/account-generalized.md
- examples/node/dry-run-using-debug-endpoint.md
- examples/node/oracle.md
- Browser:
- SDK tools: examples/browser/tools/index.html
- Aepp example: examples/browser/aepp/index.html
- Iframe wallet example: examples/browser/wallet-iframe/index.html
- Webextension wallet example: examples/browser/wallet-web-extension/packed.zip
- tutorials/vuejs/helloworld-blockheight.md
- API Reference: api/index.html
- compatibility.md
- Changelog: CHANGELOG.md
- Migration Guides:
- guides/migration/14.md
- guides/migration/13.md
- guides/migration/12.md
- guides/migration/11.md
- guides/migration/10.md
- guides/migration/9.md
- guides/migration/7.md
- Contribute:
- contrib/README.md
- contrib/releases.md