forked from forta-network/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
179 lines (174 loc) · 8.07 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
site_name: Forta Docs
nav:
- <strong>Receive Forta Alerts</strong>:
- Getting started: receive-forta-alerts.md
- Curated Feeds:
- Attack Detector Feed: attack-detector-feed.md
- Suspicious Events Feed: suspicious-events-feed.md
- Access real-time alerts with GraphQL:
- API Access: api.md
- GraphQL API reference: forta-api-reference/index.html
- Example use cases: api-example-use-cases.md
- Example queries & tutorials: api-examples-tutorials.md
- Access historical alerts with SQL:
- Luabase Access: luabase-access.md
- Example SQL queries & tutorials: luabase-examples-tutorials.md
- <strong>Build Detection Bots</strong>:
- Getting started: getting-started.md
- Build your first detection bot:
- 1) Quick start: quickstart.md
- 2) Testing your bot: testing.md
- 3) Deploying your bot: deploying.md
- 4) Subscribing to alerts: subscribing.md
- 5) Maintaining your bot: maintaining.md
- Best practices: best-practices.md
- Video tutorials: tutorials.md
- Detection bot wizard: wizard.md
- Bot development patterns:
- Protecting sensitive data: sensitive-data.md
- JWT authentication for bots: jwt-auth.md
- Private alerts: private-alerts.md
- Transaction simulation: tx-simulation.md
- Long running tasks: long-running-tasks.md
- Querying other chains: querying-chains.md
- Error monitoring: error-monitoring.md
- Advanced testing: advanced-testing.md
- Time series analysis: time-series-analysis.md
- Deploying machine learning models: deploying-ml-models.md
- Tools:
- Useful libraries: useful-libraries.md
- Javascript/Typescript SDK: sdk.md
- Python SDK: python.md
- CLI commands: cli.md
- forta.config.json: config.md
- Stake on your Bot: stake-on-detection-bot.md
- Bot developer contests:
- Compound Contest (10/20/2021): contest1-compound.md
- Aave Contest (11/3/2021): contest2-aave.md
- OpenZeppelin Contest (11/18/2021): contest3-oz.md
- Forta Contest (12/17/2021): contest4-forta.md
- Solace Contest (3/1/2022): contest5-solace.md
- Forta Contest 2 (4/27/2022): contest6-forta.md
- Forta Contest 3 (6/17/2022): contest7-forta.md
- Forta Contest 4 (8/31/2022): contest8-forta.md
- Forta Contest 5 (10/11/2022): contest9-forta.md
- Forta Contest 6 (11/8/2022): contest10-forta.md
- Integrating with Hardhat: hardhat.md
- <strong>Run a Scan Node</strong>:
- Quickstart: scanner-quickstart.md
- SLA Calculation: sla.md
- SLA API: sla-api.md
- Stake on your Scan Node: stake-on-scan-node.md
- Local Scan Node: scanner-local-mode.md
- Scan With Alchemy: alchemy-partnership.md
- <strong>Machine Learning on Forta</strong>:
- Intro to Machine Learning: ml-with-forta.md
- Machine Learning on Forta: ds-and-ml.md
- <strong>About Forta</strong>:
- What is Forta: what-is-forta.md
- FORT token: fort-token.md
- Stake Slashing:
- Slashing Policy: slashing-policy.md
- Creating a Slash Proposal: slashing-creating-proposal.md
- Governance: governance.md
- Machine Learning: ds-and-ml.md
- Smart contracts:
- Intro & Addresses: smart-contracts.md
- Components:
- Access: contracts/components/access/AccessManager.md
- Agents (Detection Bots):
- AgentRegistry: contracts/components/agents/AgentRegistry.md
- AgentRegistryCore: contracts/components/agents/AgentRegistryCore.md
- AgentRegistryEnable: contracts/components/agents/AgentRegistryEnable.md
- AgentRegistryEnumerable: contracts/components/agents/AgentRegistryEnumerable.md
- AgentRegistryMetadata: contracts/components/agents/AgentRegistryMetadata.md
- Dispatch:
- Dispatch: contracts/components/metatx/EIP712WithNonce.md
- MetaTx:
- EIP712WithNonce: contracts/components/dispatch/Dispatch.md
- Forwarder: docs/contracts/components/metatx/Forwarder.md
- Scanners:
- ScannerNodeVersion: contracts/components/scanners/ScannerNodeVersion.md
- ScannerRegistry: contracts/components/scanners/ScannerRegistry.md
- ScannerRegistryCore: contracts/components/scanners/ScannerRegistryCore.md
- ScannerRegistryEnable: contracts/components/scanners/ScannerRegistryEnable.md
- ScannerRegistryManaged: contracts/components/scanners/ScannerRegistryManaged.md
- ScannerRegistryMetadata: contracts/components/scanners/ScannerRegistryMetadata.md
- Staking:
- FortaStaking: contracts/components/staking/FortaStaking.md
- FortaStakingParameters: contracts/components/staking/FortaStakingParameters.md
- FortaStakingUtils: contracts/components/staking/FortaStakingUtils.md
- ISlashingExecutor: contracts/components/staking/ISlashingExecutor.md
- IStakeController: contracts/components/staking/IStakeController.md
- IStakeSubject: contracts/components/staking/IStakeSubject.md
- SlashingController: contracts/components/staking/SlashingController.md
- StakeSubject: contracts/components/staking/StakeSubject.md
- SubjectTypes: contracts/components/staking/SubjectTypes.md
- Utils:
- AccessManaged: contracts/components/utils/AccessManaged.md
- ForwardedContext: contracts/components/utils/ForwardedContext.md
- IVersioned: contracts/components/utils/IVersioned.md
- StateMachines: contracts/components/utils/StateMachines.md
- BaseComponentUpgradeable: contracts/components/BaseComponentUpgradeable.md
- Roles: contracts/components/Roles.md
- Errors: contracts/errors/GeneralErrors.md
- Token:
- Forta: contracts/token/Forta.md
- FortaBridgedPolygon: contracts/token/FortaBridgedPolygon.md
- FortaCommon: contracts/token/FortaCommon.md
- Tools:
- Distributions: contracts/tools/Distributions.md
- Security:
- Security Overview: security.md
- Design: security-design.md
- Development: security-develop.md
- Deployment: security-deploy.md
- Testing and Review: security-testing.md
- Maintenance: security-maintain.md
- How to contribute: contributing.md
- FAQ: faq.md
theme:
name: material
custom_dir: overrides
palette:
primary: black
accent: blue grey
logo: forta-logo.png
favicon: forta-logo.png
features:
- navigation.instant
- navigation.top
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.emoji:
emoji_generator: !!python/name:materialx.emoji.to_svg
emoji_index: !!python/name:materialx.emoji.twemoji
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
extra:
generator: false
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/FortaNetwork
name: Forta on Twitter
- icon: fontawesome/brands/discord
link: https://discord.gg/DUju5Dh4J9
name: Forta on Discord
- icon: fontawesome/brands/github
link: https://github.com/forta-network
name: Forta on Github
- icon: fontawesome/brands/youtube
link: https://www.youtube.com/channel/UC_jxKtYfj7iLn4hTpQmBcYA
name: Forta on YouTube
- icon: fontawesome/solid/rss
link: https://forta.org/blog/
name: Forta Blog
- icon: fontawesome/solid/envelope
link: mailto:[email protected]
extra_css:
- stylesheets/extra.css