Skip to content

Commit 793b00c

Browse files
committed
fix: 🐛 fix sidebar items padding
1 parent 2fa7359 commit 793b00c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+14
-429
lines changed

Diff for: docs/learn/delivery-acknowledgements.md

-9
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ tags:
88
sidebarCollapsible: false
99
---
1010

11-
import Author from '@site/src/components/Author';
12-
1311
## Overview
1412

1513
When a client signs a message, it creates a Delivery Acknowledgement that confirms a successful service computation delivery by a node. This [process](#node-vs-client-process-flow) ensures the immutability and integrity of the message (the client cannot change or reverse it) and also includes metadata about the commodities consumed by the node during the service execution. This metadata helps in calculating the reward that the node will receive.
@@ -75,10 +73,3 @@ Learn more about it in the [Content Addressing](/docs/learn/the-network#content-
7573
## Delivery Acknowledgement Customization
7674

7775
A Service can have a custom configuration to specify how Delivery Acknowledgements should behave or work. Patterns and conventions should be expected to emerge from the Service builder community and best practices.
78-
79-
<Author
80-
name="Helder Oliveira"
81-
image="https://github.com/heldrida.png"
82-
title="Software Developer + DX"
83-
url="https://github.com/heldrida"
84-
/>

Diff for: docs/learn/index.md

-9
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ tags:
1010
- whitepaper
1111
---
1212

13-
import Author from '@site/src/components/Author';
14-
1513
## Introduction
1614

1715
The Core of Fleek Network offers a foundational layer to enable developers to build and deploy Edge Services efficiently. It abstracts away the development complexities of consensus, cryptography, storage and peer-to-peer networking, etc, to simplify things conceptually. It frees developers and teams to focus on what matters the most to reach business goals.
@@ -47,10 +45,3 @@ When a client requests a service, the protocol determines the best route to the
4745
Once the computation is successful, the data streaming routes to the client. On-client request fulfillment, a proof of delivery is generated containing cryptographically secured metadata about the original request, any parts involved and the resources consumed.
4846

4947
The Delivery Acknowledgements are stored locally in the participating node memory pools, rolled up to the protocol consensus consistently throughout the epoch (about 24h). This agreement is formed by a random committee of any healthy Nodes that use the information provided to reward the Nodes fairly.
50-
51-
<Author
52-
name="Helder Oliveira"
53-
image="https://github.com/heldrida.png"
54-
title="Software Developer + DX"
55-
url="https://github.com/heldrida"
56-
/>

Diff for: docs/learn/services.md

-9
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ tags:
1818
- toolkit
1919
---
2020

21-
import Author from '@site/src/components/Author';
22-
2321
## Overview
2422

2523
A Fleek Network Service is a modular application that runs on nodes and allows users to perform well-defined functions or some specific tasks. Services are scalable and performant due to edge computation and networking features provided by the core principles of the network.
@@ -137,10 +135,3 @@ This causes long finalization times and a reduction in block speeds on Layer-1,
137135
In Fleek Network, a service builder can offer an alternative to a Layer-2 sequencer, that is decentralized and more reliable by batching and posting to Layer-1 settlement contracts. With equivalent Layer-2 settlement times.
138136

139137
An additional benefit can be enabling end-user gasless transaction submissions by disregarding a Layer-2 gas token to submit transactions to Layer-1.
140-
141-
<Author
142-
name="Helder Oliveira"
143-
image="https://github.com/heldrida.png"
144-
title="Software Developer + DX"
145-
url="https://github.com/heldrida"
146-
/>

Diff for: docs/learn/the-network.md

-8
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ tags:
1717
sidebarCollapsible: false
1818
---
1919

20-
import Author from '@site/src/components/Author';
2120
import Ports from '../../guides/partials/_ports.mdx';
2221

2322
## Protocol
@@ -401,10 +400,3 @@ The Fleek Network binary process is the program that's been compiled down to mac
401400
A JSON-RPC (JavaScript Object Notation Remote Procedure Call) is a protocol that enables communication between client and server applications. The [Fleek Network JSON-RPC](https://fleek-network.github.io/lightning/api-documentation/?202308171515) API enables JSON-RPC interaction with Fleek Network Node.
402401

403402
Fleek Network JSON-RPC API reference documentation is available at [https://fleek-network.github.io/lightning/api-documentation](https://fleek-network.github.io/lightning/api-documentation).
404-
405-
<Author
406-
name="Helder Oliveira"
407-
image="https://github.com/heldrida.png"
408-
title="Software Developer + DX"
409-
url="https://github.com/heldrida"
410-
/>

Diff for: docs/node/analyzing-logs.md

-8
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ tags:
77
- diagnostic
88
---
99

10-
import Author from '@site/src/components/Author';
1110

1211
## Analyzing Logs
1312

@@ -86,10 +85,3 @@ In any case, you can use the Docker command to analyze the logs. If you have sti
8685
sudo docker logs -f lightning-node
8786
```
8887
:::
89-
90-
<Author
91-
name="Helder Oliveira"
92-
image="https://github.com/heldrida.png"
93-
title="Software Developer + DX"
94-
url="https://github.com/heldrida"
95-
/>

Diff for: docs/node/health-check.md

-9
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ tags:
88
- node status
99
---
1010

11-
import Author from '@site/src/components/Author';
12-
1311
## TL;DR: Run the command
1412

1513
A script is available to do and provide a health check overview:
@@ -104,10 +102,3 @@ If the request is successful, you should get the result `pong` as follows:
104102
```
105103

106104
Any other response, such as errors determine that the node is not healthy.
107-
108-
<Author
109-
name="Helder Oliveira"
110-
image="https://github.com/heldrida.png"
111-
title="Software Developer + DX"
112-
url="https://github.com/heldrida"
113-
/>

Diff for: docs/node/index.md

-10
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ tags:
77
- build
88
---
99

10-
import Author from '@site/src/components/Author';
11-
1210
## Overview
1311

1412
This section provides instructions to help you build a **Fleek Network Node**, it's aimed at everybody willing to learn and cultivate knowledge as a node operator.
@@ -40,11 +38,3 @@ While we do our best to provide the clearest instructions, there's always space
4038
:::
4139

4240
**Ready?** Start by checking the [server requirements](/docs/node/requirements)
43-
44-
45-
<Author
46-
name="Helder Oliveira"
47-
image="https://github.com/heldrida.png"
48-
title="Software Developer + DX"
49-
url="https://github.com/heldrida"
50-
/>

Diff for: docs/node/install.md

-8
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ tags:
1818
- manual
1919
---
2020

21-
import Author from '@site/src/components/Author';
2221
import GitCloneOptions from '../../guides/partials/_git-clone-options.mdx';
2322
import CreateAUser from '../../guides/partials/_create-a-user.mdx';
2423
import SetUserPathInConfigToml from '../../guides/partials/_set-user-path-config-toml.mdx';
@@ -708,10 +707,3 @@ Learn how to manage the Systemd Service by reading the section [systemd service]
708707
## Frequently Used Commands (Quick Reference)
709708
710709
A quick reference of the most Frequently Used Commands are available for [Native](/references/Lightning%20CLI/frequently-used-commands-for-native-setup) and [Docker](/references/Docker/frequently-used-commands-for-docker-setup) setups. If you'd like a more in depth explanation of the commands, check the [health check](/docs/node/health-check), [analyzing logs](/docs/node/analyzing-logs), [systemd service](/docs/node/systemd-service) and [guides](/guides) sections separately.
711-
712-
<Author
713-
name="Helder Oliveira"
714-
image="https://github.com/heldrida.png"
715-
title="Software Developer + DX"
716-
url="https://github.com/heldrida"
717-
/>

Diff for: docs/node/lightning-cli.md

-8
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ tags:
99
- lgtn
1010
---
1111

12-
import Author from '@site/src/components/Author';
1312
import InfoNetworkParticipation from '../../guides/partials/_info_network_participation.mdx';
1413
import TipShutdownGracefully from '../../guides/partials/_tip_shutdown_gracefully.mdx';
1514
import WarningPreventPrematureShutdown from '../../guides/partials/_warning_prevent_premature_shutdown.mdx';
@@ -167,10 +166,3 @@ Options:
167166
-v... Increases the level of verbosity (the max level is -vvv)
168167
-h, --help Print help
169168
```
170-
171-
<Author
172-
name="Helder Oliveira"
173-
image="https://github.com/heldrida.png"
174-
title="Software Developer + DX"
175-
url="https://github.com/heldrida"
176-
/>

Diff for: docs/node/requirements.md

-8
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ tags:
88
sidebarCollapsible: false
99
---
1010

11-
import Author from '@site/src/components/Author';
1211
import Ports from '../../guides/partials/_ports.mdx';
1312

1413
## Requirements
@@ -57,10 +56,3 @@ The recommended number of CPU cores is a minimum of 4 with a minimum CPU speed o
5756
### Memory
5857

5958
A minimum of 32 GB of memory (RAM) is required and a reasonable amount of disk space for the installation and running processes, which at the minimum should be around 20 GB.
60-
61-
<Author
62-
name="Helder Oliveira"
63-
image="https://github.com/heldrida.png"
64-
title="Software Developer + DX"
65-
url="https://github.com/heldrida"
66-
/>

Diff for: docs/node/systemd-service.md

-8
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ tags:
99
- manage
1010
---
1111

12-
import Author from '@site/src/components/Author';
1312
import WarningPreventPrematureShutdown from '../../guides/partials/_warning_prevent_premature_shutdown.mdx';
1413
import TipShutdownGracefully from '../../guides/partials/_tip_shutdown_gracefully.mdx';
1514
import InfoNetworkParticipation from '../../guides/partials/_info_network_participation.mdx';
@@ -156,10 +155,3 @@ If you have installed or set up the Service as a Docker Container, prefix the se
156155
sudo systemctl status docker-lightning
157156
```
158157
:::
159-
160-
<Author
161-
name="Helder Oliveira"
162-
image="https://github.com/heldrida.png"
163-
title="Software Developer + DX"
164-
url="https://github.com/heldrida"
165-
/>

Diff for: docs/node/testnet-onboarding.md

-8
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ tags:
1111
sidebarCollapsible: false
1212
---
1313

14-
import Author from '@site/src/components/Author';
1514
import InfoNetworkParticipation from '../../guides/partials/_info_network_participation.mdx';
1615

1716
:::warning
@@ -184,10 +183,3 @@ However, if you wish to learn about key management, you can refer to the [instru
184183
### Does Nodes require to have SGX chips?
185184

186185
Phase {4} testnet includes enhancements that require node features, such as [SGX chips](https://en.wikipedia.org/wiki/Software_Guard_Extensions). This enhances the network's capabilities and expands its service and use cases, as described in the [Genesis Node Operator Application](https://blog.fleek.network/post/genesis-node-operator-application/). For more information check the [following list of hardware](https://github.com/ayeks/SGX-hardware) which supports Intel SGX - Software Guard Extensions.
187-
188-
<Author
189-
name="Helder Oliveira"
190-
image="https://github.com/heldrida.png"
191-
title="Software Developer + DX"
192-
url="https://github.com/heldrida"
193-
/>

Diff for: guides/Node Operators/getting-started-guide.md

-8
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ tags:
2020
<!--
2121
The following import is intentional (see partial <CheckoutCommitWarning />)
2222
-->
23-
import Author from '@site/src/components/Author';
2423
import GitCloneOptions from '../partials/_git-clone-options.mdx';
2524
import InfoNetworkParticipation from '../../guides/partials/_info_network_participation.mdx';
2625

@@ -266,10 +265,3 @@ Furthermore, we guide you through a step-by-step installation of the network nod
266265
Finally, we do a quick health check to confirm the status of our node.
267266

268267
Discover more about the project by [watching/contributing on GitHub](https://github.com/fleek-network/lightning), following us on [Twitter](https://twitter.com/fleek_net), and joining [our community Discord](https://discord.gg/fleek) for any updates.
269-
270-
<Author
271-
name="Helder Oliveira"
272-
image="https://github.com/heldrida.png"
273-
title="Software Developer + DX"
274-
url="https://github.com/heldrida"
275-
/>

Diff for: guides/Node Operators/how-to-manage-logfiles.md

-9
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ tags:
1313

1414
![How to manage log files](./assets/how-to-manage-log-files.png?202310271441)
1515

16-
import Author from '@site/src/components/Author';
17-
1816
## Introduction
1917

2018
The Fleek Network node streams text messages to the standard output and error in Linux. Given that disk space is a limited resource for most systems, the number of text data can be a cause of concern. Managing the file sizes by means of rotation and compression can help.
@@ -292,10 +290,3 @@ The guide starts by warning us about the stream text messages that the Fleek Net
292290
To help control it, the journald is introduced, by explaining its role as a centralized message system, that runs alongside the application logs. Then, have it configured to limit the maximum file size, amongst other system-wide settings.
293291

294292
Finally, logrotate is discussed in helping us manage the Fleek Network Lightning application log files by setting it to automatically compress, rename, remove logs for the system admin convenience and saving system's resources.
295-
296-
<Author
297-
name="Helder Oliveira"
298-
image="https://github.com/heldrida.png"
299-
title="Software Developer + DX"
300-
url="https://github.com/heldrida"
301-
/>

Diff for: guides/Node Operators/managing-the-keystore.md

-8
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ tags:
1616

1717
![Managing the keystore](./assets/managing-the-keystore.png?202311181211)
1818

19-
import Author from '@site/src/components/Author';
2019
import RestoreKeystore from '../partials/_restore-keystore.mdx';
2120

2221
## Introduction
@@ -439,10 +438,3 @@ In the future, we'll introduce more advanced topics that will help you improve t
439438
While we do our best to provide the clearest instructions, there's always space for improvement, therefore feel free to make any contributions by messaging us on our [Discord](https://discord.gg/fleek) or by opening a [PR](https://github.com/fleek-network) in any of our repositories.
440439

441440
Discover more about the project by [watching/contributing on Github](https://github.com/fleek-network/lightning), following us on [Twitter](https://twitter.com/fleek_net), and joining [our community Discord](https://discord.gg/fleek) for all the best updates!
442-
443-
<Author
444-
name="Helder Oliveira"
445-
image="https://github.com/heldrida.png"
446-
title="Software Developer + DX"
447-
url="https://github.com/heldrida"
448-
/>

Diff for: guides/Node Operators/running-a-node-in-docker.md

-8
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ tags:
1717
<!--
1818
The following import is intentional (see partial <CheckoutCommitWarning />)
1919
-->
20-
import Author from '@site/src/components/Author';
2120
import GitCloneOptions from '../partials/_git-clone-options.mdx';
2221
import CreateAUser from '../../guides/partials/_create-a-user.mdx';
2322

@@ -441,10 +440,3 @@ We guided you through the initial installation steps, and how to build a [Docker
441440
While we do our best to provide the clearest instructions, there's always space for improvement, therefore feel free to make any contributions by messaging us on our [Discord](https://discord.gg/fleek) or by opening a [PR](https://github.com/fleek-network) in any of our repositories.
442441

443442
Discover more about the project by [watching/contributing on Github](https://github.com/fleek-network/lightning), following us on [Twitter](https://twitter.com/fleek_net), and joining [our community Discord](https://discord.gg/fleek) for all the best updates!
444-
445-
<Author
446-
name="Helder Oliveira"
447-
image="https://github.com/heldrida.png"
448-
title="Software Developer + DX"
449-
url="https://github.com/heldrida"
450-
/>

Diff for: guides/Node Operators/transfering-setup-ownership.md

-8
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ tags:
2121
<!--
2222
The following import is intentional (see partial <CheckoutCommitWarning />)
2323
-->
24-
import Author from '@site/src/components/Author';
2524
import CreateAUser from '../../guides/partials/_create-a-user.mdx';
2625
import FindAndReplaceConfigWithUserPaths from '../../guides/partials/_find-and-replace-config-with-user-paths.mdx';
2726

@@ -350,10 +349,3 @@ Jumped through topics of Systemd service that helps the user manage the service
350349
We've gone through the step-by-step process to migrate the Fleek Network CLI and Systemd service setup from one user to the other. To keep it short, we decided to go with the use-case of where the migration happens between a **root** user and a **sudoer**.
351350

352351
Discover more about the project by [watching/contributing on GitHub](https://github.com/fleek-network/lightning), following us on [Twitter](https://twitter.com/fleek_net), and joining [our community Discord](https://discord.gg/fleek) for any updates.
353-
354-
<Author
355-
name="Helder Oliveira"
356-
image="https://github.com/heldrida.png"
357-
title="Software Developer + DX"
358-
url="https://github.com/heldrida"
359-
/>

Diff for: guides/Node Operators/updating-lightning.md

-8
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ tags:
1616

1717
![Update Lightning](./assets/updating-lightning.png?202309191740)
1818

19-
import Author from '@site/src/components/Author';
2019
import CheckoutCommitWarning from '../../guides/partials/_checkout-commit-warning.mdx';
2120
import WarningPreventPrematureShutdown from '../../guides/partials/_warning_prevent_premature_shutdown.mdx';
2221
import TipShutdownGracefully from '../../guides/partials/_tip_shutdown_gracefully.mdx';
@@ -359,10 +358,3 @@ We have looked into how to pull the changes via Git, and discussed that contribu
359358
To complete, provided a step-by-step walkthrough the installation and setup process for the Fleek Network Lightning CLI and Systemd service.
360359

361360
Discover more about the project by [watching/contributing on GitHub](https://github.com/fleek-network/lightning), following us on [Twitter](https://twitter.com/fleek_net), and joining [our community Discord](https://discord.gg/fleek) for any updates.
362-
363-
<Author
364-
name="Helder Oliveira"
365-
image="https://github.com/heldrida.png"
366-
title="Software Developer + DX"
367-
url="https://github.com/heldrida"
368-
/>

Diff for: references/Docker/build-and-run-in-docker.md

-8
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ tags:
1111
- container
1212
---
1313

14-
import Author from '@site/src/components/Author';
1514
import GitCloneOptions from '../../guides/partials/_git-clone-options.mdx';
1615

1716
## Clone the source code locally
@@ -159,10 +158,3 @@ To view the logs of a Docker container in real time, use the following command:
159158
```sh
160159
sudo docker logs -f lightning-node
161160
```
162-
163-
<Author
164-
name="Helder Oliveira"
165-
image="https://github.com/heldrida.png"
166-
title="Software Developer + DX"
167-
url="https://github.com/heldrida"
168-
/>

Diff for: references/Docker/frequently-used-commands-for-docker-setup.md

-9
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ tags:
99
- docker
1010
---
1111

12-
import Author from '@site/src/components/Author';
13-
1412
## TL;DR
1513

1614
Most assisted processes are available through the `get.fleek.network` command, where you can select to install, do a health check amongst others.
@@ -184,10 +182,3 @@ sudo docker stop <CONTAINER ID or CONTAINER NAME>
184182
```sh
185183
sudo docker rm <CONTAINER ID or CONTAINER NAME>
186184
```
187-
188-
<Author
189-
name="Helder Oliveira"
190-
image="https://github.com/heldrida.png"
191-
title="Software Developer + DX"
192-
url="https://github.com/heldrida"
193-
/>

0 commit comments

Comments
 (0)