forked from flare-foundation/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
331 lines (329 loc) · 15.6 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
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
site_name: Technical Documentation
validation:
omitted_files: warn
absolute_links: ignore
unrecognized_links: warn
theme:
name: material
custom_dir: docs/assets/overrides
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
toggle:
icon: material/weather-night
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: flaredark
toggle:
icon: material/weather-sunny
name: Switch to light mode
logo: logo.svg # Put it in the overrides folder!
favicon: /favicon.png
icon:
edit: material/pencil
features:
- navigation.tabs # Top-level pages are shown as tabs on the header
- navigation.tabs.sticky # Navigation tabs are always visible
- navigation.top # "Back to top" button appears upon upward scrolling
- navigation.indexes # Allow section headers to have a page (see tech/index.md)
- content.tabs.link
- search.suggest # Search will display the likeliest completion for the last word
- search.highlight # Highlight all occurrences after following the link
- content.code.copy # Code blocks render a button to allow the user to copy a code
- content.action.edit # Edit icon
markdown_extensions:
- admonition # Info boxes (in different colors)
- pymdownx.details # "
- pymdownx.superfences # Info boxes, tabs
- pymdownx.caret # Allow superscript and insertion marks (^ and ^^)
- pymdownx.tilde # Allow subscript and deletion marks (~ and ~~)
- pymdownx.keys # Allow Keyboard marks (++)
- pymdownx.mark # Allow selection marks (==)
- pymdownx.inlinehilite # Syntax-highlight inline code
- pymdownx.tabbed: # Tabbed content
alternate_style: true
- toc: # TOC control
permalink: "#" # Add permalinks to headers
- pymdownx.arithmatex: # Math blocks
generic: true
- attr_list # { Annotations }
- md_in_html # Markdown inside HTML
- def_list # Definition lists (Glossary)
- pymdownx.snippets # Import files with --8<--
plugins:
- search # Search box at the top
- git-revision-date # Last edit timestamp at the bottom
- macros: # Jinja2 macros
include_dir: samples
- autolinks # Use just filenames instead of full or relative paths
- redirects: # Allow creating redirects for moved pages
redirect_maps:
'en/state-connector.md': 'tech/state-connector.md'
'technology/glossary.md': 'tech/glossary.md'
'technology/state-connector.md': 'tech/state-connector.md'
'networks/songbird.md': 'dev/reference/network-config.md'
'networks/coston-testnet.md': 'dev/reference/network-config.md'
'tech/flare-launch-process.md': 'tech/archive/flare-launch-process.md'
'tutorials/wallets/index.md': 'user/wallets/index.md'
'tutorials/wallets/bifrost-wallet.md': 'user/wallets/bifrost-wallet.md'
'tutorials/wallets/dcent-wallet.md': 'user/wallets/dcent-wallet.md'
'tutorials/wallets/how-to-access-flare-network-with-a-ledger-device.md': 'user/wallets/how-to-access-flare-network-with-a-ledger-device.md'
'tutorials/wallets/how-to-access-flare-network-with-a-trezor-device.md': 'user/wallets/how-to-access-flare-network-with-a-trezor-device.md'
'tutorials/wallets/how-to-access-flare-network-with-metamask.md': 'user/wallets/how-to-access-flare-network-with-metamask.md'
'tutorials/wallets/safepal-s1-wallet.md': 'user/wallets/safepal-s1-wallet.md'
'tutorials/wallets/brave-wallet.md': 'user/wallets/brave-wallet.md'
'tutorials/explorer/songbird-explorer.md': 'user/block-explorers/index.md'
'tutorials/explorer/coston-explorer.md': 'user/block-explorers/index.md'
'tutorials/developing-on-top-of-flare/README.md': 'dev/index.md'
'tutorials/developing-on-top-of-flare/important-links.md': 'dev/index.md'
'tutorials/delegation/README.md': 'user/delegation/index.md'
'tutorials/delegation/delegation-in-detail.md': 'tech/ftso.md'
'tutorials/delegation-faq/README.md': 'tech/ftso.md'
'tutorials/delegation-faq/block-explorer-+-metamask.md': 'user/delegation/managing-delegations.md'
'tutorials/reward-claiming/README.md': 'tech/ftso.md'
'tutorials/reward-claiming/reward-claiming-in-detail.md': 'user/delegation/managing-rewards.md'
'tutorials/reward-faq/README.md': 'tech/ftso.md'
'tutorials/reward-faq/block-explorer-+-metamask.md': 'user/delegation/managing-rewards.md'
'tutorials/price-provider/setting-up-an-observation-node/README.md': 'infra/observation/deploying.md'
'tutorials/price-provider/setting-up-an-observation-node/observation-node-faq.md': 'infra/observation/deploying.md'
'tutorials/price-provider/ftso-price-provider/README.md': 'infra/data/operating.md'
'tutorials/price-provider/ftso-price-provider/price-provider-faq.md': 'infra/data/operating.md'
'tutorials/price-provider/ftso-price-provider/whitelisting-a-price-provider.md': 'infra/data/whitelisting.md'
'tutorials/price-provider/ftso-price-provider/whitelisting-price-provider-faq.md': 'infra/data/whitelisting.md'
'tutorials/price-provider/troubleshooting/price-provider.md': 'infra/data/operating.md'
'infra/data/deploying.md': 'infra/data/operating.md'
'tutorials/price-provider/troubleshooting/observation-node.md': 'infra/observation/deploying.md'
'tutorials/price-provider/whitelisting.md': 'infra/data/whitelisting.md'
'dev/reference/flare.md': 'dev/reference/network-config.md'
'dev/reference/songbird.md': 'dev/reference/network-config.md'
'dev/reference/coston-testnet.md': 'dev/reference/network-config.md'
'dev/reference/network-configs.md': 'dev/reference/network-config.md'
'dev/contracts.md': 'dev/getting-started/contract-addresses.md'
'user/delegation/delegation-overview.md': 'tech/ftso.md'
'user/delegation/delegation-faq.md': 'tech/ftso.md'
'user/delegation/delegation-in-detail.md': 'tech/ftso.md'
'user/delegation/manual-delegation.md': 'user/delegation/managing-delegations.md'
'user/delegation/manual-reward-claiming.md': 'user/delegation/managing-rewards.md'
'user/delegation/reward-claiming.md': 'tech/ftso.md'
'user/delegation/reward-claiming-faq.md': 'tech/ftso.md'
'user/delegation/reward-claiming-in-detail.md': 'tech/ftso.md'
'infra/validation/staking-cli.md': 'user/staking/staking-cli.md'
'infra/observation/faq.md': 'infra/observation/deploying.md'
extra_css:
- assets/stylesheets/extra.css
extra_javascript:
- assets/javascripts/mathjax.js
- assets/javascripts/images.js
- assets/javascripts/links.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
extra:
social:
- icon: fontawesome/solid/house
link: https://flare.network
- icon: fontawesome/brands/twitter
link: https://twitter.com/FlareNetworks
- icon: fontawesome/brands/github
link: https://github.com/flare-foundation
- icon: fontawesome/brands/discord
link: https://discord.com/invite/flarenetwork
analytics:
provider: gtm # Custom Google Tag Manager integration
property: GTM-WX2D2TR
consent:
title: Cookie consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.
copyright: >-
© 2023 Flare Networks. <a href="#__consent">Cookie settings</a>.
site_url: https://docs.flare.network
repo_url: https://github.com/flare-foundation/docs
edit_uri: edit/main/docs/
nav:
- Home:
- index.md
- Flare Fundamentals:
- tech/index.md
- tech/flare.md
- tech/automatic-claiming.md
- tech/the-flaredrop.md
- tech/flare-beta.md
- tech/api-portal.md
- FAssets:
- tech/fassets/index.md
- tech/fassets/collateral.md
- tech/fassets/minting.md
- tech/fassets/redemption.md
- tech/fassets/liquidation.md
- tech/ftso.md
- tech/governance.md
- tech/personal-delegation-account.md
- tech/state-connector.md
- tech/validators.md
- tech/glossary.md
- Archive:
- tech/archive/index.md
- tech/archive/flare-launch-process.md
- User Guides:
- user/index.md
- user/automatic-claiming.md
- Block Explorers:
- user/block-explorers/index.md
- user/block-explorers/finding-reward-epoch.md
- Managing Delegations: user/block-explorers/managing-delegations.md
- Managing Rewards: user/block-explorers/managing-rewards.md
- user/block-explorers/verifying-vote-power-block.md
- user/block-explorers/viewing-nfts.md
- user/block-explorers/viewing-token-balances.md
- user/block-explorers/viewing-token-transfers.md
- user/block-explorers/viewing-transactions.md
- user/block-explorers/user-interface.md
- user/claiming-the-flaredrop.md
- FTSO Delegation:
- user/delegation/index.md
- Managing Delegations: user/delegation/managing-delegations.md
- Managing Rewards: user/delegation/managing-rewards.md
- Governance:
- user/governance/index.md
- user/governance/voting.md
- user/personal-delegation-account.md
- Staking:
- user/staking/index.md
- user/staking/staking-flarestake.md
- user/staking/staking-cli.md
- Wallets:
- user/wallets/index.md
- user/wallets/bifrost-wallet.md
- user/wallets/brave-wallet.md
- user/wallets/dcent-wallet.md
- user/wallets/enkrypt-wallet.md
- user/wallets/how-to-access-flare-network-with-a-ledger-device.md
- user/wallets/how-to-access-flare-network-with-metamask.md
- user/wallets/safepal-s1-wallet.md
- user/wallets/how-to-access-flare-network-with-a-trezor-device.md
- user/wrapping-tokens.md
- Infrastructure Guides:
- infra/index.md
- Attestation Providers:
- infra/attestation/index.md
- infra/attestation/operating.md
- FTSO Data Providers:
- infra/data/index.md
- infra/data/operating.md
- infra/data/whitelisting.md
- Managing the Ecosystem:
- infra/data/managing-ecosystem/index.md
- infra/data/managing-ecosystem/exploring-collusion.md
- infra/data/managing-ecosystem/monitoring-price-history.md
- Observer Nodes:
- infra/observation/index.md
- infra/observation/deploying.md
- Validator Nodes:
- infra/validation/index.md
- infra/validation/deploying.md
- Exchange Guides:
- exchange/index.md
- exchange/architecture.md
- exchange/delegation.md
- exchange/troubleshooting.md
- Developer Docs:
- dev/index.md
- Getting Started:
- dev/getting-started/index.md
- Setting Up Your Environment:
- dev/getting-started/setup/index.md
- Using Remix: dev/getting-started/setup/remix.md
- Using Hardhat: dev/getting-started/setup/hardhat.md
- Using Truffle: dev/getting-started/setup/truffle.md
- Using Foundry: dev/getting-started/setup/foundry.md
- dev/getting-started/contract-addresses.md
- Tutorials:
- dev/tutorials/index.md
- Accessing the Network:
- dev/tutorials/network-access/index.md
- dev/tutorials/network-access/transaction-finalization.md
- dev/tutorials/network-access/reliable-event-reading.md
- dev/tutorials/network-access/obtaining-revert-reason.md
- FTSO:
- dev/tutorials/ftso/index.md
- dev/tutorials/ftso/getting-data-feeds.md
- Reference Guides:
- dev/reference/index.md
- dev/reference/automatic-claiming.md
- dev/reference/explorers-and-indexers.md
- dev/reference/ftso.md
- dev/reference/network-config.md
- dev/reference/personal-delegation-account.md
- dev/reference/the-flaredrop.md
- dev/reference/wallets.md
- dev/external-resources.md
- dev/tools.md
- APIs:
- apis/index.md
- Smart Contracts API:
- apis/smart-contracts/index.md
- apis/smart-contracts/AddressUpdatable.md
- apis/smart-contracts/AddressUpdater.md
- apis/smart-contracts/CheckPointable.md
- apis/smart-contracts/ClaimSetupManager.md
- apis/smart-contracts/CleanupBlockNumberManager.md
- apis/smart-contracts/CloneFactory.md
- apis/smart-contracts/Delegatable.md
- apis/smart-contracts/FlareContractRegistry.md
- apis/smart-contracts/FlareDaemon.md
- apis/smart-contracts/Ftso.md
- apis/smart-contracts/FtsoManager.md
- apis/smart-contracts/FtsoRegistry.md
- apis/smart-contracts/FtsoRewardManager.md
- apis/smart-contracts/GovernanceSettings.md
- apis/smart-contracts/GovernanceVotePower.md
- apis/smart-contracts/Governed.md
- apis/smart-contracts/GovernedAndFlareDaemonized.md
- apis/smart-contracts/GovernedAtGenesis.md
- apis/smart-contracts/GovernedBase.md
- apis/smart-contracts/Inflation.md
- apis/smart-contracts/PriceSubmitter.md
- apis/smart-contracts/RevertErrorTracking.md
- apis/smart-contracts/VoterWhitelister.md
- apis/smart-contracts/VPContract.md
- apis/smart-contracts/VPToken.md
- apis/smart-contracts/WNat.md
- apis/smart-contracts/IClaimSetupManager.md
- apis/smart-contracts/IFlareContractRegistry.md
- apis/smart-contracts/IFlareDaemonize.md
- apis/smart-contracts/IFtso.md
- apis/smart-contracts/IFtsoGenesis.md
- apis/smart-contracts/IFtsoManager.md
- apis/smart-contracts/IFtsoManagerGenesis.md
- apis/smart-contracts/IFtsoRegistry.md
- apis/smart-contracts/IFtsoRegistryGenesis.md
- apis/smart-contracts/IFtsoRewardManager.md
- apis/smart-contracts/IGovernanceSettings.md
- apis/smart-contracts/IGovernanceVotePower.md
- apis/smart-contracts/IInflationGenesis.md
- apis/smart-contracts/IPriceSubmitter.md
- apis/smart-contracts/IVoterWhitelister.md
- apis/smart-contracts/IVPContractEvents.md
- apis/smart-contracts/IVPToken.md
- apis/smart-contracts/IWNat.md
- apis/smart-contracts/IIAddressUpdatable.md
- apis/smart-contracts/IIAddressUpdater.md
- apis/smart-contracts/IIClaimSetupManager.md
- apis/smart-contracts/IICleanable.md
- apis/smart-contracts/IIFtso.md
- apis/smart-contracts/IIFtsoManager.md
- apis/smart-contracts/IIFtsoRegistry.md
- apis/smart-contracts/IIFtsoRewardManager.md
- apis/smart-contracts/IIGovernanceVotePower.md
- apis/smart-contracts/IIInflationReceiver.md
- apis/smart-contracts/IIPriceSubmitter.md
- apis/smart-contracts/IITokenPool.md
- apis/smart-contracts/IIVoterWhitelister.md
- apis/smart-contracts/IIVPContract.md
- apis/smart-contracts/IIVPToken.md