As of 06-17-2024, this project has been archived and is no longer actively maintained. The contents of this repository have been merged into Autonomys Academy also available via Autonomys Academy website.
The Subnomicon is a knowledge base about the Subspace Protocol. Subnomicon provides a comprehensive overview of the current state of protocol, covering the following:
- Architecture Overview - The Subspace modular architecture.
- Advancing Blockchain - How Subspace advances the state of blockchain technology.
- Consensus Mechanism - How Subspace achieves consensus through its storage-based design.
- Network Architecture - How Subspace is structured as a decentralized network.
- Decoupled Execution - How Subspace separates consensus and computation.
The information in the Subnomicon is kept up-to-date with the live state of the Subspace Protocol which may not represent the final desired state. Subnomicon's purpose is to serve as living documentation that grows and evolves with the protocol.
If you have any additions or corrections, please submit a pull request.
If you would like to contribute, please check out the following materials and feel free to ask questions in our Discord
To ensure that your contributions include your name in the last_update
section of documentation files automatically, follow these steps to set up your local environment:
- At the root of your local repository clone, create a file named
.env
. - Inside the
.env
file, add the following line, replacing"Your Name"
with your actual name:
AUTHOR_NAME="Your Name"
- Save and close the
.env
file. This file will be used by the pre-commit hook to automatically insert your name into thelast_update
section of Markdown files.
The pre-commit package is used to run scripts before each commit automatically, allowing us to update the documentation's last_update
section seamlessly.
- Install pre-commit on your system. If you're using pip (Python's package manager), you can install it by running:
pip install pre-commit
-
Make sure the update_last_update.sh script is present in the scripts/ directory at the root of your repository and is executable. You may need to run
chmod +x scripts/update_last_update.sh
to make it executable. -
Run following command to set up the hook.
pre-commit install
With these steps completed, your local environment is set up to automatically update the last_update section of Markdown files with your name and the current date whenever you make a commit. This process helps maintain accurate documentation and attribution for contributions.