A simple platform to track and explore Bitcoin Layer 2 projects. Browse through 100+ projects, filter by type and category, and view detailed information about each protocol.
- Find the project's logo image (PNG or SVG format)
- Save it in the
src/assets/data/img/folder - Name it something simple like
project-name.png
- Open the file
src/assets/data/layers-data.json - Find the end of the file (before the closing
]) - Add a comma after the last project entry
- Add your new project using this format:
{
"Name": "Your Project Name",
"Category": "Zk-rollup",
"Network Stage": "Mainnet",
"Description": "What does this project do?",
"Native Token": "TOKEN",
"Founded": "2023",
"Image": "your-project-logo.png",
"Type": "Rollup",
"Link": "https://yourproject.com"
}- Name: The project's name
- Category: Choose from: "Zk-rollup", "Sidechain", "Virtual UTXOs", "Anchored Chain", etc.
- Network Stage: "Mainnet", "Testnet"
- Image: The filename of the logo you added (e.g., "project-logo.png")
- Type: Choose from: "Bitcoin Native", "Rollup", "Sidechain", "Meta Protocols", "Other"
- Description: A longer description of what the project does
- Native Token: The project's token symbol (if it has one)
- Founded: The year the project was founded
- Link: The project's website URL
{
"Name": "Bitcoin Layer 2 Example",
"Category": "Zk-rollup",
"Network Stage": "Testnet",
"Description": "A Bitcoin Layer 2 solution that enables fast and cheap transactions using zero-knowledge proofs.",
"Native Token": "BL2E",
"Founded": "2023",
"Image": "bitcoin-layer2-example.png",
"Type": "Rollup",
"Link": "https://example.com"
}- Install dependencies:
pnpm install- Start the development server:
pnpm run dev- Open your browser to
http://localhost:5173
Built with ❤️ for the Bitcoin Layer 2 ecosystem