Compare commits

..

No commits in common. "main" and "main_newbranch" have entirely different histories.

87 changed files with 42038 additions and 3502 deletions

14
.gitignore vendored
View File

@ -18,17 +18,9 @@
npm-debug.log* npm-debug.log*
yarn-debug.log* yarn-debug.log*
yarn-error.log* yarn-error.log*
bun.lockb
bun.lock
yarn.lock all_files_text.txt
build.sh /test
build_dev.sh
develop.sh
docusaurus.config.ts /temp
sidebars.ts
tsconfig.json

View File

@ -1,26 +1,37 @@
<h1>ThreeFold DePIN Board</h1> <h1>ThreeFold DePIN Board</h1>
<h2>Table of Contents</h2>
to run in development mode - [Introduction](#introduction)
- [Steps](#steps)
- [URL](#url)
```bash ---
#first time to get hero
curl https://raw.githubusercontent.com/freeflowuniverse/herolib/refs/heads/development/install_hero.sh > /tmp/install_hero.sh
bash /tmp/install_hero.sh
#DONT FORGET TO START A NEW SHELL (otherwise the paths will not be set)
hero docusaurus -u https://git.ourworld.tf/tfgrid/docs_depin -d ## Introduction
```
to push This repository contains the code to deploy the ThreeFold DePIN Board.
```bash ## Steps
hero docusaurus -u https://git.ourworld.tf/tfgrid/docs_depin -bp -update
#push for development: - Install
hero docusaurus -u https://git.ourworld.tf/tfgrid/docs_depin -bpd -update ```
``` bash install.sh
```
- Run locally
```
bash develop.sh
```
- Push change online on production website
```
bash build.sh
```
- Push change online on stating website
```
bash build-dev.sh
```
## URL ## URL
- The production website is available at `https://threefold.info/depin` - The production website is available at `https://threefold.info/depin`
- The staging website is available at `https://threefold.info/depindev`

3
babel.config.js Normal file
View File

@ -0,0 +1,3 @@
module.exports = {
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
};

22
build-dev.sh Executable file
View File

@ -0,0 +1,22 @@
#!/bin/bash
set -ex
script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "${script_dir}"
export PATH=${BASE}/node_modules/.bin:$PATH
echo "Docs directory: $script_dir"
# Change baseUrl to '/depindev/'
sed -i "s|/depin/|/depindev/|g" docusaurus.config.ts ./src/pages/index.tsx
#bun build
#bun ${script_dir}/node_modules/.bin/docusaurus build
pnpm build
rsync -rv --delete ${script_dir}/build/ root@info.ourworld.tf:/root/hero/www/info/depindev
# Change baseUrl to '/depin/'
sed -i "s|/depindev/|/depin/|g" docusaurus.config.ts ./src/pages/index.tsx

View File

@ -3,20 +3,14 @@
set -ex set -ex
script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "$(script_dir}" cd "${script_dir}"
export PATH=${BASE}/node_modules/.bin:$PATH
echo "Docs directory: $script_dir" echo "Docs directory: $script_dir"
cd /Users/despiegk/hero/var/docusaurus #bun build
#bun ${script_dir}/node_modules/.bin/docusaurus build
pnpm build
export PATH=/tmp/docusaurus_build/node_modules/.bin:${HOME}/.bun/bin/:$PATH rsync -rv --delete ${script_dir}/build/ root@info.ourworld.tf:/root/hero/www/info/depin
rm -rf /Users/despiegk/hero/var/docusaurus/build/
. /Users/despiegk/.zprofile
bun docusaurus build
mkdir -p
echo SYNC TO
rsync -rv --delete /Users/despiegk/hero/var/docusaurus/build/ /

View File

@ -1,45 +0,0 @@
{
"style": "dark",
"links": [
{
"title": "Overview",
"items": [
{
"label": "DePIN Boards",
"href": "/docs/depin_board"
},
{
"label": "DePIN Charts",
"href": "/docs/depin_6dchart"
}
]
},
{
"title": "Community",
"items": [
{
"label": "Feedback",
"to": "/docs/feedback"
},
{
"label": "Gitea Repo",
"href": "https://git.ourworld.tf/tfgrid/info_docs_depin"
}
]
},
{
"title": "Links",
"items": [
{
"label": "ThreeFold.io",
"href": "https://threefold.io"
},
{
"label": "Dashboard",
"href": "https://dashboard.grid.tf"
}
]
}
],
"copyright": "Copyright © 2025 ThreeFold"
}

View File

@ -1,16 +0,0 @@
{
"title": "DePIN Projects",
"tagline": "Navigate the rapidly evolving landscape of Decentralized Physical Infrastructure Networks (DePIN)",
"favicon": "img/favicon_depin.png",
"url": "https://info.ourworld.tf",
"url_home": "docs/introduction",
"baseUrl": "/depin/",
"image": "img/ourworld_depin.png",
"metadata": {
"description": "Navigate the rapidly evolving landscape of Decentralized Physical Infrastructure Networks (DePIN).",
"image": "https://info.ourworld.tf/img/ourworld_depin.png",
"title": "Introduction | DePIN Projects"
},
"buildDest": ["root@info.ourworld.tf:/root/hero/www/info/depin"],
"buildDestDev": ["root@info.ourworld.tf:/root/hero/www/infodev/depin"]
}

View File

@ -1,16 +0,0 @@
{
"title": "DePIN Projects",
"items": [
{
"type": "docSidebar",
"sidebarId": "tutorialSidebar",
"position": "left",
"label": "Docs"
},
{
"href": "https://git.ourworld.tf/tfgrid/info_docs_depin",
"label": "Gitea",
"position": "right"
}
]
}

View File

@ -1,16 +1,12 @@
#!/bin/bash #!/bin/bash
set -e set -ex
script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "${script_dir}" cd "${script_dir}"
echo "Docs directory: $script_dir" echo "Docs directory: $script_dir"
cd ~/hero/var/docusaurus export NODE_OPTIONS=--openssl-legacy-provider
export PATH=/tmp/docusaurus_build/node_modules/.bin:${HOME}/.bun/bin/:$PATH npm run start -- --host 0.0.0.0
. /Users/despiegk/.zprofile
bun run start -p 3100

View File

@ -1,135 +0,0 @@
---
title: DePIN 6D Charts
description: Detailed information about Akash Network
sidebar_position: 3
---
import RadarChart from '@site/src/components/RadarChart';
# DePIN 6D Charts
The DePIN 6D Charts page serves as a comprehensive resource for comparing decentralized physical infrastructure networks (DePIN) across a wide range of sectors. Featuring 6-dimension radar charts, this page visually highlights the strengths and unique attributes of leading DePIN projects, enabling users to easily analyze and contrast their capabilities.
Whether you're exploring compute, storage, wireless, energy, or other niche networks, these charts provide valuable insights into the decentralized ecosystems shaping the future of infrastructure. Dive in to discover how these innovative projects stack up and contribute to the evolving DePIN landscape.
## Compute Networks
<RadarChart
projectData={[
{ name: 'Render Network', values: [80, 90, 70, 60, 50, 70] }, // GPU-focused, hybrid ownership
{ name: 'Akash Network', values: [95, 95, 85, 80, 60, 75] }, // Fully decentralized, Kubernetes-based
{ name: 'Golem Network', values: [90, 90, 75, 70, 55, 80] }, // General-purpose, Ethereum-based
{ name: 'iExec', values: [85, 85, 70, 65, 50, 75] }, // dApp-focused, Ethereum-based
{ name: 'Flux', values: [90, 95, 85, 80, 70, 85] }, // Strong community, custom blockchain
{ name: 'Internet Computer (ICP)', values: [95, 90, 80, 75, 65, 90] }, // Web3 hosting, custom blockchain
]}
/>
---
## Storage Networks
<RadarChart
projectData={[
{ name: 'Filecoin', values: [95, 95, 90, 85, 70, 85] }, // Strong incentives, IPFS-based
{ name: 'Arweave', values: [90, 90, 85, 80, 65, 90] }, // Permanent storage, custom blockchain
{ name: 'Storj', values: [85, 85, 80, 75, 60, 80] }, // S3-compatible, Ethereum-based
{ name: 'Sia', values: [80, 80, 75, 70, 55, 75] }, // Affordable, custom blockchain
{ name: 'Crust Network', values: [90, 90, 85, 80, 70, 85] }, // Web3-focused, Substrate-based
]}
/>
---
## Wireless Networks
<RadarChart
projectData={[
{ name: 'Helium', values: [90, 70, 85, 60, 80, 75] }, // IoT-focused, LoRaWAN
{ name: 'Pollum', values: [85, 65, 80, 55, 75, 70] }, // 5G-focused, Helium-based
{ name: 'Nodle', values: [90, 80, 75, 70, 65, 80] }, // Bluetooth-based, IoT-focused
{ name: 'World Mobile', values: [80, 70, 85, 65, 60, 85] }, // Mobile-focused, Cardano-based
{ name: 'Althea', values: [85, 75, 70, 80, 70, 75] }, // Pay-as-you-go, Ethereum-based
]}
/>
---
## Energy Networks
<RadarChart
projectData={[
{ name: 'Power Ledger', values: [80, 75, 85, 70, 65, 80] }, // Peer-to-peer energy trading
{ name: 'Energy Web', values: [85, 80, 90, 75, 70, 85] }, // Decentralized energy grid
{ name: 'Grid+', values: [75, 70, 80, 65, 60, 75] }, // Energy management, Ethereum-based
{ name: 'SunContract', values: [90, 85, 75, 80, 70, 85] }, // Green energy, Ethereum-based
]}
/>
---
## Sensor Networks
<RadarChart
projectData={[
{ name: 'IoTeX', values: [90, 90, 85, 80, 75, 85] }, // Privacy-focused, IoT devices
{ name: 'Hivemapper', values: [85, 70, 80, 75, 70, 80] }, // Mapping-focused, Solana-based
{ name: 'WeatherXM', values: [80, 75, 70, 65, 60, 75] }, // Weather data, Ethereum-based
{ name: 'DIMO', values: [90, 85, 80, 75, 70, 85] }, // Vehicle data, Ethereum-based
]}
/>
---
## Mobility Networks
<RadarChart
projectData={[
{ name: 'Carv', values: [85, 85, 80, 75, 70, 80] }, // Vehicle data sharing
{ name: 'Drife', values: [80, 80, 75, 70, 65, 75] }, // Ride-hailing, Ethereum-based
{ name: 'Arcade City', values: [85, 80, 75, 70, 65, 80] }, // Ride-sharing, Ethereum-based
]}
/>
---
## Miscellaneous DePIN Projects
<RadarChart
projectData={[
{ name: 'Livepeer', values: [90, 90, 85, 80, 75, 85] }, // Video streaming, Ethereum-based
{ name: 'Theta Network', values: [85, 70, 80, 75, 70, 80] }, // Video delivery, Ethereum-based
{ name: 'Audius', values: [80, 75, 70, 65, 60, 75] }, // Music streaming, Ethereum-based
{ name: 'Arbol', values: [90, 85, 80, 75, 70, 85] }, // Weather data for insurance
{ name: 'Silent Notary', values: [85, 80, 75, 70, 65, 80] }, // Data notarization
{ name: 'Morpheus', values: [90, 85, 80, 75, 70, 85] }, // Privacy-preserving infrastructure
]}
/>
---
## Emerging DePIN Projects
<RadarChart
projectData={[
{ name: 'Aethir', values: [90, 90, 85, 80, 75, 85] }, // GPU cloud for AI
{ name: 'Meson Network', values: [85, 85, 80, 75, 70, 80] }, // Bandwidth sharing
{ name: 'KYVE', values: [80, 80, 75, 70, 65, 75] }, // Data validation, Cosmos-based
{ name: 'Spheron Network', values: [90, 85, 80, 75, 70, 85] }, // Web3 hosting
{ name: 'Wicrypt', values: [85, 80, 75, 70, 65, 80] }, // WiFi sharing
{ name: 'ThreeFold', values: [95, 95, 90, 85, 80, 90] }, // Decentralized cloud infrastructure
]}
/>
---
## Experimental and Niche DePIN Projects
<RadarChart
projectData={[
{ name: 'SpaceChain', values: [85, 70, 80, 75, 70, 80] }, // Satellite infrastructure
{ name: 'SmartMesh', values: [80, 85, 75, 70, 65, 80] }, // Mesh networking
{ name: 'Elastos', values: [90, 85, 80, 75, 70, 85] }, // Decentralized internet OS
{ name: 'Autonomys', values: [85, 80, 75, 70, 65, 80] }, // Blockchain history storage
]}
/>

View File

@ -3,117 +3,113 @@ sidebar_position: 2
description: DePIN Board by Category description: DePIN Board by Category
--- ---
# DePIN Boards # DePIN Board
The DePIN Boards provide an organized overview of various DePIN projects, categorized by their primary focus areas, such as compute, storage, wireless, energy, sensor, and mobility networks, among others. The DePIN Board provides an organized overview of various DePIN projects, categorized by their primary focus areas, such as compute, storage, wireless, energy, sensor, and mobility networks, among others.
The purpose of those boards is to provide educational and informational content only. This project is made on a best effort basis. If you have any feedback, please let us know by writing an [issue on our Gitea instance](https://git.ourworld.tf/tfgrid/info_docs_depin). The purpose of this board is to provide educational and informational content only. If you have any feedback, please let us know by writing an [issue on our Gitea instance](https://git.ourworld.tf/tfgrid/info_docs_depin).
> To learn more about a specific project, click on the project name in the leftmost column. > To learn more about a specific project, click on the project name in the leftmost column.
## Compute Networks ## Compute Networks
| Project Name | Infrastructure Ownership | Hardware Requirements | Software Stack | Open Source | Docker Support | ThreeFold Compatible | Notes | | Project Name | Infrastructure Ownership | Hardware Requirements | Software Stack | Open Source | Docker Support | ThreeFold Grid Compatible | Notes |
|--------------------|--------------------------------|--------------------------------------------------------------------------------------------------------------------|----------------------------------------------------|-------------|----------------|---------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| |--------------------|--------------------------------|--------------------------------|------------------------------|-------------|----------------|---------------------------|-----------------------------------------------------------------------|
| [Render Network](./depin_specs/compute_networks/render_network.md) | Decentralized | NVIDIA GPU, RAM, Strong Network Connectivity, SSDs | CUDA | Yes | Yes | Yes | GPU power sharing platform. | | [Render Network](./depin_specs/compute_networks/render_network.md) | Hybrid (Owned + Decentralized) | GPUs | Ethereum, IPFS | Yes | Yes | Yes | Focused on GPU rendering for 3D and AI workloads. |
| [Akash Network](./depin_specs/compute_networks/akash_network.md) | Fully Decentralized | GPU, RAM, SSDs, Storage | Provider Software (Kubernetes Cluster Options) | Yes | Yes | Yes | Purpose-built for public utility. | | [Akash Network](./depin_specs/compute_networks/akash_network.md) | Fully Decentralized | Standard servers | Kubernetes, Cosmos SDK | Yes | Yes | Yes | Decentralized cloud computing with competitive pricing. |
| [Golem Network](./depin_specs/compute_networks/golem_network.md) | Decentralized | CPU, RAM, reliable OS, SSD, GPU | Ethereum, Docker | Yes | Yes | Yes | Computing power sharing platform. | | [Golem Network](./depin_specs/compute_networks/golem_network.md) | Fully Decentralized | GPUs, standard servers | Ethereum, Docker | Yes | Yes | Yes | Decentralized compute power for general-purpose tasks. |
| [iExec](./depin_specs/compute_networks/iexec.md) | Decentralized | VM with RAM, CPU | Ethereum, Docker | Yes | Yes | Yes | Decentralized cloud computing for dApps. | | [iExec](./depin_specs/compute_networks/iexec.md) | Fully Decentralized | GPUs, standard servers | Ethereum, Docker | Yes | Yes | Yes | Decentralized cloud computing for dApps. |
| [Flux](./depin_specs/compute_networks/flux.md) | Decentralized | VM with RAM, GPU, HDD | Custom blockchain, Docker | Yes | Yes | Yes | For flexibility, scalability, and censorship resistance. | | [Flux](./depin_specs/compute_networks/flux.md) | Fully Decentralized | Standard servers, GPUs | Custom blockchain, Docker | Yes | Yes | Yes | Decentralized cloud infrastructure with strong community support. |
| [Internet Computer (Dfinity)](./depin_specs/compute_networks/internet_computer.md) | Decentralized | CPU, RAM, NVMe SSD | Custom blockchain, Canisters | Yes | No | No | Build web apps and internet services. | | [Internet Computer (ICP)](./depin_specs/compute_networks/internet_computer.md) | Fully Decentralized | Standard servers | Custom blockchain, Canisters | Yes | No | No | Decentralized cloud computing platform for hosting Web3 applications.|
| [io.net](./depin_specs/compute_networks/io_net.md) | Decentralized | NVIDIA/AMD GPUs, multi-core CPUs | Ray, Kubernetes, PyTorch/TensorFlow | Yes | Yes | No | GPU/CPU aggregator for AI/ML workloads. |
--- ---
## Storage Networks ## Storage Networks
| Project Name | Infrastructure Ownership | Hardware Requirements | Software Stack | Open Source | Docker Support | ThreeFold Compatible | Notes | | Project Name | Infrastructure Ownership | Hardware Requirements | Software Stack | Open Source | Docker Support | ThreeFold Grid Compatible | Notes |
|--------------------|--------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------|-------------|----------------|---------------------------|------------------------------------------------------------------------------------------------------------------------| |--------------------|--------------------------------|--------------------------------|------------------------------|-------------|----------------|---------------------------|-----------------------------------------------------------------------|
| [Filecoin](./depin_specs/storage_networks/filecoin.md) | Decentralized | CPU, RAM, Nvidia GPU, VRAM, Intel SHA Extensions & Storage | Lotus Filecoin client | Yes | Yes | Yes | Store and retrieve data over the internet. | | [Filecoin](./depin_specs/storage_networks/filecoin.md) | Fully Decentralized | Storage servers | IPFS, Custom blockchain | Yes | Yes | Yes | Decentralized storage with strong incentives for data storage. |
| [Arweave](./depin_specs/storage_networks/arweave.md) | Decentralized | 4TB enterprise-grade hard drives with an average read speed of 200 MiB/s | Arweave miner software | Yes | Yes | Yes | Permanent and decentralized web inside an open ledger. | | [Arweave](./depin_specs/storage_networks/arweave.md) | Fully Decentralized | Storage servers | Custom blockchain, IPFS | Yes | Yes | Yes | Permanent, decentralized data storage. |
| [Storj](./depin_specs/storage_networks/storj.md) | Decentralized | Raspberry Pi, microSDXC Card, USB Cable, Storj cloud storage | Rclone, AWS CLI | Yes | Yes | Yes | Enterprise-grade, globally distributed cloud object storage. | | [Storj](./depin_specs/storage_networks/storj.md) | Fully Decentralized | Storage servers | Ethereum, IPFS | Yes | Yes | Yes | Decentralized cloud storage with S3 compatibility. |
| [Sia](./depin_specs/storage_networks/sia.md) | Decentralized | A quad-core CPU, RAM, SSD | Core software | Yes | Yes | Yes | Data storage platform. | | [Sia](./depin_specs/storage_networks/sia.md) | Fully Decentralized | Storage servers | Custom blockchain | Yes | Yes | Yes | Decentralized storage platform with a focus on affordability. |
| [Crust Network](./depin_specs/storage_networks/crust_network.md) | Decentralized | CPU, RAM, HDD, Network, SSD, Motherboard | IPFS, Ubuntu | Yes | Yes | Yes | Storage network of Web3 ecosystem. | | [Crust Network](./depin_specs/storage_networks/crust_network.md) | Fully Decentralized | Storage servers | Substrate, IPFS | Yes | Yes | Yes | Decentralized storage and hosting for Web3 applications. |
--- ---
## Wireless Networks ## Wireless Networks
| Project Name | Infrastructure Ownership | Hardware Requirements | Software Stack | Open Source | Docker Support | ThreeFold Compatible | Notes | | Project Name | Infrastructure Ownership | Hardware Requirements | Software Stack | Open Source | Docker Support | ThreeFold Grid Compatible | Notes |
|--------------------|--------------------------------|-------------------------------|------------------------------|-------------|----------------|---------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| |--------------------|--------------------------------|--------------------------------|------------------------------|-------------|----------------|---------------------------|-----------------------------------------------------------------------|
| [Helium](./depin_specs/wireless_networks/helium.md) | Decentralized | CPU, RAM, Storage | LoRaWAN Network Servers | Yes | Yes | Yes | Wireless apps, from long-range sensor tech to cellular connectivity.| | [Helium](./depin_specs/wireless_networks/helium.md) | Fully Decentralized | IoT hotspots | Custom blockchain, LoRaWAN | Partial | No | No | Decentralized wireless IoT network with global coverage. |
| [Pollum](./depin_specs/wireless_networks/pollum.md) | Decentralized | RAM, Processor speed, Storage | Windows or Linux | Yes | Partially | Yes | Tailor-made solutions in Web3, AI, and beyond. | | [Pollum](./depin_specs/wireless_networks/pollum.md) | Fully Decentralized | 5G hotspots | Custom blockchain | Partial | No | No | Helium's 5G network for mobile connectivity. |
| [Nodle](./depin_specs/wireless_networks/nodle.md) | Decentralized | Internet-of-Things | Nodle | Yes | Yes | Yes | Using smartphones as edge nodes to connect to the physical world. | | [Nodle](./depin_specs/wireless_networks/nodle.md) | Fully Decentralized | IoT devices | Custom blockchain, Bluetooth | Yes | No | Yes | IoT connectivity via Bluetooth. |
| [World Mobile](./depin_specs/wireless_networks/world_mobile.md) | Decentralized | AirNode, Flexibility | Cardano, Custom blockchain | No | Partially | Yes | Decentralised, blockchain-powered mobile network . | | [World Mobile](./depin_specs/wireless_networks/world_mobile.md) | Hybrid (Owned + Decentralized) | IoT devices, mobile hardware | Cardano, Custom blockchain | Partial | No | No | Decentralized mobile network with a focus on underserved regions. |
| [Althea](./depin_specs/wireless_networks/althea.md) | Decentralized | Routers, IoT devices | Ethereum, Custom blockchain | Yes | Yes | Yes | Hybrid EVM blockchain purpose-built for infrastructure and connectivity. | | [Althea](./depin_specs/wireless_networks/althea.md) | Fully Decentralized | Routers, IoT devices | Ethereum, Custom blockchain | Yes | No | Yes | Decentralized internet access with pay-as-you-go models. |
--- ---
## Energy Networks ## Energy Networks
| Project Name | Infrastructure Ownership | Hardware Requirements | Software Stack | Open Source | Docker Support | ThreeFold Compatible | Notes | | Project Name | Infrastructure Ownership | Hardware Requirements | Software Stack | Open Source | Docker Support | ThreeFold Grid Compatible | Notes |
|--------------------|--------------------------------|--------------------------------|------------------------------|-------------|----------------|---------------------------|-----------------------------------------------------------------------| |--------------------|--------------------------------|--------------------------------|------------------------------|-------------|----------------|---------------------------|-----------------------------------------------------------------------|
| [Power Ledger](./depin_specs/energy_networks/power_ledger.md) | Hybrid | No Specific HW | Blockchain | Partially | Yes | Yes | Integrating renewable energy into the grid. | | [Power Ledger](./depin_specs/energy_networks/power_ledger.md) | Hybrid (Owned + Decentralized) | Smart meters, energy hardware | Ethereum, Custom blockchain | Partial | No | Yes | Peer-to-peer energy trading platform. |
| [Energy Web](./depin_specs/energy_networks/energy_web.md) | Hybrid | CPU, RAM, SSD, DSL Connection | OpenEthereum client | Yes | Yes | Yes | Aim to transition to a customer-centric electricity system. | | [Energy Web](./depin_specs/energy_networks/energy_web.md) | Hybrid (Owned + Decentralized) | Smart meters, energy hardware | Ethereum, Custom blockchain | Partial | No | Yes | Decentralized energy grid solutions. |
| [Grid+](./depin_specs/energy_networks/grid_plus.md) | Hybrid | The Lattice1 device, One SafeCard, Power supply, LAN cable | Lattice Software | Partially | No | Yes | Secure and user-friendly cryptocurrency management wallet. | | [Grid+](./depin_specs/energy_networks/grid_plus.md) | Hybrid (Owned + Decentralized) | Smart meters, energy hardware | Ethereum, Custom blockchain | Partial | No | Yes | Decentralized energy management. |
| [SunContract](./depin_specs/energy_networks/suncontract.md) | Decentralized | RAM | Blockchain | Yes | No | Yes | Decentralization of power distribution. | | [SunContract](./depin_specs/energy_networks/suncontract.md) | Fully Decentralized | Smart meters, energy hardware | Ethereum, Custom blockchain | Yes | No | Yes | Peer-to-peer energy trading with a focus on green energy. |
---
## Sensor Networks ## Sensor Networks
| Project Name | Infrastructure Ownership | Hardware Requirements | Software Stack | Open Source | Docker Support | ThreeFold Compatible | Notes | | Project Name | Infrastructure Ownership | Hardware Requirements | Software Stack | Open Source | Docker Support | ThreeFold Grid Compatible | Notes |
|--------------------|--------------------------------|--------------------------------|------------------------------|-------------|----------------|---------------------------|-----------------------------------------------------------------------| |--------------------|--------------------------------|--------------------------------|------------------------------|-------------|----------------|---------------------------|-----------------------------------------------------------------------|
| [IoTeX](./depin_specs/sensor_networks/iotex.md) | Decentralized | Raspberry Pi, ESP32, and Arduino | Blockchain, Pebble Software | Yes | Yes | Yes | Open modular infrastructure for all DePINs. | | [IoTeX](./depin_specs/sensor_networks/iotex.md) | Fully Decentralized | IoT devices, Raspberry Pi | Ethereum, Custom blockchain | Yes | Yes | Yes | Decentralized IoT infrastructure with privacy features. |
| [Hivemapper](./depin_specs/sensor_networks/hivemapper.md) | Decentralized | Hivemapper Dashcam | ODC API Software | Yes | Yes | Yes | Mapping network for everyone.| | [Hivemapper](./depin_specs/sensor_networks/hivemapper.md) | Fully Decentralized | Dashcams, IoT devices | Solana, IPFS | Partial | No | Yes | Decentralized mapping network with strong incentives for contributors.|
| [WeatherXM](./depin_specs/sensor_networks/weatherxm.md) | Decentralized | Modem, Tools, Weather station | Ethereum, Custom blockchain | Yes | No | Yes | Accurate weather services to Web3 enterprises. | | [WeatherXM](./depin_specs/sensor_networks/weatherxm.md) | Fully Decentralized | Weather stations | Ethereum, Custom blockchain | Partial | No | Yes | Decentralized weather data collection. |
| [DIMO](./depin_specs/sensor_networks/dimo.md) | Decentralized | IoT devices, vehicles | DINO Mobile, API-driven platform | Yes | No | No | Collect, use, and monetize data from vehicles. | | [DIMO](./depin_specs/sensor_networks/dimo.md) | Fully Decentralized | IoT devices, vehicles | Ethereum, IPFS | Yes | Yes | Yes | Decentralized IoT for vehicle data and mobility. |
--- ---
## Mobility Networks ## Mobility Networks
| Project Name | Infrastructure Ownership | Hardware Requirements | Software Stack | Open Source | Docker Support | ThreeFold Compatible | Notes | | Project Name | Infrastructure Ownership | Hardware Requirements | Software Stack | Open Source | Docker Support | ThreeFold Grid Compatible | Notes |
|--------------------|-------------------------|-------------------------------|------------------------------|-------------|----------------|---------------------------|---------------------------------------------------------------------------------| |--------------------|--------------------------------|--------------------------------|------------------------------|-------------|----------------|---------------------------|-----------------------------------------------------------------------|
| [Carv](./depin_specs/mobility_networks/carv.md) | Decentralized | CPU, RAM , Internet service | Ethereum | Yes | Yes | Yes | Fusion of Artificial General Intelligence (AGI) and blockchain. | | [Carv](./depin_specs/mobility_networks/carv.md) | Fully Decentralized | IoT devices, vehicles | Ethereum, IPFS | Yes | Yes | Yes | Decentralized vehicle data sharing. |
| [Drife](./depin_specs/mobility_networks/drife.md) | Decentralized | No Particular Hardware | Blockchain | Yes | No | Yes | Decentralized ride-hailing platform. | | [Drife](./depin_specs/mobility_networks/drife.md) | Fully Decentralized | Mobile devices, vehicles | Ethereum, Custom blockchain | Yes | No | Yes | Decentralized ride-hailing platform. |
| [Arcade City](./depin_specs/mobility_networks/arcade_city.md) | Decentralized | No Particular Hardware | Blockchain | Yes | No | Yes | Unstoppable peer-to-peer commerce. | | [Arcade City](./depin_specs/mobility_networks/arcade_city.md) | Fully Decentralized | Mobile devices, vehicles | Ethereum, Custom blockchain | Yes | No | Yes | Decentralized ride-sharing platform. |
--- ---
## Miscellaneous DePIN Projects ## Miscellaneous DePIN Projects
| Project Name | Infrastructure Ownership | Hardware Requirements | Software Stack | Open Source | Docker Support | ThreeFold Compatible | Notes | | Project Name | Infrastructure Ownership | Hardware Requirements | Software Stack | Open Source | Docker Support | ThreeFold Grid Compatible | Notes |
|--------------------|--------------------------------|--------------------------------|------------------------------|-------------|----------------|---------------------------|-----------------------------------------------------------------------| |--------------------|--------------------------------|--------------------------------|------------------------------|-------------|----------------|---------------------------|-----------------------------------------------------------------------|
| [Livepeer](./depin_specs/miscellaneous_depin_projects/livepeer.md) | Decentralized | GPU, CPU, RAM, Disk | go-livepeer | Yes | Yes | Yes | Integrate AI video capabilities into the Livepeer network. | | [Livepeer](./depin_specs/miscellaneous_depin_projects/livepeer.md) | Fully Decentralized | GPUs | Ethereum, IPFS | Yes | Yes | Yes | Decentralized video streaming network. |
| [Theta Network](./depin_specs/miscellaneous_depin_projects/theta_network.md) | Hybrid | CP, RAM, HDD, Nvidia GPU | CUDA | Yes | Yes | Yes | Cloud for AI, media and entertainment. | | [Theta Network](./depin_specs/miscellaneous_depin_projects/theta_network.md) | Hybrid (Owned + Decentralized) | Consumer-grade hardware | Ethereum, IPFS | Partial | Yes | Yes | Decentralized video delivery with strong partnerships. |
| [Audius](./depin_specs/miscellaneous_depin_projects/audius.md) | Decentralized | CPU, RAM, SSD, Firewall | Ethereum, IPFS | Partially | Yes | Yes | Digital streaming service that connects fans to artists directly. | | [Audius](./depin_specs/miscellaneous_depin_projects/audius.md) | Hybrid (Owned + Decentralized) | Standard servers | Ethereum, IPFS | Partial | Yes | Yes | Decentralized music streaming platform. |
| [Arbol](./depin_specs/miscellaneous_depin_projects/arbol.md) | Decentralized | IoT devices, weather stations | Blockchain | Partially | No | Yes | Provide climate risk coverage and financial resilience solutions. | | [Arbol](./depin_specs/miscellaneous_depin_projects/arbol.md) | Fully Decentralized | IoT devices, weather stations | Ethereum, Custom blockchain | Partial | No | Yes | Decentralized weather data for insurance and agriculture. |
| [Silent Notary](./depin_specs/miscellaneous_depin_projects/silent_notary.md) | Decentralized | Computer, internet, webcam | Ethereum, Custom blockchain | Yes | Yes | Yes | Web 3.0 legal-tech solution for data. | | [Silent Notary](./depin_specs/miscellaneous_depin_projects/silent_notary.md) | Fully Decentralized | Standard servers | Ethereum, Custom blockchain | Yes | Yes | Yes | Decentralized data notarization for legal and compliance. |
| [Morpheus](./depin_specs/miscellaneous_depin_projects/morpheus.md) | Hybrid | RAM, Storage, CPU | Custom blockchain, Privacy protocols | Partially | Yes | Yes | Optimize and automate global supply chains. | | [Morpheus](./depin_specs/miscellaneous_depin_projects/morpheus.md) | Fully Decentralized | Standard servers | Custom blockchain, Privacy protocols | Yes | Yes | Yes | Privacy-preserving infrastructure for Web3 applications. |
--- ---
## Emerging DePIN Projects ## Emerging DePIN Projects
| Project Name | Infrastructure Ownership | Hardware Requirements | Software Stack | Open Source | Docker Support | ThreeFold Compatible | Notes | | Project Name | Infrastructure Ownership | Hardware Requirements | Software Stack | Open Source | Docker Support | ThreeFold Grid Compatible | Notes |
|--------------------|-------------------------|-------------------------------------------------------------------------------|---------------------------------------|-------------|----------------|---------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| |--------------------|--------------------------------|--------------------------------|------------------------------|-------------|----------------|---------------------------|-----------------------------------------------------------------------|
| [Aethir](./depin_specs/emerging_depin_projects/aethir.md) | Decentralized | GPU | Checker Node Client | Partial | Yes | Yes | Distributed cloud compute infrastructure. | | [Aethir](./depin_specs/emerging_depin_projects/aethir.md) | Fully Decentralized | GPUs | Ethereum, IPFS | Yes | Yes | Yes | Decentralized GPU cloud for AI and rendering. |
| [Meson Network](./depin_specs/emerging_depin_projects/meson_network.md) | Decentralized | Standard server with decent storage | Blackchain | Yes | Yes | Yes | Streamlined bandwidth marketplace. | | [Meson Network](./depin_specs/emerging_depin_projects/meson_network.md) | Fully Decentralized | Standard servers | Ethereum, IPFS | Yes | Yes | Yes | Decentralized bandwidth sharing for Web3 applications. |
| [KYVE](./depin_specs/emerging_depin_projects/kyve.md) | Decentralized | CPU, RAM, Disk, OS Mac, Linux-x64 & Linux-arm64 | Cosmos Hub | Yes | No | Yes | Tooling for decentralized data validation, immutability, and retrieval. | | [KYVE](./depin_specs/emerging_depin_projects/kyve.md) | Fully Decentralized | Standard servers | Cosmos SDK, IPFS | Yes | Yes | Yes | Decentralized data validation for blockchain history. |
| [Spheron Network](./depin_specs/emerging_depin_projects/spheron_network.md)| Decentralized | CPU, RAM,Storage, NVIDIA GPUs | MacOS and Linux | Partial | Yes | Yes | Connect GPU resources to a decentralized network. | | [Spheron Network](./depin_specs/emerging_depin_projects/spheron_network.md)| Fully Decentralized | Standard servers | IPFS, Custom blockchain | Yes | Yes | Yes | Decentralized web hosting for Web3 applications. |
| [Wicrypt](./depin_specs/emerging_depin_projects/wicrypt.md) | Decentralized | Hotspot Hub | Linux Embedded Distribution Environment | No | No | Yes | Hotspot sharing and token mining network. | | [Wicrypt](./depin_specs/emerging_depin_projects/wicrypt.md) | Fully Decentralized | Routers, IoT devices | Ethereum, Custom blockchain | Yes | No | Yes | Decentralized WiFi sharing for underserved regions. |
| [ThreeFold](./depin_specs/emerging_depin_projects/threefold.md) | Decentralized | Standard Server | ZOS | Yes | Yes | Yes | Decentralized cloud infrastructure for storage, compute, and network. |
--- ---
## Experimental and Niche DePIN Projects ## Experimental and Niche DePIN Projects
| Project Name | Infrastructure Ownership | Hardware Requirements | Software Stack | Open Source | Docker Support | ThreeFold Compatible | Notes | | Project Name | Infrastructure Ownership | Hardware Requirements | Software Stack | Open Source | Docker Support | ThreeFold Grid Compatible | Notes |
|--------------------|-------------------------|---------------------------------------------------------------------------------------------------------------|----------------------------------|-------------|----------------|---------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| |--------------------|--------------------------------|--------------------------------|------------------------------|-------------|----------------|---------------------------|-----------------------------------------------------------------------|
| [SpaceChain](./depin_specs/experimental_and_niche_depin_projects/spacechain.md) | Decentralized | 2nd gen flight-tested ZYNQ board, programmable hardware board | Linux and SPC OS, Blockchain | Yes | No | No | Decentralized satellite network. | | [SpaceChain](./depin_specs/experimental_and_niche_depin_projects/spacechain.md) | Hybrid (Owned + Decentralized) | Satellites, ground stations | Ethereum, Custom blockchain | Partial | No | No | Decentralized satellite infrastructure. |
| [SmartMesh](./depin_specs/experimental_and_niche_depin_projects/smartmesh.md) | Decentralized | ARM Cortex-M series processor, RAM, radio transceiver | ESP software, Fuse Table software | Yes | No | Yes | Protocol of the Internet of Things. | | [SmartMesh](./depin_specs/experimental_and_niche_depin_projects/smartmesh.md) | Fully Decentralized | IoT devices, mobile hardware | Ethereum, Custom blockchain | Yes | No | Yes | Decentralized mesh networking for IoT. |
| [Elastos](./depin_specs/experimental_and_niche_depin_projects/elastos.md) | Decentralized | CPU, RAM, Storage | Blockchain | Yes | No | Yes | Platform that allows users to build and deploy dApps. | | [Elastos](./depin_specs/experimental_and_niche_depin_projects/elastos.md) | Fully Decentralized | Standard servers | Custom blockchain, IPFS | Yes | Yes | Yes | Decentralized internet OS for Web3 applications. |
| [Autonomys](./depin_specs/experimental_and_niche_depin_projects/autonomys.md) | Decentralized | CPU, RAM, Storage | Ubuntu, Mac, Windows, Linux | Yes | Yes | Yes | Provide the infrastructure to scale decentralized AI 3.0 applications and more. | | [Autonomys](./depin_specs/experimental_and_niche_depin_projects/autonomys.md) | Fully Decentralized | Standard servers | Custom blockchain, IPFS | Yes | Yes | Yes | Decentralized storage for blockchain history. |

View File

@ -4,87 +4,39 @@ description: Detailed information about Akash Network
sidebar_position: 2 sidebar_position: 2
--- ---
# Akash Network # Akash Network
## Overview ## Overview
Akash Network is a decentralized cloud computing platform that allows users to deploy and manage applications in a decentralized manner. It leverages blockchain technology to create a more secure and efficient cloud computing environment.
Akash Network is a decentralized cloud computing marketplace built on the Cosmos SDK, designed to provide a cost-effective, secure, and scalable alternative to traditional cloud services like AWS and Google Cloud. By leveraging blockchain technology, Akash enables users to buy and sell computing resources in a permissionless and decentralized manner. The platform aims to democratize access to cloud infrastructure, making it more affordable and accessible for developers, businesses, and individuals. ## Key Features
- **Currency:** AKT (Akash Token)
- **Buying Currency:** Available on exchanges like KuCoin and Gate.io.
- **Utility:**
- Used for network transactions and incentivizing cloud computing.
- Staking rewards for network validators.
- **Automation:**
- Smart contracts automate application deployment and resource allocation.
- **Utility in the Project:**
- Users can earn AKT by providing cloud computing resources.
- Validators can stake AKT to secure the network and earn rewards.
- **API:** Yes, Akash Network provides an API for developers to integrate with their applications.
- **User Perspective:**
- Users can easily deploy applications and earn AKT tokens by providing cloud computing resources.
## Key Features ## How It Works
- **Currency:** $AKT (native token). 1. **Step 1:** Users deploy their applications on the Akash Network.
- **Buying Currency:** $AKT is available on major exchanges like Coinbase, Gate.io, and KuCoin. 2. **Step 2:** The network allocates resources to the applications.
- **Utility:** 3. **Step 3:** Users earn AKT tokens based on the amount of resources provided.
- **Payments:** $AKT is used to pay for cloud computing resources, including CPU, GPU, and storage.
- **Staking:** Stake $AKT to secure the network, earn rewards, and participate in governance.
- **Governance:** $AKT holders can vote on protocol upgrades and ecosystem decisions.
- **Automation:**
- Smart contracts automate resource allocation, payments, and reward distribution.
- Dynamic pricing ensures cost efficiency by allowing providers to compete for workloads.
- **API:** Yes. Akash integrates with Docker and Kubernetes for seamless deployment of applications.
- **User Perspective:**
- **Developers:** Deploy applications on a decentralized cloud, benefiting from lower costs and greater flexibility.
- **Providers:** Monetize idle computing resources by renting them out on the Akash marketplace.
## How It Works ## Staking
1. **Resource Aggregation:** - **Staking Requirements:** Minimum of 10,000 AKT tokens to become a validator.
- Providers register their computing resources (e.g., GPUs, CPUs) on the Akash Network, which are pooled into a global marketplace. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
2. **Task Allocation:**
- Users submit compute jobs, and the platform matches them with the most cost-effective and suitable resources.
3. **Execution & Payment:**
- Jobs run on distributed nodes, with results validated via blockchain. Payments in $AKT are automated through smart contracts.
## Staking ## Documentation
- **Staking Requirements:** For detailed documentation, visit [Akash Network Docs](https://akash.network/docs/).
- Providers must stake $AKT to participate in the network, with the amount influencing their reputation and governance power.
- No minimum stake for users deploying applications.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security.
- **Slashing:** Malicious actors lose staked $AKT, ensuring network integrity.
## Documentation ## Additional Resources
For technical guides, tokenomics, and API integration: - [Official Website](https://akash.network)
- [Akash Docs](https://docs.akash.network/) - [Community Link](https://t.me/AkashNW)
- [GitHub Repository](https://github.com/akash-network)
## Additional Resources
- **Official Links:**
- [Website](https://akash.network) | [GitHub](https://github.com/akash-network) | [Twitter](https://twitter.com/akashnet_)
- **Community:**
- [Telegram](https://t.me/akashnw) | [Discord](https://discord.gg/akash)
- **Partnerships:**
- Collaborations with Solana, Cosmos, and other blockchain projects enhance cross-chain interoperability.
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Akash Console** | User-friendly interface for deploying and managing cloud resources. |
| **Akash Provider** | Dashboard for providers to monitor resource usage and earnings. |
| **Akash Explorer** | Analytics tool tracking network activity, rewards, and resource utilization. |
## Tokenomics
- **Initial Supply:** 100M $AKT.
- **Max Supply:** 388.5M $AKT, with rewards decreasing over time.
- **Distribution:**
- 75% allocated as network rewards, 25% to investors, team, and ecosystem fund.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Akash Network is designed to be user-friendly, with a straightforward interface (Akash Console) and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $AKT is the primary currency for purchasing computing resources on the Akash Network. Users can also pay with USDC, and credit card payments are now supported for mainstream accessibility.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $AKT is the native token, users can trade it on major exchanges like Coinbase and Gate.io. However, automatic token switching (e.g., ETH to AKT) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn passive income by renting out idle computing resources. Staking $AKT is required to participate as a provider, and rewards are distributed based on resource contribution and staking amount. ROI depends on resource utilization and market demand.
5. **Why does the project exist, why do the people and the planet need it?**
Akash Network exists to democratize cloud computing, reducing costs and increasing accessibility. It promotes sustainability by utilizing underutilized resources, reducing waste, and offering a decentralized alternative to energy-intensive centralized cloud providers.
6. **Is it geo-aware?**
Akash Network does not explicitly mention geo-fencing, but its decentralized nature allows users to deploy resources globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
Akash Network is highly cost-effective, offering computing resources at up to 90% lower costs compared to traditional cloud providers like AWS and Google Cloud. Dynamic pricing ensures competitive rates.

View File

@ -4,83 +4,39 @@ description: Detailed information about Flux
sidebar_position: 5 sidebar_position: 5
--- ---
# Flux Network # Flux
## Overview ## Overview
Flux is a decentralized cloud computing platform that allows users to deploy and manage applications in a decentralized manner. It leverages blockchain technology to create a more secure and efficient cloud computing environment.
Flux Network is a decentralized Web3 cloud infrastructure that provides a scalable, globally distributed network for running applications with high availability. Built on its native blockchain, Flux offers a robust alternative to traditional cloud providers like AWS and Google Cloud. By leveraging a network of user-operated nodes, Flux ensures secure, censorship-resistant, and cost-effective cloud computing solutions. The platform empowers developers, businesses, and individuals to deploy decentralized applications (dApps) with flexibility and reliability. ## Key Features
- **Currency:** FLUX (Flux Token)
- **Buying Currency:** Available on exchanges like KuCoin and Gate.io.
- **Utility:**
- Used for network transactions and incentivizing cloud computing.
- Staking rewards for network validators.
- **Automation:**
- Smart contracts automate application deployment and resource allocation.
- **Utility in the Project:**
- Users can earn FLUX by providing cloud computing resources.
- Validators can stake FLUX to secure the network and earn rewards.
- **API:** Yes, Flux provides an API for developers to integrate with their applications.
- **User Perspective:**
- Users can easily deploy applications and earn FLUX tokens by providing cloud computing resources.
## Key Features ## How It Works
- **Currency:** $FLUX (native token). 1. **Step 1:** Users deploy their applications on the Flux Network.
- **Buying Currency:** $FLUX is available on major exchanges like KuCoin, Gate.io, and CoinEx. 2. **Step 2:** The network allocates resources to the applications.
- **Utility:** 3. **Step 3:** Users earn FLUX tokens based on the amount of resources provided.
- **Payments:** $FLUX is used to purchase computational resources, storage, and other services within the Flux ecosystem.
- **Staking:** Stake $FLUX to operate FluxNodes, earn rewards, and participate in governance.
- **Governance:** $FLUX holders can vote on network upgrades and ecosystem decisions through the Flux DAO.
- **Automation:**
- Smart contracts automate resource allocation, payments, and reward distribution.
- FluxOS, the operating system, ensures seamless deployment and management of applications.
- **API:** Yes. Flux supports Docker containers and integrates with major blockchain ecosystems for interoperability.
- **User Perspective:**
- **Developers:** Deploy dApps on a decentralized cloud with high availability, redundancy, and censorship resistance.
- **Node Operators:** Monetize idle hardware by contributing computational resources to the Flux network.
## How It Works ## Staking
1. **Resource Aggregation:** - **Staking Requirements:** Minimum of 1,000 FLUX tokens to become a validator.
- Node operators register their hardware (e.g., GPUs, CPUs) on the Flux Network, which are pooled into a global decentralized cloud. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
2. **Task Allocation:**
- Developers submit compute jobs, and FluxOS matches them with the most suitable and cost-effective resources.
3. **Execution & Payment:**
- Jobs run on distributed FluxNodes, with results validated via blockchain. Payments in $FLUX are automated through smart contracts.
## Staking ## Documentation
- **Staking Requirements:** For detailed documentation, visit [Flux Docs](https://docs.runonflux.io/).
- Node operators must stake $FLUX to participate in the network, with the amount determining their tier (Cumulus, Nimbus, or Stratus) and rewards.
- No minimum stake for users deploying applications.
- **Rewards:**
- **Block Rewards:** Distributed to node operators and miners based on their contribution to network security and resource provision.
- **Slashing:** Malicious actors lose staked $FLUX, ensuring network integrity.
## Documentation ## Additional Resources
For detailed documentation, visit [Flux Docs](https://docs.runonflux.io/). - [Official Website](https://runonflux.io/)
- [Community Link](https://discord.com/invite/runonflux)
## Additional Resources - [GitHub Repository](https://github.com/RunOnFlux)
- [Official Website](https://runonflux.io/)
- [Community Link](https://discord.com/invite/runonflux)
- [GitHub Repository](https://github.com/RunOnFlux)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Flux Cloud** | Decentralized cloud infrastructure for deploying high-availability applications. |
| **FluxEdge** | Decentralized GPU marketplace for AI, machine learning, and rendering tasks. |
| **FluxDrive** | Decentralized storage solution using IPFS for secure and immutable data storage. |
| **Zelcore** | Non-custodial wallet for managing digital assets and interacting with the Flux ecosystem. |
## Tokenomics
- **Max Supply:** 440M $FLUX, with rewards distributed over time.
- **Distribution:**
- 94.7% allocated to users, 2.9% to the Flux Foundation, 1.7% for exchange listings, and 0.7% to the Flux team.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Flux Network is designed to be user-friendly, with tools like FluxOS and Zelcore simplifying deployment and asset management. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $FLUX is the primary currency for purchasing computational resources, storage, and other services within the Flux ecosystem.
3. **Can tokens be automatically switched from other standard tokens (e.g., ETH, BTC)?**
While $FLUX is the native token, users can trade it on major exchanges like KuCoin and Gate.io. Automatic token switching (e.g., ETH to FLUX) is not natively supported but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Node operators can earn passive income by contributing hardware resources to the Flux network. Staking $FLUX is required to operate FluxNodes, and rewards are distributed based on resource contribution and staking amount. ROI depends on resource utilization and market demand.
5. **Why does the project exist, why do the people and the planet need it?**
Flux Network exists to decentralize cloud computing, reducing reliance on centralized providers and promoting sustainability by utilizing underutilized hardware. It offers a cost-effective, secure, and censorship-resistant alternative for developers and businesses.
6. **Is it geo-aware?**
Fluxs Geolocation 2.0 feature allows developers to choose specific regions for application deployment, ensuring compliance with local regulations and optimizing performance.
7. **Is it cost-effective?**
Flux Network is highly cost-effective, offering computational resources at competitive rates compared to traditional cloud providers. Its decentralized model reduces overhead costs, making it an affordable option for users.

View File

@ -7,84 +7,36 @@ sidebar_position: 3
# Golem Network # Golem Network
## Overview ## Overview
Golem Network is a decentralized computing platform that allows users to rent out their unused computing power to others. It leverages blockchain technology to create a peer-to-peer computing marketplace.
Golem Network is a decentralized computing platform that leverages a peer-to-peer network to enable users to rent computation time from others' computers. By utilizing underutilized resources, Golem provides a more sustainable and cost-effective alternative to traditional cloud services. It is built on blockchain technology, utilizing Ethereum for its transactions and governance mechanisms. Golem aims to democratize access to computing resources, fostering a more equitable and efficient ecosystem for developers, businesses, and individuals.
## Key Features ## Key Features
- **Currency:** $GLM (native token). - **Currency:** GLM (Golem Token)
- **Buying Currency:** $GLM is available on major exchanges such as Binance, Coinbase, and Kraken. - **Buying Currency:** Available on exchanges like Binance and Kraken.
- **Utility:** - **Utility:**
- **Payments:** $GLM is used to pay for computing resources in the Golem marketplace. - Used for network transactions and incentivizing computing power sharing.
- **Staking:** Stake $GLM to participate in network consensus and earn rewards. - Staking rewards for network validators.
- **Governance:** $GLM holders can vote on protocol upgrades and ecosystem decisions. - **Automation:**
- **Marketplace:** A decentralized platform for buying and selling computation resources. - Smart contracts automate computing power sharing and payment processing.
- **PNRP Protocol:** Facilitates communication between nodes, ensuring efficient task execution. - **Utility in the Project:**
- **Golem CLI:** Command-line interface for developers to interact with the network. - Users can earn GLM by renting out their computing power.
- **Collocation:** Enables nodes to work together for more efficient task processing. - Validators can stake GLM to secure the network and earn rewards.
- **P2P Network:** Decentralized architecture allowing users to directly interact with each other. - **API:** Yes, Golem Network provides an API for developers to integrate with their applications.
- **User Perspective:**
- Users can easily rent out their computing power and earn GLM tokens.
## How It Works ## How It Works
1. **Resource Aggregation:** Providers offer their idle computing resources through the Golem marketplace. 1. **Step 1:** Users connect their devices to the Golem Network.
2. **Task Submission:** Users submit compute tasks through the Golem Core App or CLI. 2. **Step 2:** The network matches users who need computing power with those who have it.
3. **Task Execution:** Tasks are distributed across available nodes, with results validated via blockchain. 3. **Step 3:** Users earn GLM tokens based on the amount of computing power provided.
4. **Payment:** Payments in $GLM are automated through smart contracts, ensuring efficient and secure transactions.
5. **Reputation Tracking:** Rewards and penalties based on node performance and reliability.
## Staking ## Staking
- **Staking Requirements:** Providers must stake $GLM to join the network. Staking amount affects node reputation and governance influence. - **Staking Requirements:** Minimum of 10,000 GLM tokens to become a validator.
- **Node Types:** - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
- **Standard Nodes:** Provide computation resources.
- **Pioneer Nodes:** Contribute to network expansion and maintenance.
- **Validator Nodes:** Participate in block production and consensus.
- **Rewards:** Stakers earn rewards proportional to their contribution to the network.
- **Slashing:** Incentivizes honest behavior by penalizing nodes that breach network protocols.
## Documentation ## Documentation
For technical guides, tokenomics, and API integration: For detailed documentation, visit [Golem Network Docs](https://docs.golem.network).
- [Golem Docs](https://docs.golem.network)
## Additional Resources ## Additional Resources
- **Official Links:** - [Official Website](https://golem.network)
- [Website](https://golem.network) | [GitHub](https://github.com/golemfactory) - [Community Link](https://discord.com/invite/golem)
- **Community:** - [GitHub Repository](https://github.com/golemfactory)
- [Discord](https://discord.com/invite/golem) | [Telegram](https://t.me/golemnetwork)
- **Partnerships:** Collaborations with leading blockchain projects to enhance interoperability.
## Ecosystem Components
| Product | Functionality |
|-|-|
| **Golem Core App** | User-friendly interface for task submission and resource management. |
| **Marketplace** | Decentralized platform for buying and selling computation resources. |
| **CLI Tools** | Command-line interfaces for developers to interact with the network. |
| **Slashing Dashboard** | Monitors and manages node behavior to ensure network security. |
| **Golem Status** | Provides insights into node activity and network performance. |
## Tokenomics
- **Total Supply:** 1 billion $GLM.
- **Distribution:**
- 30% allocated to network rewards.
- 20% to early contributors and investors.
- 50% to the project's treasury and development.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Golem Network offers a user-friendly interface and comprehensive documentation, making it accessible to both technical and non-technical users.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $GLM is the primary currency for purchasing computing resources on Golem. Users can trade $GLM on major exchanges for other currencies.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While automatic token switching is not natively supported, users can easily trade $GLM on major exchanges for other cryptocurrencies.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn rewards by offering their computation resources. Staking $GLM is necessary to participate, with rewards based on resource contribution and staking amount. ROI varies with resource utilization and demand.
5. **Why does the project exist, why do the people and the planet need it?**
Golem Network aims to democratize access to computing resources, reducing costs and promoting sustainability by utilizing underutilized resources, offering a decentralized alternative to traditional cloud providers.
6. **Is it geo-aware?**
Golem's decentralized nature allows global deployment, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
Golem offers competitive pricing, up to 90% cheaper than traditional cloud services, with dynamic rates ensuring cost efficiency.

View File

@ -4,42 +4,34 @@ description: Detailed information about iExec
sidebar_position: 4 sidebar_position: 4
--- ---
# iExec Project # iExec
## Overview ## Overview
iExec is a decentralized cloud computing platform that allows users to rent out their computing power for various tasks. It leverages blockchain technology to create a peer-to-peer computing marketplace.
iExec is a decentralized cloud computing platform built on Ethereum, designed to provide a secure, scalable, and cost-effective alternative to traditional cloud services. By leveraging blockchain technology, iExec enables users to buy and sell computing resources in a decentralized marketplace. The platform aims to democratize access to cloud infrastructure, making it more affordable and accessible for developers, businesses, and individuals. iExec focuses on confidential computing, ensuring data privacy and security through advanced cryptographic techniques and trusted execution environments (TEEs).
## Key Features ## Key Features
- **Currency:** $RLC (native token). - **Currency:** RLC (iExec Token)
- **Buying Currency:** $RLC is available on major exchanges like Binance, Coinbase, and KuCoin. - **Buying Currency:** Available on exchanges like Binance and Kraken.
- **Utility:** - **Utility:**
- **Payments:** $RLC is used to pay for cloud computing resources, including CPU, GPU, and storage. - Used for network transactions and incentivizing computing power sharing.
- **Staking:** Stake $RLC to secure the network, earn rewards, and participate in governance. - Staking rewards for network validators.
- **Governance:** $RLC holders can vote on protocol upgrades and ecosystem decisions. - **Automation:**
- **Automation:** - Smart contracts automate computing tasks and payment processing.
- Smart contracts automate resource allocation, payments, and reward distribution. - **Utility in the Project:**
- Dynamic pricing ensures cost efficiency by allowing providers to compete for workloads. - Users can earn RLC by renting out their computing power.
- **API:** Yes. iExec integrates with various tools and supports multiple programming languages, making it accessible for developers. - Validators can stake RLC to secure the network and earn rewards.
- **API:** Yes, iExec provides an API for developers to integrate with their applications.
- **User Perspective:** - **User Perspective:**
- **Developers:** Deploy applications on a decentralized cloud, benefiting from lower costs and greater flexibility. - Users can easily rent out their computing power and earn RLC tokens.
- **Providers:** Monetize idle computing resources by renting them out on the iExec marketplace.
## How It Works ## How It Works
1. **Resource Aggregation:** 1. **Step 1:** Users connect their devices to the iExec Network.
- Providers register their computing resources (e.g., GPUs, CPUs) on the iExec Network, which are pooled into a global marketplace. 2. **Step 2:** The network matches users who need computing power with those who have it.
2. **Task Allocation:** 3. **Step 3:** Users earn RLC tokens based on the amount of computing power provided.
- Users submit compute jobs, and the platform matches them with the most cost-effective and suitable resources.
3. **Execution & Payment:**
- Jobs run on distributed nodes, with results validated via blockchain. Payments in $RLC are automated through smart contracts.
## Staking ## Staking
- **Staking Requirements:** - **Staking Requirements:** Minimum of 10,000 RLC tokens to become a validator.
- Providers must stake $RLC to participate in the network, with the amount influencing their reputation and governance power. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
- No minimum stake for users deploying applications.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security.
- **Slashing:** Malicious actors lose staked $RLC, ensuring network integrity.
## Documentation ## Documentation
For detailed documentation, visit [iExec Docs](https://docs.iex.ec). For detailed documentation, visit [iExec Docs](https://docs.iex.ec).
@ -47,40 +39,4 @@ For detailed documentation, visit [iExec Docs](https://docs.iex.ec).
## Additional Resources ## Additional Resources
- [Official Website](https://iex.ec) - [Official Website](https://iex.ec)
- [Community Link](https://t.me/iexec_rlc_official) - [Community Link](https://t.me/iexec_rlc_official)
- [GitHub Repository](https://github.com/iExecBlockchainComputing) - [GitHub Repository](https://github.com/iExecBlockchainComputing)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **iExec DataProtector** | Secures user data through encryption and smart contract-based access rights management. It allows data use without revealing it, ensuring complete confidentiality.
| **iExec SMS** | Ensures the security and efficacy of iExecs Confidential Computing capabilities. It manages the keys and credentials needed to access and process encrypted data.
| **iExec Marketplace** | A decentralized marketplace where users can rent computing power, datasets, and applications. It facilitates the exchange of computing resources and datasets as NFTs.
## Tokenomics
- **Total Supply:** 87 million $RLC, with no additional tokens to be created.
- **Distribution:**
- 69% allocated in the public crowdsale.
- Remaining tokens are used for ecosystem development, rewards, and team allocation.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, iExec is designed to be user-friendly, with a straightforward interface and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $RLC is the primary currency for purchasing computing resources on the iExec Network. Users can also pay with other cryptocurrencies supported by the platform.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $RLC is the native token, users can trade it on major exchanges like Binance and Coinbase. However, automatic token switching (e.g., ETH to RLC) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn passive income by renting out idle computing resources. Staking $RLC is required to participate as a provider, and rewards are distributed based on resource contribution and staking amount. ROI depends on resource utilization and market demand.
5. **Why does the project exist, why do the people and the planet need it?**
iExec exists to democratize cloud computing, reducing costs and increasing accessibility. It promotes sustainability by utilizing underutilized resources, reducing waste, and offering a decentralized alternative to energy-intensive centralized cloud providers.
6. **Is it geo-aware?**
iExec does not explicitly mention geo-fencing, but its decentralized nature allows users to deploy resources globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
iExec is highly cost-effective, offering computing resources at competitive rates compared to traditional cloud providers. Dynamic pricing ensures competitive rates.

View File

@ -4,45 +4,35 @@ description: Detailed information about Internet Computer (Dfinity)
sidebar_position: 6 sidebar_position: 6
--- ---
# DEPIN Project: Internet Computer Protocol (Dfinity) # Internet Computer (Dfinity)
## Overview ## Overview
The Internet Computer, developed by Dfinity, is a decentralized computing platform that aims to extend the functionality of the public internet by hosting software and services directly on the blockchain. It enables developers to build and deploy scalable, secure, and efficient applications without relying on traditional cloud infrastructure.
The Internet Computer Protocol (ICP), developed by the DFINITY Foundation, is a revolutionary blockchain network designed to create a decentralized, scalable, and secure infrastructure for web services. Unlike traditional cloud services provided by companies like Amazon Web Services (AWS) and Google Cloud, the Internet Computer runs on a global network of independent data centers, ensuring that applications and data are decentralized and tamper-proof. This decentralized approach aims to democratize the internet by giving users more control over their data and reducing reliance on centralized servers.
## Key Features ## Key Features
- **Currency:** ICP (Internet Computer Protocol Token)
- **Currency:** $ICP (native token). - **Buying Currency:** Available on exchanges like Binance, Coinbase, and Kraken.
- **Buying Currency:** $ICP is available on major exchanges like Coinbase, Binance, and Huobi. - **Utility:**
- **Utility:** - Used for network governance, transaction fees, and incentivizing node providers.
- **Payments:** $ICP is used to pay for computational resources and storage on the Internet Computer network. - Staking rewards for participants in the network.
- **Staking:** Stake $ICP to participate in governance, earn rewards, and secure the network. - **Automation:**
- **Governance:** $ICP holders can vote on protocol upgrades and ecosystem decisions through the Network Nervous System (NNS). - Smart contracts (called "canisters") automate application deployment and execution.
- **Automation:** - **Utility in the Project:**
- Smart contracts, known as canisters, automate resource allocation, payments, and reward distribution. - Developers can use ICP to pay for computation and storage on the network.
- Dynamic pricing ensures cost efficiency by allowing providers to compete for workloads. - Users can participate in governance by staking ICP tokens.
- **API:** Yes. The Internet Computer provides APIs for integrating with various programming languages like Rust and Motoko, enabling seamless deployment of applications. - **API:** Yes, the Internet Computer provides an API for developers to build and interact with decentralized applications (dApps).
- **User Perspective:** - **User Perspective:**
- **Developers:** Deploy applications on a decentralized cloud, benefiting from lower costs and greater flexibility. - Developers can build and deploy dApps with high scalability and low latency.
- **Providers:** Monetize idle computing resources by renting them out on the Internet Computer marketplace. - Users can interact with dApps seamlessly, with no need for traditional servers.
## How It Works ## How It Works
1. **Step 1:** Developers create and deploy "canisters" (smart contracts) on the Internet Computer.
1. **Resource Aggregation:** 2. **Step 2:** The network distributes the workload across multiple nodes, ensuring scalability and fault tolerance.
- Providers register their computing resources (e.g., CPUs, GPUs) on the Internet Computer network, which are pooled into a global marketplace. 3. **Step 3:** Users interact with dApps directly through their browsers, with no intermediaries.
2. **Task Allocation:**
- Users submit compute jobs, and the platform matches them with the most cost-effective and suitable resources.
3. **Execution & Payment:**
- Jobs run on distributed nodes, with results validated via blockchain. Payments in $ICP are automated through smart contracts.
## Staking ## Staking
- **Staking Requirements:** No minimum staking requirement, but staking ICP is necessary for participating in governance.
- **Staking Requirements:** - **Rewards:** Stakers earn rewards for participating in network governance and securing the network.
- Users must stake $ICP to participate in governance and earn rewards. The minimum stake required to create a neuron is one ICP utility token.
- No minimum stake for users deploying applications.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security.
- **Slashing:** Malicious actors lose staked $ICP, ensuring network integrity.
## Documentation ## Documentation
For detailed documentation, visit [Internet Computer Docs](https://internetcomputer.org/docs/current/developer-docs/getting-started/network-overview). For detailed documentation, visit [Internet Computer Docs](https://internetcomputer.org/docs/current/developer-docs/getting-started/network-overview).
@ -50,41 +40,4 @@ For detailed documentation, visit [Internet Computer Docs](https://internetcompu
## Additional Resources ## Additional Resources
- [Official Website](https://dfinity.org) - [Official Website](https://dfinity.org)
- [Community Link](https://forum.dfinity.org/) - [Community Link](https://forum.dfinity.org/)
- [GitHub Repository](https://github.com/dfinity) - [GitHub Repository](https://github.com/dfinity)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Network Nervous System (NNS)** | Governance system that controls the Internet Computer network, allowing users to vote on proposals and manage the network. |
| **Canisters** | Smart contracts that hold code and data, enabling decentralized applications to run on the Internet Computer. |
| **Internet Identity** | Decentralized identity system that allows users to securely manage their digital identities on the Internet Computer. |
## Tokenomics
- **Total Supply:** 529.56
- **Distribution:**
- A significant portion of ICP tokens is allocated to the DFINITY Foundation, team members, advisors, and the IC Association. The remaining tokens are distributed through market activity and ecosystem development.
## FAQ
1. **Is it usable by the average DEPIN user?**
Yes, the Internet Computer is designed to be user-friendly, with a straightforward interface and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DEPIN user.
2. **Can I pay with tokens to use the DEPIN product offered by the project?**
Yes, $ICP is the primary currency for purchasing computing resources on the Internet Computer network. Users can also pay with other cryptocurrencies through external exchanges.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $ICP is the native token, users can trade it on major exchanges like Coinbase and Binance. Automatic token switching is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn passive income by renting out idle computing resources. Staking $ICP is required to participate as a provider, and rewards are distributed based on resource contribution and staking amount. ROI depends on resource utilization and market demand.
5. **Why does the project exist, why do the people and the planet need it?**
The Internet Computer exists to democratize the internet by reducing reliance on centralized cloud providers, enhancing data privacy, and promoting sustainability by utilizing underutilized resources.
6. **Is it geo-aware?**
The Internet Computer does not explicitly mention geo-fencing, but its decentralized nature allows users to deploy resources globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
The Internet Computer is highly cost-effective, offering computing resources at lower costs compared to traditional cloud providers like AWS and Google Cloud. Dynamic pricing ensures competitive rates.

View File

@ -1,99 +0,0 @@
---
title: io.net
description: Detailed information about io.net
sidebar_position: 7
---
# io.net
## Overview
io.net is a decentralized AI computing network built on Solana, designed to aggregate underutilized GPU resources globally to power AI and machine learning applications. By leveraging a Decentralized Physical Infrastructure Network (DePIN), io.net connects independent data centers, crypto miners, and projects like Filecoin and Render to provide scalable, cost-effective computing power. Founded by Ahmad Shadid (later succeeded by Tory Green in 2024), the platform aims to democratize access to GPU resources, reducing costs by up to 90% compared to traditional cloud services.
## Key Features
- **Currency:** $IO (native token) and $IOSD (USD-pegged stablecoin).
- **Buying Currency:** Available on exchanges like Binance, where it was listed via a Launchpool campaign in June 2024.
- **Utility:**
- **Payments:** $IO is used to pay for GPU/CPU rentals and transaction fees; $IOSD offers stable pricing.
- **Staking:** Stake $IO to secure the network, earn block rewards, and participate in governance.
- **Governance:** $IO holders vote on protocol upgrades and ecosystem decisions.
- **Automation:**
- AI-driven dynamic resource allocation optimizes task distribution based on hardware specs, location, and cost.
- Smart contracts automate payments, slashing penalties, and reward distribution.
- **API:** Yes. Integrates with Ray and Kubernetes for scalable AI/ML workflows.
- **User Perspective:**
- **Developers:** Deploy AI models, access 1M+ GPUs, and use tools like IO Cloud for cluster management.
- **Providers:** Monetize idle GPUs/CPUs through hourly rewards and staking.
## How It Works
1. **Resource Aggregation:**
- GPU/CPU providers register devices on io.net, which are verified and pooled into a global network.
2. **Task Allocation:**
- Users submit compute jobs (e.g., AI training), and the platform dynamically assigns tasks to optimal hardware using smart scheduling algorithms.
3. **Execution & Payment:**
- Jobs run on distributed nodes, with results validated via test cases. Payments in $IO/$IOSD are automated via blockchain.
## Staking
- **Staking Requirements:**
- Minimum stake per GPU: 200 $IO. High-end GPUs (e.g., NVIDIA H100) require 10x multiplier (16,000 $IO for 8 H100s).
- 14-day cooldown period for unstaking.
- **Rewards:**
- **Block Rewards:** Distributed hourly—80% to GPU providers, 20% to CPU providers.
- **Slashing:** Malicious actors lose staked $IO; slashed tokens are burned after a 1-month appeal window.
## Documentation
For technical guides, tokenomics, and API integration:
- [io.net Docs](https://docs.io.net/)
- [Staking Guide](https://docs.io.net/docs/staking)
- [Rewards & Wallets](https://docs.io.net/docs/rewards-wallets)
## Additional Resources
- **Official Links:**
- [Website](https://io.net) | [GitHub](https://github.com/ionet-official) | [Twitter](https://x.com/ionet)
- **Community:**
- [Telegram](https://t.me/io_net) | [Discord](https://discord.gg/ionet)
- **Partnerships:**
- Collaborations with Aptos Labs, Aethir, and Mind Network enhance AI security and cross-chain interoperability.
## Ecosystem Components
| Product | Functionality |
| - |-|
| **IO Cloud** | Manages decentralized GPU clusters for AI/ML deployments. |
| **IO Worker** | Dashboard for providers to monitor hardware performance and earnings. |
| **IO Explorer** | Analytics tool tracking network activity, rewards, and resource utilization. |
## Tokenomics
- **Max Supply:** 800M.
- **Distribution:**
- 50% to community, 20% to investors, 20% to core contributors, 10% ecosystem fund.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, io.net is designed to be user-friendly, with an intuitive interface and accessible documentation. It caters to both technical and non-technical users, making it an excellent choice for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, io.net supports payment using its native token. Users can also utilize other common tokens such as ETH or USDT, enhancing flexibility.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While io.net does not support automatic token switching natively, users can easily convert tokens like ETH or BTC to the native token through major exchanges, ensuring seamless integration.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn a competitive ROI by contributing resources. Staking the native token is typically required to participate, with rewards distributed based on contribution levels and market demand.
5. **Why does the project exist, why do the people and the planet need it?**
io.net aims to decentralize essential services, enhancing efficiency and sustainability. By optimizing resource utilization, it offers a greener alternative to traditional centralized solutions.
6. **Is it geo-aware?**
io.net supports global deployment, allowing users to leverage resources across different regions, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
io.net is highly cost-effective, offering solutions that can be significantly cheaper than centralized alternatives, providing substantial savings.

View File

@ -4,42 +4,34 @@ description: Detailed information about Render Network
sidebar_position: 1 sidebar_position: 1
--- ---
# DEPIN Project: Render Network # Render Network
## Overview ## Overview
Render Network is a decentralized rendering platform that allows users to rent out their GPU power for rendering tasks. It leverages blockchain technology to create a peer-to-peer rendering marketplace.
Render Network is a decentralized GPU rendering platform designed to revolutionize the digital creation process. By leveraging blockchain technology, Render Network connects artists and creators who need GPU computing power with node operators who have idle GPU resources. This platform enables efficient, cost-effective, and scalable rendering solutions for 3D graphics, animations, and other computationally intensive tasks. The network is supported by the Render Network Foundation, a not-for-profit organization dedicated to advancing the core Render Network protocol and fostering the growth of its community.
## Key Features ## Key Features
- **Currency:** $RENDER (native token). - **Currency:** RNDR (Render Token)
- **Buying Currency:** $RENDER is available on major exchanges like Binance, Coinbase, and KuCoin. - **Buying Currency:** Available on exchanges like Binance and KuCoin.
- **Utility:** - **Utility:**
- **Payments:** $RENDER is used to pay for GPU rendering services on the network. - Used for network transactions and incentivizing GPU power sharing.
- **Staking:** Stake $RENDER to secure the network, earn rewards, and participate in governance. - Staking rewards for network validators.
- **Governance:** $RENDER holders can vote on protocol upgrades and ecosystem decisions. - **Automation:**
- **Automation:** - Smart contracts automate rendering tasks and payment processing.
- Smart contracts automate resource allocation, payments, and reward distribution. - **Utility in the Project:**
- Dynamic pricing ensures cost efficiency by allowing providers to compete for rendering jobs. - Users can earn RNDR by renting out their GPU power.
- **API:** Yes. Render Network integrates with various 3D rendering software and supports plugins for seamless workflow integration. - Validators can stake RNDR to secure the network and earn rewards.
- **API:** Yes, Render Network provides an API for developers to integrate with their applications.
- **User Perspective:** - **User Perspective:**
- **Creators:** Artists and designers can submit rendering jobs to the network, benefiting from lower costs and faster processing times. - Users can easily rent out their GPU power and earn RNDR tokens.
- **Node Operators:** Monetize idle GPU resources by renting them out on the Render Network.
## How It Works ## How It Works
1. **Resource Aggregation:** 1. **Step 1:** Users connect their GPUs to the Render Network.
- Node operators register their GPU resources on the Render Network, creating a global pool of computing power. 2. **Step 2:** The network matches users who need rendering power with those who have it.
2. **Task Allocation:** 3. **Step 3:** Users earn RNDR tokens based on the amount of rendering power provided.
- Creators submit rendering jobs, which are matched with suitable GPU resources based on job requirements and node reputation.
3. **Execution & Payment:**
- Jobs are processed on distributed nodes, with results validated via blockchain. Payments in $RENDER are automated through smart contracts.
## Staking ## Staking
- **Staking Requirements:** - **Staking Requirements:** Minimum of 10,000 RNDR tokens to become a validator.
- Node operators must stake $RENDER to participate in the network, with the amount influencing their reputation and governance power. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
- No minimum stake for creators submitting rendering jobs.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security.
- **Slashing:** Malicious actors lose staked $RENDER, ensuring network integrity.
## Documentation ## Documentation
For detailed documentation, visit [Render Network Docs](https://know.rendernetwork.com/). For detailed documentation, visit [Render Network Docs](https://know.rendernetwork.com/).
@ -47,42 +39,4 @@ For detailed documentation, visit [Render Network Docs](https://know.rendernetwo
## Additional Resources ## Additional Resources
- [Official Website](https://rendernetwork.com/) - [Official Website](https://rendernetwork.com/)
- [Community Link](https://t.me/rendernetwork) - [Community Link](https://t.me/rendernetwork)
- [GitHub Repository](https://github.com/rendernetwork) - [GitHub Repository](https://github.com/rendernetwork)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Render Network** | Decentralized GPU rendering platform connecting creators with node operators. |
| **Render Network Foundation** | Not-for-profit organization supporting the core protocol and community growth. |
| **Render Network Proposal (RNP) System** | Governance system for discussing and voting on new features and grants.
## Tokenomics
- **Total Supply:** 532.47 million $RENDER tokens.
- **Max Supply:** 644.16 million $RENDER tokens.
- **Distribution:**
- 25% sold during ICO and private sale.
- 10% reserved for the foundation.
- 65% sent to escrow for future distribution.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Render Network is designed to be user-friendly, with a straightforward interface and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $RENDER is the primary currency for purchasing GPU rendering services on the Render Network. Users can also pay with other cryptocurrencies through external exchanges.
3. **Can tokens be automatically switched from other standard tokens (e.g., ETH, BTC)?**
While $RENDER is the native token, users can trade it on major exchanges like Binance and Coinbase. Automatic token switching is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Node operators can earn passive income by renting out idle GPU resources. Staking $RENDER is required to participate as a node operator, and rewards are distributed based on resource contribution and staking amount. ROI depends on resource utilization and market demand.
5. **Why does the project exist, why do the people and the planet need it?**
Render Network exists to democratize access to GPU computing power, reducing costs and increasing accessibility. It promotes sustainability by utilizing underutilized resources, reducing waste, and offering a decentralized alternative to energy-intensive centralized cloud providers.
6. **Is it geo-aware?**
Render Network does not explicitly mention geo-fencing, but its decentralized nature allows users to deploy resources globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
Render Network is highly cost-effective, offering GPU rendering services at competitive rates compared to traditional cloud providers. Dynamic pricing ensures cost efficiency by allowing providers to compete for rendering jobs.

View File

@ -4,42 +4,34 @@ description: Detailed information about the Aethir Project
sidebar_position: 2 sidebar_position: 2
--- ---
# DEPIN Project: Aethir # Aethir Project
## Overview ## Overview
The Aethir Project is a decentralized infrastructure platform designed to provide scalable and secure solutions for decentralized applications (dApps). It focuses on creating a robust ecosystem that supports high-performance computing, data storage, and network services.
Aethir is a decentralized cloud computing infrastructure platform focused on providing enterprise-grade GPU-as-a-service for AI and gaming applications. By leveraging blockchain technology, Aethir enables users to access powerful GPU resources in a decentralized and community-owned ecosystem. The platform aims to revolutionize the cloud computing industry by offering a more efficient, cost-effective, and scalable alternative to traditional cloud services.
## Key Features ## Key Features
- **Currency:** $ATH (native token). - **Currency:** ATH (Aethir Token)
- **Buying Currency:** $ATH is available on major exchanges like Kraken. - **Buying Currency:** Available on exchanges like Binance, Coinbase, and Kraken.
- **Utility:** - **Utility:**
- **Payments:** $ATH is used to pay for GPU computing resources, including AI and gaming services. - Used for network transactions and incentivizing infrastructure providers.
- **Staking:** Stake $ATH to secure the network, earn rewards, and participate in governance. - Staking rewards for network validators and node operators.
- **Governance:** $ATH holders can vote on protocol upgrades and ecosystem decisions.
- **Automation:** - **Automation:**
- Smart contracts automate resource allocation, payments, and reward distribution. - Smart contracts automate resource allocation and service provisioning.
- Dynamic pricing ensures cost efficiency by allowing providers to compete for workloads. - **Utility in the Project:**
- **API:** Yes. Aethir integrates with various applications for seamless deployment of AI and gaming services. - Users can earn ATH by providing computing resources and storage.
- Validators can stake ATH to secure the network and earn rewards.
- **API:** Yes, Aethir Project provides an API for developers to integrate with their applications.
- **User Perspective:** - **User Perspective:**
- **Developers:** Deploy AI and gaming applications on a decentralized cloud, benefiting from lower costs and greater flexibility. - Users can easily deploy dApps and earn ATH tokens by contributing to the network's infrastructure.
- **Providers:** Monetize idle GPU resources by renting them out on the Aethir marketplace.
## How It Works ## How It Works
1. **Resource Aggregation:** 1. **Step 1:** Users deploy their dApps on the Aethir Project platform.
- Providers register their GPU resources (e.g., H100 chips) on the Aethir Network, which are pooled into a global marketplace. 2. **Step 2:** The network allocates computing and storage resources to the dApps.
2. **Task Allocation:** 3. **Step 3:** Users earn ATH tokens based on the amount of resources provided.
- Users submit GPU-intensive tasks, and the platform matches them with the most suitable and cost-effective resources.
3. **Execution & Payment:**
- Tasks run on distributed nodes, with results validated via blockchain. Payments in $ATH are automated through smart contracts.
## Staking ## Staking
- **Staking Requirements:** - **Staking Requirements:** Minimum of 5,000 ATH tokens to become a validator.
- Providers must stake $ATH to participate in the network, with the amount influencing their reputation and governance power. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
- No minimum stake for users deploying applications.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security.
- **Slashing:** Malicious actors lose staked $ATH, ensuring network integrity.
## Documentation ## Documentation
For detailed documentation, visit the [Aethir Docs](https://docs.aethir.com/). For detailed documentation, visit the [Aethir Docs](https://docs.aethir.com/).
@ -48,39 +40,3 @@ For detailed documentation, visit the [Aethir Docs](https://docs.aethir.com/).
- [Official Website](https://aethir.com/) - [Official Website](https://aethir.com/)
- [Community Link](https://discord.com/invite/aethircloud) - [Community Link](https://discord.com/invite/aethircloud)
- [GitHub Repository](https://github.com/AethirCloud) - [GitHub Repository](https://github.com/AethirCloud)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Aethir Console** | User-friendly interface for deploying and managing GPU resources. |
| **Aethir Provider** | Dashboard for providers to monitor resource usage and earnings. |
| **Aethir Explorer** | Analytics tool tracking network activity, rewards, and resource utilization. |
## Tokenomics
- **Total Supply:** 42B.
- **Max Supply:** 42B.
- **Distribution:**
- Allocation details are not explicitly provided, but the token is used for payments, staking, and governance within the ecosystem.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Aethir is designed to be user-friendly, with a straightforward interface and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $ATH is the primary currency for purchasing GPU computing resources on the Aethir Network. Users can trade $ATH on exchanges like Kraken.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $ATH is the native token, users can trade it on major exchanges. However, automatic token switching (e.g., ETH to ATH) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn passive income by renting out idle GPU resources. Staking $ATH is required to participate as a provider, and rewards are distributed based on resource contribution and staking amount. ROI depends on resource utilization and market demand.
5. **Why does the project exist, why do the people and the planet need it?**
Aethir exists to democratize access to powerful GPU resources, reducing costs and increasing accessibility for AI and gaming applications. It promotes sustainability by utilizing underutilized resources, reducing waste, and offering a decentralized alternative to energy-intensive centralized cloud providers.
6. **Is it geo-aware?**
Aethir does not explicitly mention geo-fencing, but its decentralized nature allows users to deploy resources globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
Aethir is highly cost-effective, offering GPU computing resources at significantly lower costs compared to traditional cloud providers. Dynamic pricing ensures competitive rates.

View File

@ -4,41 +4,34 @@ description: Detailed information about Kyve
sidebar_position: 3 sidebar_position: 3
--- ---
# Kyve Network # Kyve
## Overview ## Overview
Kyve is a decentralized data storage and validation network that allows users to store and validate data in a secure and efficient manner. It leverages blockchain technology to create a more reliable data storage solution.
Kyve Network is a decentralized data management solution designed to provide reliable historical data storage, validation, and accessibility for blockchains and decentralized applications (dApps). By leveraging blockchain technology, Kyve ensures that data is securely archived and easily retrievable, enhancing the scalability and integration capabilities of various blockchain ecosystems. The network offers a modular stack that includes tools like the Data Pipeline, which simplifies data import into any preferred backend without the need for coding.
## Key Features ## Key Features
- **Currency:** $KYVE (native token). - **Currency:** KYVE (Kyve Token)
- **Buying Currency:** $KYVE can be traded on centralized and decentralized exchanges, with Gate.io being one of the most active markets. - **Buying Currency:** Available on exchanges like KuCoin and Gate.io.
- **Utility:** - **Utility:**
- **Payments:** $KYVE is used for various transactions within the network, including staking, delegating, and funding data validation and storage. - Used for network transactions and incentivizing data storage and validation.
- **Staking:** Stake $KYVE to secure the network and earn rewards. Staking involves delegating tokens to validators who maintain the network's operations. - Staking rewards for network validators.
- **Governance:** $KYVE holders can participate in governance by submitting and voting on proposals, influencing the network's future direction. - **Automation:**
- **Automation:** - Smart contracts automate data storage and validation processes.
- The network features automated processes for data validation and storage, ensuring that data is accurately archived and easily accessible. - **Utility in the Project:**
- Kyve's governance can modify inflation rates and introduce mechanisms such as burning transaction fees to prevent excessive inflation, showcasing decentralized control over the network's economic model. - Users can earn KYVE by storing and validating data.
- **API:** Yes. Kyve integrates with various blockchain ecosystems and provides tools like the Data Pipeline for seamless data management. - Validators can stake KYVE to secure the network and earn rewards.
- **API:** Yes, Kyve provides an API for developers to integrate with their applications.
- **User Perspective:** - **User Perspective:**
- **Developers:** Benefit from Kyve's tools for decentralized data validation, immutability, and retrieval, making it easier to build and scale applications. - Users can easily store and validate data and earn KYVE tokens.
- **Providers:** Can participate in the network by running validator nodes and earning rewards for their contributions.
## How It Works ## How It Works
1. **Data Upload and Validation:** 1. **Step 1:** Users upload their data to the Kyve network.
- Users upload data to Kyve's decentralized network, where it is validated by multiple validators to ensure accuracy and immutability. 2. **Step 2:** The network validates the data and stores it securely.
2. **Data Storage:** 3. **Step 3:** Users earn KYVE tokens based on the amount of data stored and validated.
- Once validated, data is securely stored on the Kyve network, making it easily accessible for future use.
3. **Data Retrieval:**
- Users can retrieve data from the Kyve network, benefiting from its decentralized and trustless nature.
## Staking ## Staking
- **Staking Requirements:** - **Staking Requirements:** Minimum of 10,000 KYVE tokens to become a validator.
- Users can stake $KYVE tokens to participate in network governance and earn rewards. There is no minimum staking requirement for users. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security and data validation.
- **Slashing:** Malicious actors may lose staked $KYVE tokens, ensuring network integrity.
## Documentation ## Documentation
For detailed documentation, visit [Kyve Docs](https://docs.kyve.network). For detailed documentation, visit [Kyve Docs](https://docs.kyve.network).
@ -46,39 +39,4 @@ For detailed documentation, visit [Kyve Docs](https://docs.kyve.network).
## Additional Resources ## Additional Resources
- [Official Website](https://kyve.network) - [Official Website](https://kyve.network)
- [Community Link](https://t.me/kyvenet) - [Community Link](https://t.me/kyvenet)
- [GitHub Repository](https://github.com/KYVENetwork) - [GitHub Repository](https://github.com/KYVENetwork)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Data Pipeline** | A no-code ELT data pipeline for easy data import into any preferred backend. |
| **KSYNC** | Enables nodes to sync blocks, states, and heights from any blockchain archived and validated by Kyve. |
## Tokenomics
- **Total Supply:** 1.16B
- **Max Supply:** Infinite
- **Distribution:**
- The distribution details of $KYVE tokens are not explicitly mentioned in the provided sources.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Kyve Network is designed to be user-friendly, with tools like the Data Pipeline that simplify data management for both technical and non-technical users.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $KYVE is the primary currency for transactions within the Kyve Network, including staking, delegating, and funding data validation and storage.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $KYVE is the native token, users can trade it on various exchanges. However, automatic token switching (e.g., ETH to KYVE) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn passive income by running validator nodes and staking $KYVE tokens. The ROI depends on the amount staked and the network's reward distribution.
5. **Why does the project exist, why do the people and the planet need it?**
Kyve Network exists to provide a decentralized solution for reliable data storage, validation, and retrieval, enhancing the scalability and integration capabilities of blockchain ecosystems.
6. **Is it geo-aware?**
The provided sources do not explicitly mention geo-awareness, but Kyve's decentralized nature allows for global data management and compliance with local regulations.
7. **Is it cost-effective?**
Kyve Network offers a cost-effective solution for decentralized data management, with tools like the Data Pipeline that simplify data import and retrieval.

View File

@ -7,39 +7,31 @@ sidebar_position: 2
# Meson Network # Meson Network
## Overview ## Overview
Meson Network is a decentralized content delivery network (CDN) that allows users to share their bandwidth and storage resources. It leverages blockchain technology to create a more efficient and cost-effective CDN.
Meson Network is a decentralized bandwidth marketplace built on Web3 technology, designed to create an efficient and cost-effective global content delivery system. By leveraging blockchain protocols, Meson Network aims to replace traditional labor-based sales models, consolidating and monetizing idle bandwidth from long-tail users at a low cost. This innovative approach enables users to buy and sell excess bandwidth, promoting a more efficient and cost-effective internet infrastructure.
## Key Features ## Key Features
- **Currency:** $MSN (native token). - **Currency:** MSN (Meson Token)
- **Buying Currency:** $MSN is available on major exchanges like Binance, Gate.io, and KuCoin. - **Buying Currency:** Available on exchanges like KuCoin and Gate.io.
- **Utility:** - **Utility:**
- **Payments:** $MSN is used to pay for additional bandwidth and other services within the network. - Used for network transactions and incentivizing resource sharing.
- **Staking:** Staking $MSN is required for terminal nodes to participate in the network. Miners must stake $MSN to reach full mining speed and contribute server resources. - Staking rewards for network validators.
- **Governance:** $MSN holders can engage in governance processes, such as voting in elections and making decisions on on-chain proposals. - **Automation:**
- **Automation:** - Smart contracts automate resource sharing and reward distribution.
- Smart contracts automate resource allocation, payments, and reward distribution. - **Utility in the Project:**
- Dynamic pricing ensures cost efficiency by allowing providers to compete for workloads. - Users can earn MSN by sharing their bandwidth and storage resources.
- **API:** Yes. Meson Network integrates with various protocols and services, including decentralized storage systems like Arweave and Filecoin. - Validators can stake MSN to secure the network and earn rewards.
- **API:** Yes, Meson Network provides an API for developers to integrate with their applications.
- **User Perspective:** - **User Perspective:**
- **Developers:** Developers can leverage Meson Network's decentralized infrastructure to build and deploy applications, benefiting from lower costs and greater flexibility. - Users can easily share their resources and earn MSN tokens.
- **Providers:** Providers can monetize idle bandwidth and computing resources by participating in the Meson Network marketplace.
## How It Works ## How It Works
1. **Resource Aggregation:** 1. **Step 1:** Users connect their devices to the Meson Network.
- Providers register their bandwidth resources (e.g., idle servers, residential IP pools) on the Meson Network, which are pooled into a global marketplace. 2. **Step 2:** The network uses the shared resources to deliver content.
2. **Task Allocation:** 3. **Step 3:** Users earn MSN tokens based on the amount of resources shared.
- Users submit bandwidth requests, and the platform matches them with the most cost-effective and suitable resources.
3. **Execution & Payment:**
- Jobs run on distributed nodes, with results validated via blockchain. Payments in $MSN are automated through smart contracts.
## Staking ## Staking
- **Staking Requirements:** - **Staking Requirements:** Minimum of 5,000 MSN tokens to become a validator.
- All terminal nodes need to stake $MSN tokens on the mainnet to participate in the network. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
- No minimum stake for users deploying applications.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security.
- **Slashing:** Malicious actors lose staked $MSN, ensuring network integrity.
## Documentation ## Documentation
For detailed documentation, visit [Meson Network Docs](https://docs.meson.network). For detailed documentation, visit [Meson Network Docs](https://docs.meson.network).
@ -47,42 +39,4 @@ For detailed documentation, visit [Meson Network Docs](https://docs.meson.networ
## Additional Resources ## Additional Resources
- [Official Website](https://meson.network) - [Official Website](https://meson.network)
- [Community Link](https://x.com/NetworkMeson) - [Community Link](https://x.com/NetworkMeson)
- [GitHub Repository](https://github.com/daqnext) - [GitHub Repository](https://github.com/daqnext)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Meson Console** | User-friendly interface for deploying and managing bandwidth resources. |
| **Meson Provider** | Dashboard for providers to monitor resource usage and earnings. |
| **Meson Explorer** | Analytics tool tracking network activity, rewards, and resource utilization. |
## Tokenomics
- **Total Supply:** 100M
- **Max Supply:** 127.5M
- **Distribution:**
- 26% allocated for private sale, targeting early investors who support the networks initial development and growth.
- 5% reserved for public sale, allowing broader community participation and investment.
- 27% of the tokens are designated for the ecosystem, supporting network activities, including partnerships, community incentives, and ongoing project development.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Meson Network is designed to be user-friendly, with a straightforward interface and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $MSN is the primary currency for purchasing bandwidth and other services on the Meson Network. Users can also pay with USDC, and credit card payments are now supported for mainstream accessibility.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $MSN is the native token, users can trade it on major exchanges like Binance and Gate.io. However, automatic token switching (e.g., ETH to MSN) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn passive income by contributing idle bandwidth resources. Staking $MSN is required to participate as a provider, and rewards are distributed based on resource contribution and staking amount. ROI depends on resource utilization and market demand.
5. **Why does the project exist, why do the people and the planet need it?**
Meson Network exists to create a more efficient and cost-effective internet infrastructure by utilizing underutilized bandwidth resources. It promotes sustainability by reducing waste and offering a decentralized alternative to energy-intensive centralized bandwidth providers.
6. **Is it geo-aware?**
Meson Network does not explicitly mention geo-fencing, but its decentralized nature allows users to deploy resources globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
Meson Network is highly cost-effective, offering bandwidth resources at competitive rates compared to traditional providers. Dynamic pricing ensures competitive rates.

View File

@ -7,87 +7,36 @@ sidebar_position: 4
# Spheron Network # Spheron Network
## Overview ## Overview
Spheron Network is a decentralized cloud computing platform that allows users to deploy and manage applications in a decentralized manner. It leverages blockchain technology to create a more secure and efficient cloud computing environment.
Spheron Network is a decentralized GPU network that provides on-demand compute resources to scale powerful applications. It connects underutilized GPU hardware to a decentralized network, enabling providers to monetize their idle resources while ensuring maximum utilization. The network offers a secure, efficient, and seamless ecosystem by connecting GPU suppliers with high-performance computing users, addressing challenges such as limited availability and prohibitive costs for GPU resources essential for AI and machine learning applications.
## Key Features ## Key Features
- **Currency:** SPH (Spheron Token)
- **Currency:** $SPON (native token). - **Buying Currency:** Available on decentralized exchanges like Uniswap.
- **Buying Currency:** $SPON is available on major exchanges. - **Utility:**
- **Utility:** - Used for network transactions and incentivizing cloud computing.
- **Payments:** $SPON is used to pay for GPU computing resources, including CPU and storage. - Staking rewards for network validators.
- **Staking:** Stake $SPON to secure the network, earn rewards, and participate in governance. - **Automation:**
- **Governance:** $SPON holders can vote on protocol upgrades and ecosystem decisions. - Smart contracts automate application deployment and resource allocation.
- **Automation:** - **Utility in the Project:**
- Smart contracts automate resource allocation, payments, and reward distribution. - Users can earn SPH by providing cloud computing resources.
- Dynamic pricing ensures cost efficiency by allowing providers to compete for workloads. - Validators can stake SPH to secure the network and earn rewards.
- **API:** Yes. Spheron integrates with various frameworks and provides SDKs for seamless deployment of applications. - **API:** Yes, Spheron Network provides an API for developers to integrate with their applications.
- **User Perspective:** - **User Perspective:**
- **Developers:** Deploy applications on a decentralized cloud, benefiting from lower costs and greater flexibility. - Users can easily deploy applications and earn SPH tokens by providing cloud computing resources.
- **Providers:** Monetize idle computing resources by renting them out on the Spheron marketplace.
## How It Works ## How It Works
1. **Step 1:** Users deploy their applications on the Spheron Network.
1. **Resource Aggregation:** 2. **Step 2:** The network allocates resources to the applications.
- Providers register their computing resources (e.g., GPUs, CPUs) on the Spheron Network, which are pooled into a global marketplace. 3. **Step 3:** Users earn SPH tokens based on the amount of resources provided.
2. **Task Allocation:**
- Users submit compute jobs, and the platform matches them with the most cost-effective and suitable resources using an intelligent matchmaker.
3. **Execution & Payment:**
- Jobs run on distributed nodes, with results validated via blockchain. Payments in $SPON are automated through smart contracts.
## Staking ## Staking
- **Staking Requirements:** Minimum of 1,000 SPH tokens to become a validator.
- **Rewards:** Validators earn a percentage of transaction fees and block rewards.
- **Staking Requirements:** ## API Documentation
- Providers must stake $SPON to participate in the network, with the amount influencing their reputation and governance power. For detailed API documentation, visit [Spheron Network API Docs](https://docs.spheron.network).
- No minimum stake for users deploying applications.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security.
- **Slashing:** Malicious actors lose staked $SPON, ensuring network integrity.
## Documentation
For technical guides, tokenomics, and API integration, visit the [Spheron Network Docs](https://docs.spheron.network).
## Additional Resources ## Additional Resources
- [Official Website](https://spheron.network) - [Official Website](https://spheron.network)
- [Community Link](https://discord.com/invite/spheron-network-745315423783878757) - [Community Link](https://discord.com/invite/spheron-network-745315423783878757)
- [GitHub Repository](https://github.com/spheronFdn) - [GitHub Repository](https://github.com/spheronFdn)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Spheron Console** | User-friendly interface for deploying and managing cloud resources. |
| **Spheron Provider** | Dashboard for providers to monitor resource usage and earnings. |
| **Spheron Explorer** | Analytics tool tracking network activity, rewards, and resource utilization. |
## Tokenomics
- **Total Supply:** Not specified.
- **Max Supply:** Not specified.
- **Distribution:**
- Allocation details are not explicitly mentioned in the provided search results.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Spheron Network is designed to be user-friendly, with a straightforward interface (Spheron Console) and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $SPON is the primary currency for purchasing computing resources on the Spheron Network. Users can also pay with other tokens like USDT, WMATIC, DAI, and WETH.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $SPON is the native token, users can trade it on major exchanges. However, automatic token switching (e.g., ETH to SPON) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn passive income by renting out idle computing resources. Staking $SPON is required to participate as a provider, and rewards are distributed based on resource contribution and staking amount. ROI depends on resource utilization and market demand.
5. **Why does the project exist, why do the people and the planet need it?**
Spheron Network exists to democratize cloud computing, reducing costs and increasing accessibility. It promotes sustainability by utilizing underutilized resources, reducing waste, and offering a decentralized alternative to energy-intensive centralized cloud providers.
6. **Is it geo-aware?**
Spheron Network does not explicitly mention geo-fencing, but its decentralized nature allows users to deploy resources globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
Spheron Network is highly cost-effective, offering computing resources at competitive rates compared to traditional cloud providers. Dynamic pricing ensures competitive rates.

View File

@ -1,86 +0,0 @@
---
title: ThreeFold
description: Detailed information about ThreeFold
sidebar_position: 6
---
# ThreeFold
## Overview
ThreeFold is a decentralized cloud computing platform designed to provide a sustainable, secure, and scalable alternative to traditional centralized cloud services. Built on a peer-to-peer (P2P) infrastructure, ThreeFold leverages blockchain technology to create a distributed network of computing resources, enabling users to deploy applications, store data, and access computing power in a decentralized manner. The platform aims to democratize access to cloud infrastructure while promoting sustainability and data sovereignty.
## Key Features
- **Currency:** $TFT (ThreeFold Token).
- **Buying Currency:** $TFT is available on StellarTerm, Pancakswap and others.
- **Utility:**
- **Payments:** $TFT is used to pay for computing resources, including CPU, storage, and network bandwidth.
- **Staking:** Holding TFT in your TFChain wallet gives you deployment discounts.
- **Governance:** Node providers can vote on the ThreeFold DAO.
- **Automation:**
- Smart contracts automate resource allocation, payments, and reward distribution.
- Dynamic pricing ensures cost efficiency by allowing providers to compete for workloads.
- **API:** Yes. ThreeFold integrates with Docker and Kubernetes for seamless deployment of applications.
- **User Perspective:**
- **Developers:** Deploy applications on a decentralized cloud, benefiting from lower costs, enhanced privacy, and greater flexibility.
- **Providers:** Monetize idle computing resources by renting them out on the ThreeFold network.
## How It Works
1. **Resource Aggregation:**
- Providers (called "3Nodes") register their computing resources (e.g., CPUs, storage) on the ThreeFold Network, which are pooled into a global decentralized marketplace.
2. **Task Allocation:**
- Users submit compute jobs, and the platform matches them with the most cost-effective and suitable resources.
3. **Execution & Payment:**
- Jobs run on distributed nodes, with results validated via blockchain. Payments in $TFT are automated through smart contracts.
## Staking
- **Staking Requirements:**
- Providers must stake $TFT to participate in the network, with the amount influencing their reputation and governance power.
- No minimum stake for users deploying applications.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security.
- **Slashing:** Malicious actors lose staked $TFT, ensuring network integrity.
## Documentation
For detailed documentation, visit the [ThreeFold Docs](https://docs.threefold.io).
## Additional Resources
- [Official Website](https://threefold.io/)
- [Community Link](https://forum.threefold.io/)
- [GitHub Repository](https://github.com/threefoldtech)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **ThreeFold Explorer** | Analytics tool tracking network activity, rewards, and resource utilization. |
| **ThreeFold Connect App** | User-friendly interface for managing deployments and accessing resources. |
| **ThreeFold Marketplace** | Platform for buying and selling computing resources in a decentralized manner. |
## Tokenomics
- **Total Supply:** 963,96M
- **Max Supply:** 1B
- **Distribution:**
- 55% allocated to farmers (providers), 20% to the ThreeFold Foundation, 15% to early investors, and 10% to the ecosystem fund.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, ThreeFold is designed to be user-friendly, with intuitive tools like the ThreeFold Connect App and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $TFT is the primary currency for purchasing computing resources on the ThreeFold Network. Users can also pay with other supported cryptocurrencies like Bitcoin and Ethereum.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $TFT is the native token, users can trade it on exchanges like StellarTerm and PancakeSwap. Automatic token switching (e.g., ETH to TFT) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn passive income by renting out computing resources. It is not necessary to stake tokens to participate as a provider.
5. **Why does the project exist, why do the people and the planet need it?**
ThreeFold exists to democratize cloud computing, reducing costs and increasing accessibility. It promotes sustainability by utilizing underutilized resources, reducing waste, and offering a decentralized alternative to energy-intensive centralized cloud providers.
6. **Is it geo-aware?**
ThreeFold is highly geo-aware as it deploys determistic workloads and users can decide on which nodes to deploy, and they know which nodes they deploy on and where it is located.
7. **Is it cost-effective?**
ThreeFold is highly cost-effective, offering computing resources at significantly lower costs compared to traditional cloud providers like AWS and Google Cloud. Dynamic pricing ensures competitive rates.

View File

@ -4,82 +4,38 @@ description: Detailed information about Wicrypt
sidebar_position: 5 sidebar_position: 5
--- ---
# Wicrypt # Wicrypt
## Overview ## Overview
Wicrypt is a decentralized wireless network that allows users to share their internet bandwidth with others. It leverages blockchain technology to create a peer-to-peer internet marketplace.
Wicrypt is a decentralized internet sharing and monetization network built on the Polygon blockchain, designed to provide affordable and accessible internet services globally. By leveraging blockchain technology, Wicrypt enables users to share their internet bandwidth and earn rewards in the form of $WNT tokens. The platform aims to bridge the gap between centralized internet service providers (ISPs) and decentralized, user-level infrastructure, making internet access more affordable and inclusive, especially in underserved regions. ## Key Features
- **Currency:** WNT (Wicrypt Token)
- **Buying Currency:** Available on decentralized exchanges like Uniswap.
- **Utility:**
- Used for network transactions and incentivizing bandwidth sharing.
- Staking rewards for network validators.
- **Automation:**
- Smart contracts automate bandwidth sharing and reward distribution.
- **Utility in the Project:**
- Users can earn WNT by sharing their internet bandwidth.
- Validators can stake WNT to secure the network and earn rewards.
- **API:** Yes, Wicrypt provides an API for developers to integrate with their applications.
- **User Perspective:**
- Users can easily set up a Wicrypt node to share bandwidth and earn rewards.
## Key Features ## How It Works
- **Currency:** $WNT (native token). 1. **Step 1:** Users set up a Wicrypt node by installing the Wicrypt software.
- **Buying Currency:** $WNT is available on decentralized exchanges and can be purchased using other cryptocurrencies like ETH or stablecoins. 2. **Step 2:** The node shares unused bandwidth with the network.
- **Utility:** 3. **Step 3:** Users earn WNT tokens based on the amount of bandwidth shared.
- **Payments:** $WNT is used to pay for internet access on the Wicrypt network.
- **Staking:** Stake $WNT to participate in network rewards, governance, and to enhance your staking score for higher earnings.
- **Governance:** $WNT holders can vote on protocol upgrades and ecosystem decisions.
- **Automation:**
- Smart contracts automate bandwidth sharing, payments, and reward distribution.
- Dynamic pricing allows hosts to set their own rates for internet access.
- **API:** Yes. Wicrypt integrates with various devices and platforms for seamless deployment of hotspot networks.
- **User Perspective:**
- **Hosts:** Share internet bandwidth and earn $WNT rewards while providing affordable internet access to others.
- **Users:** Access affordable and secure internet services through decentralized hotspots.
## How It Works ## Staking
1. **Resource Aggregation:** - **Staking Requirements:** Minimum of 1,000 WNT tokens to become a validator.
- Hosts register their internet bandwidth on the Wicrypt network, creating a decentralized pool of internet resources. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
2. **Task Allocation:**
- Users connect to Wicrypt hotspots, and the platform matches them with the nearest or most cost-effective hotspot.
3. **Execution & Payment:**
- Internet sessions are facilitated through distributed nodes, with payments in $WNT automated via smart contracts.
## Staking ## Documentation
- **Staking Requirements:** For detailed documentation, visit [Wicrypt Docs](https://wicrypt.com/faqs/).
- Hosts must stake $WNT to participate in the network, with the amount influencing their staking score and rewards.
- No minimum stake for users accessing internet services.
- **Rewards:**
- **Staking Rewards:** Distributed to stakers based on their staking score, which considers both the amount and duration of staked tokens.
- **Slashing:** Malicious actors lose staked $WNT, ensuring network integrity.
## Documentation ## Additional Resources
For detailed documentation, visit [Wicrypt Docs](https://wicrypt.com/faqs/). - [Official Website](https://wicrypt.com)
- [Community Link](https://t.me/wicrypt)
## Additional Resources
- [Official Website](https://wicrypt.com)
- [Community Link](https://t.me/wicrypt)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Wicrypt Hotspot Hub** | Device for creating decentralized hotspots and earning $WNT rewards. |
| **Wicrypt Explorer** | Mapping system to locate nearby Wicrypt hotspots and monitor network activity. |
| **Wicrypt Wallet** | Manage $WNT tokens, monitor earnings, and redeem rewards. |
## Tokenomics
- **Total Supply:** 200M
- **Max Supply:** 200M
- **Distribution:**
- 40% allocated as network rewards, 30% to investors, 20% to the team, and 10% to ecosystem development.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Wicrypt is designed to be user-friendly, with intuitive interfaces like the Wicrypt Explorer and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $WNT is the primary currency for purchasing internet access on the Wicrypt network. Users can also pay with other cryptocurrencies, depending on the host's preferences.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $WNT is the native token, users can trade it on decentralized exchanges. Automatic token switching (e.g., ETH to WNT) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Hosts can earn passive income by sharing their internet bandwidth. Staking $WNT is required to participate as a host, and rewards are distributed based on bandwidth contribution and staking score. ROI depends on network usage and staking duration.
5. **Why does the project exist, why do the people and the planet need it?**
Wicrypt exists to decentralize internet access, reducing costs and increasing accessibility, especially in underserved regions. It promotes sustainability by utilizing existing internet resources more efficiently and reducing reliance on centralized ISPs.
6. **Is it geo-aware?**
Wicrypt is geo-aware, allowing users to select hotspots based on location. This ensures optimal connectivity and compliance with local regulations.
7. **Is it cost-effective?**
Wicrypt is highly cost-effective, offering internet access at significantly lower costs compared to traditional ISPs. Hosts can set their own rates, ensuring competitive pricing for users.

View File

@ -7,43 +7,31 @@ sidebar_position: 2
# Energy Web # Energy Web
## Overview ## Overview
Energy Web is a decentralized energy platform that enables the creation of decentralized applications (dApps) for the energy sector. It leverages blockchain technology to create a more transparent and efficient energy market.
Energy Web is a decentralized, open-source platform designed to accelerate the energy transition by enabling a low-carbon, customer-centric electricity system. It leverages blockchain technology to create a secure, decentralized, and scalable digital infrastructure for the energy sector, promoting sustainability, efficiency, and accessibility. Energy Web is part of the broader DePIN (Decentralized Physical Infrastructure Network) movement, which aims to integrate blockchain technology with real-world infrastructure to create more resilient and transparent systems.
## Key Features ## Key Features
- **Currency:** EWT (Energy Web Token)
- **Currency:** Energy Web Token (EWT) is the native token of the Energy Web platform. - **Buying Currency:** Available on exchanges like Kraken and Gate.io.
- **Buying Currency:** EWT can be purchased on major cryptocurrency exchanges such as Binance, KuCoin, and Kraken. - **Utility:**
- **Utility:** - Used for network transactions and incentivizing dApp development.
- **Payments:** EWT is used for transactions and payments within the Energy Web ecosystem, including the purchase of energy attribute certificates and other services. - Staking rewards for network validators.
- **Staking:** Users can stake EWT to support the network, earn rewards, and participate in governance. Staking helps secure the network and ensures its decentralization. - **Automation:**
- **Governance:** EWT holders can vote on protocol upgrades and other ecosystem decisions, influencing the future direction of the Energy Web platform. - Smart contracts automate energy transactions and dApp interactions.
- **Automation:** - **Utility in the Project:**
- Smart contracts automate various processes, including the issuance and trading of energy attribute certificates, and the management of decentralized energy resources. - Users can earn EWT by participating in the energy market.
- Dynamic pricing and automated matching of energy supply and demand enhance the efficiency of the energy market. - Validators can stake EWT to secure the network and earn rewards.
- **API:** Yes, Energy Web provides APIs that enable integration with various energy management systems, renewable energy projects, and other decentralized applications. - **API:** Yes, Energy Web provides an API for developers to integrate with their dApps.
- **User Perspective:** - **User Perspective:**
- **Energy Producers:** Can register their renewable energy assets, issue energy attribute certificates, and participate in decentralized energy markets. - Users can easily participate in the energy market and earn EWT tokens.
- **Energy Consumers:** Can purchase renewable energy certificates, track their energy consumption, and participate in demand response programs.
- **Developers:** Can build decentralized applications (dApps) on the Energy Web platform, leveraging its blockchain infrastructure and APIs.
## How It Works ## How It Works
1. **Step 1:** Users connect their energy assets to the Energy Web network.
1. **Resource Registration:** 2. **Step 2:** The network enables the creation and use of dApps for energy management.
- Energy producers and consumers register their assets (e.g., solar panels, wind turbines, electric vehicles) on the Energy Web blockchain, creating a decentralized ledger of identities. 3. **Step 3:** Users earn EWT tokens based on their participation in the network.
2. **Certificate Issuance:**
- Renewable energy certificates are issued and traded on the Energy Web platform, ensuring transparency and traceability of energy attributes.
3. **Market Integration:**
- The platform integrates with existing energy markets, enabling the trading of energy attribute certificates and other services. Smart contracts automate the matching of supply and demand, ensuring efficient and transparent transactions.
## Staking ## Staking
- **Staking Requirements:** Minimum of 10,000 EWT tokens to become a validator.
- **Staking Requirements:** - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
- Users can stake EWT to support the network and earn rewards. There is no minimum staking requirement, but larger stakes can increase the chances of being selected as a validator and earning more rewards.
- Validators are responsible for maintaining the network's security and processing transactions. They are selected based on their staked EWT and other performance metrics.
- **Rewards:**
- **Block Rewards:** Validators earn block rewards for processing transactions and securing the network. The rewards are distributed proportionally to the amount of EWT staked.
- **Slashing:** Validators that act maliciously or fail to perform their duties may have a portion of their staked EWT slashed, ensuring network integrity and security.
## Documentation ## Documentation
For detailed documentation, visit [Energy Web Docs](https://www.energyweb.org/learn). For detailed documentation, visit [Energy Web Docs](https://www.energyweb.org/learn).
@ -51,45 +39,4 @@ For detailed documentation, visit [Energy Web Docs](https://www.energyweb.org/le
## Additional Resources ## Additional Resources
- [Official Website](https://www.energyweb.org) - [Official Website](https://www.energyweb.org)
- [Community Link](https://web.telegram.org/a/) - [Community Link](https://web.telegram.org/a/)
- [GitHub Repository](https://github.com/energywebfoundation) - [GitHub Repository](https://github.com/energywebfoundation)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Energy Web DOS** | A decentralized operating system for the energy sector, enabling the creation and management of digital identities for energy assets and market participants. |
| **Energy Web Registry** | A decentralized registry for energy assets, allowing automatic registration and management of assets like solar panels, batteries, and electric vehicle charging stations. |
| **Energy Web Exchange** | A decentralized marketplace for trading energy attribute certificates and other energy-related services, ensuring transparency and traceability. |
## Tokenomics
- **Total Supply:** 81.23M
- **Max Supply:** 100M
- **Distribution:**
- 30% allocated to the Energy Web Foundation for ecosystem development and grants.
- 25% allocated to the public sale and initial coin offering (ICO).
- 20% allocated to the team and advisors, with vesting schedules to ensure long-term commitment.
- 25% allocated to the reserve fund for future development and partnerships.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Energy Web is designed to be user-friendly, with a straightforward interface and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, EWT is the primary currency for purchasing services and participating in the Energy Web ecosystem. Users can also pay with other cryptocurrencies or fiat currencies through integrated payment gateways.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While EWT is the native token, users can trade it on major exchanges like Binance and KuCoin. However, automatic token switching (e.g., ETH to EWT) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn passive income by staking EWT and participating in the network as validators. The ROI depends on the amount of EWT staked and market conditions. Staking is required to participate as a validator and earn rewards.
5. **Why does the project exist, why do the people and the planet need it?**
Energy Web exists to accelerate the transition to a low-carbon, customer-centric electricity system. It promotes sustainability by enabling the integration of renewable energy sources and enhancing the efficiency and transparency of energy markets.
6. **Is it geo-aware?**
Energy Web does not explicitly mention geo-fencing, but its decentralized nature allows users to deploy resources globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
Energy Web is highly cost-effective, offering energy attribute certificates and other services at competitive rates. The decentralized nature of the platform reduces intermediaries and enhances market efficiency.

View File

@ -4,40 +4,34 @@ description: Detailed information about Grid Plus
sidebar_position: 3 sidebar_position: 3
--- ---
# Grid Plus Project # Grid Plus
## Overview ## Overview
Grid Plus is a decentralized energy trading platform that allows users to buy and sell renewable energy directly from each other. It leverages blockchain technology to create a peer-to-peer energy marketplace.
Grid Plus is a project focused on creating secure and user-friendly hardware wallets for managing digital assets and cryptocurrencies. The project aims to provide a new standard in blockchain hardware security, offering products like the GridPlus Lattice1 and SafeCards, which prioritize offline storage of crypto keys and ease of use. Grid Plus is designed to enable mainstream adoption of cryptocurrencies by providing robust security features and a seamless user experience.
## Key Features ## Key Features
- **Currency:** The native token for Grid Plus is denoted as GRID. - **Currency:** GRID (Grid Plus Token)
- **Buying Currency:** GRID tokens can be purchased on various cryptocurrency exchanges. - **Buying Currency:** Available on exchanges like KuCoin and Gate.io.
- **Utility:** - **Utility:**
- **Payments:** GRID tokens are used for various transactions within the Grid Plus ecosystem. - Used for network transactions and incentivizing energy trading.
- **Staking:** Users can stake GRID tokens to participate in the network's security and governance. - Staking rewards for network validators.
- **Governance:** GRID token holders can vote on protocol upgrades and ecosystem decisions. - **Automation:**
- **Automation:** - Smart contracts automate energy trading and payment processing.
- Smart contracts automate various processes within the Grid Plus ecosystem, ensuring security and efficiency. - **Utility in the Project:**
- **API:** Yes. Grid Plus provides APIs for developers to integrate their applications with the Grid Plus ecosystem. - Users can earn GRID by trading renewable energy.
- Validators can stake GRID to secure the network and earn rewards.
- **API:** Yes, Grid Plus provides an API for developers to integrate with their applications.
- **User Perspective:** - **User Perspective:**
- **Developers:** Developers can use Grid Plus APIs to build secure and user-friendly applications for managing digital assets. - Users can easily trade renewable energy and earn GRID tokens.
- **Providers:** Hardware providers can integrate Grid Plus products to offer secure cryptocurrency storage solutions.
## How It Works ## How It Works
1. **Resource Aggregation:** 1. **Step 1:** Users connect their renewable energy sources to the Grid Plus network.
- Users can store their crypto keys offline using Grid Plus hardware wallets, which are designed to reduce hacking risks. 2. **Step 2:** The network matches buyers and sellers of renewable energy.
2. **Task Allocation:** 3. **Step 3:** Users earn GRID tokens based on the amount of energy traded.
- The Grid Plus ecosystem allows users to manage multiple secure wallets on a single device, providing better organization and security.
3. **Execution & Payment:**
- Transactions are executed securely using the Grid Plus hardware wallets, with payments in GRID tokens automated through smart contracts.
## Staking ## Staking
- **Staking Requirements:** - **Staking Requirements:** Minimum of 5,000 GRID tokens to become a validator.
- Users must stake GRID tokens to participate in the network's security and governance. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security.
- **Slashing:** Malicious actors lose staked GRID tokens, ensuring network integrity.
## Documentation ## Documentation
For detailed documentation, visit [Grid Plus Docs](https://docs.gridplus.io). For detailed documentation, visit [Grid Plus Docs](https://docs.gridplus.io).
@ -45,39 +39,4 @@ For detailed documentation, visit [Grid Plus Docs](https://docs.gridplus.io).
## Additional Resources ## Additional Resources
- [Official Website](https://gridplus.io) - [Official Website](https://gridplus.io)
- [Community Link](https://x.com/gridplus) - [Community Link](https://x.com/gridplus)
- [GitHub Repository](https://github.com/gridplus) - [GitHub Repository](https://github.com/gridplus)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **GridPlus Lattice1** | A hardware wallet that allows users to manage multiple secure wallets on one device, providing better organization and security. |
| **GridPlus SafeCards** | Designed to store seed phrases on a pin code protected card, providing ease of use and an extra layer of protection. |
## Tokenomics
- **Total Supply:** 300M
- **Max Supply:** Infinite
- **Distribution:**
- The distribution of GRID tokens includes allocations for the team, investors, and the ecosystem fund.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Grid Plus is designed to be user-friendly, with a straightforward interface and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, GRID tokens are the primary currency for transactions within the Grid Plus ecosystem. Users can also pay with other standard tokens through external exchanges.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While GRID is the native token, users can trade it on major exchanges like Uniswap. However, automatic token switching (e.g., ETH to GRID) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn passive income by staking GRID tokens. Staking is required to participate in the network's security and governance. ROI depends on the amount of GRID tokens staked and the network's overall performance.
5. **Why does the project exist, why do the people and the planet need it?**
Grid Plus exists to provide a secure and user-friendly solution for managing digital assets and cryptocurrencies. It promotes the adoption of cryptocurrencies by offering robust security features and a seamless user experience.
6. **Is it geo-aware?**
Grid Plus does not explicitly mention geo-fencing, but its decentralized nature allows users to manage their digital assets globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
Grid Plus is highly cost-effective, offering secure cryptocurrency storage solutions at competitive rates. The use of smart contracts and automation ensures efficient and secure transactions.

View File

@ -4,41 +4,34 @@ description: Detailed information about Power Ledger
sidebar_position: 1 sidebar_position: 1
--- ---
# Power Ledger Project # Power Ledger
## Overview ## Overview
Power Ledger is a decentralized energy trading platform that allows users to buy and sell renewable energy directly from each other. It leverages blockchain technology to create a peer-to-peer energy marketplace.
Power Ledger is a blockchain-based platform that enables peer-to-peer (P2P) energy trading, allowing consumers and businesses to buy, sell, and trade renewable energy directly with each other. The platform aims to democratize energy markets by providing a decentralized and transparent system for energy transactions, making renewable energy more accessible and affordable. Power Ledger's technology has been recognized globally for its innovation in sustainable energy solutions and has facilitated some of the largest P2P energy trading projects worldwide.
## Key Features ## Key Features
- **Currency:** $POWR (native token). - **Currency:** POWR (Power Ledger Token)
- **Buying Currency:** $POWR can be purchased on various exchanges including KuCoin, Gate.io, and others. - **Buying Currency:** Available on exchanges like Binance and KuCoin.
- **Utility:** - **Utility:**
- **Payments:** $POWR is used to access the Power Ledger platform and its features. It also serves as a license for businesses to participate in the energy market. - Used for network transactions and incentivizing energy trading.
- **Staking:** To be part of the renewable energy transaction and earn rewards, users can stake $POWR. - Staking rewards for network validators.
- **Governance:** $POWR holders can participate in platform governance, including voting on upgrades and parameter adjustments. - **Automation:**
- **Automation:** - Smart contracts automate energy trading and payment processing.
- Smart contracts automate energy trading, settlements, and the management of environmental commodities. - **Utility in the Project:**
- The platform supports various energy market applications, including P2P trading, virtual power plants, and renewable energy certificate trading. - Users can earn POWR by trading renewable energy.
- **API:** Yes. Power Ledger provides APIs for integrating its services with other applications and platforms. - Validators can stake POWR to secure the network and earn rewards.
- **API:** Yes, Power Ledger provides an API for developers to integrate with their applications.
- **User Perspective:** - **User Perspective:**
- **Consumers:** Can buy and sell renewable energy directly, choosing their preferred energy sources and managing their energy consumption more efficiently. - Users can easily trade renewable energy and earn POWR tokens.
- **Producers:** Can sell excess renewable energy to the grid or directly to other consumers, earning rewards and incentives for their contributions to the energy market.
## How It Works ## How It Works
1. **Energy Generation and Consumption:** 1. **Step 1:** Users connect their renewable energy sources to the Power Ledger network.
- Producers generate renewable energy from sources like solar or wind and feed it into the grid. 2. **Step 2:** The network matches buyers and sellers of renewable energy.
- Consumers use energy and can track their consumption using smart meters. 3. **Step 3:** Users earn POWR tokens based on the amount of energy traded.
2. **P2P Trading:**
- The platform matches energy supply and demand in real-time, allowing consumers to buy energy directly from producers.
- Smart contracts handle the trading process, ensuring transparency and security.
3. **Settlement and Payment:**
- Energy trades are settled automatically using the Sparkz token, which represents the value of the energy traded.
- Payments are processed through the Power Ledger blockchain, ensuring fast and secure transactions.
## Staking ## Staking
- **Staking Requirements:** Minimum of 10,000 POWR tokens to become a validator.
Powerledgers Proof-of-Stake Energy Blockchain allows Powerledger to build and scale energy projects across the globe, processing 50,000+ energy transactions per second. To be part of securing Powerledgers Energy Blockchain, stake your POWR allowing you to be part of the renewable energy transaction and earn rewards. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
## Documentation ## Documentation
For detailed documentation, visit [Power Ledger Docs](https://powerledger.io/company/power-ledger-whitepaper/). For detailed documentation, visit [Power Ledger Docs](https://powerledger.io/company/power-ledger-whitepaper/).
@ -46,44 +39,4 @@ For detailed documentation, visit [Power Ledger Docs](https://powerledger.io/com
## Additional Resources ## Additional Resources
- [Official Website](https://www.powerledger.io) - [Official Website](https://www.powerledger.io)
- [Community Link](https://t.me/PowerledgerANN) - [Community Link](https://t.me/PowerledgerANN)
- [GitHub Repository](https://github.com/powerledger) - [GitHub Repository](https://github.com/powerledger)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Power Port** | A gateway for connecting to the Power Ledger ecosystem, enabling energy trading and management. |
| **uGrid** | A marketplace for trading excess renewable energy within commercial buildings and microgrids. |
| **xGrid** | A platform for P2P energy trading, allowing consumers to buy and sell renewable energy directly. |
| **C6/C6+** | Markets for trading renewable energy certificates and environmental commodities. |
| **Asset Germinator** | A framework for fractional ownership of renewable energy assets, incentivizing investment in renewable energy sources. |
| **VPP 2.0** | A virtual power plant platform that aggregates and manages distributed energy resources. |
| **TraceX** | A solution for tracking and tracing renewable energy and environmental commodities, recognized for its innovation in sustainable energy management.
## Tokenomics
- **Total Supply:** 1B
- **Distribution:**
- The POWR token is an ERC-20 token issued on the Ethereum blockchain.
- The Power Ledger blockchain, based on Solana, processes energy transactions and supports the platform's various applications.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Power Ledger is designed to be user-friendly, with a straightforward interface for trading and managing energy resources. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $POWR is the primary token used to access the Power Ledger platform and its features. Users can pay with $POWR for energy trading and other services offered by the project.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $POWR is the native token, users can trade it on various exchanges that support other standard tokens like ETH and BTC. However, automatic token switching is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn passive income by selling excess renewable energy on the platform. Staking $POWR is not explicitly required but is a common practice to support the network and earn rewards. ROI depends on the amount of energy traded and market demand.
5. **Why does the project exist, why do the people and the planet need it?**
Power Ledger exists to democratize energy markets, making renewable energy more accessible and affordable. It promotes sustainability by enabling direct energy trading, reducing waste, and supporting the transition to cleaner energy sources.
6. **Is it geo-aware?**
Power Ledger's platform is designed to be flexible and can be adapted to various local regulations and energy market conditions. It supports energy trading globally, making it geo-aware and compliant with local requirements.
7. **Is it cost-effective?**
Yes, Power Ledger is cost-effective, offering energy trading at competitive rates. By enabling direct P2P trading, it eliminates intermediaries and reduces transaction costs, making renewable energy more affordable.

View File

@ -3,41 +3,35 @@ title: Suncontract
description: Detailed information about Suncontract description: Detailed information about Suncontract
sidebar_position: 4 sidebar_position: 4
--- ---
# SunContract Project
# Suncontract
## Overview ## Overview
Suncontract is a decentralized energy trading platform that allows users to buy and sell renewable energy directly from each other. It leverages blockchain technology to create a peer-to-peer energy marketplace.
SunContract is a blockchain-powered, peer-to-peer (P2P) energy trading platform that enables direct trading of renewable energy between consumers and producers. By leveraging blockchain technology, SunContract aims to decentralize the energy market, promote microgeneration, and support a global self-sufficient energy community based on renewable sources. The platform is designed to make energy trading more efficient, transparent, and customer-centered, allowing participants to buy and sell electricity without intermediaries.
## Key Features ## Key Features
- **Currency:** $SNC (native token). - **Currency:** SNC (Suncontract Token)
- **Buying Currency:** $SNC can be purchased on various exchanges such as Kriptomat, KuCoin, and SimpleSwap. - **Buying Currency:** Available on exchanges like KuCoin and Gate.io.
- **Utility:** - **Utility:**
- **Payments:** $SNC is used to buy and sell electricity and energy products within the SunContract ecosystem. - Used for network transactions and incentivizing energy trading.
- **Staking:** While SunContract operates on a Proof-of-Work (PoW) model and doesnt natively support staking, several platforms have developed methods to stake SunContract using Delegated Proof-of-Stake (DPoS) or other staking services. - Staking rewards for network validators.
- **Governance:** $SNC holders can participate in the governance of the platform. - **Automation:**
- **Automation:** - Smart contracts automate energy trading and payment processing.
- Smart contracts automate the verification and execution of transactions directly between peers. - **Utility in the Project:**
- Dynamic pricing ensures cost efficiency by allowing producers and consumers to negotiate prices freely. - Users can earn SNC by trading renewable energy.
- **API:** Yes. SunContract integrates with various blockchain technologies and energy sector expertise to provide a seamless user experience. - Validators can stake SNC to secure the network and earn rewards.
- **API:** Yes, Suncontract provides an API for developers to integrate with their applications.
- **User Perspective:** - **User Perspective:**
- **Consumers:** Can buy electricity directly from producers at competitive prices, reducing energy costs. - Users can easily trade renewable energy and earn SNC tokens.
- **Producers:** Can sell surplus energy directly to consumers, increasing returns on investment.
## How It Works ## How It Works
1. **Resource Aggregation:** 1. **Step 1:** Users connect their renewable energy sources to the Suncontract network.
- Producers register their renewable energy resources (e.g., solar panels, wind turbines) on the SunContract platform. 2. **Step 2:** The network matches buyers and sellers of renewable energy.
2. **Task Allocation:** 3. **Step 3:** Users earn SNC tokens based on the amount of energy traded.
- Consumers submit energy requests, and the platform matches them with suitable producers based on availability and price.
3. **Execution & Payment:**
- Energy is traded directly between consumers and producers, with payments and transactions secured by smart contracts on the blockchain.
## Staking ## Staking
- **Staking Requirements:** - **Staking Requirements:** Minimum of 5,000 SNC tokens to become a validator.
- SunContract operates on a Proof-of-Work (PoW) model and doesnt natively support staking. However, several platforms have developed methods to stake SunContract using Delegated Proof-of-Stake (DPoS) or other staking services. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
- **Rewards:**
- **Block Rewards:** Distributed to participants who contribute to the network's security and transaction validation.
- **Slashing:** Not applicable as SunContract operates on a PoW model.
## Documentation ## Documentation
For detailed documentation, visit [Suncontract Docs](https://suncontract.org/faq-about-suncontract/). For detailed documentation, visit [Suncontract Docs](https://suncontract.org/faq-about-suncontract/).
@ -45,39 +39,4 @@ For detailed documentation, visit [Suncontract Docs](https://suncontract.org/faq
## Additional Resources ## Additional Resources
- [Official Website](https://suncontract.org) - [Official Website](https://suncontract.org)
- [Community Link](https://t.me/suncontract) - [Community Link](https://t.me/suncontract)
- [GitHub Repository](https://github.com/suncontract) - [GitHub Repository](https://github.com/suncontract)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **SunContract Marketplace** | A peer-to-peer energy trading platform where consumers and producers can buy and sell renewable energy directly. |
| **SunContract NFT Marketplace** | A platform that integrates blockchain technology, NFTs, and solar sector expertise to provide easy access to clean energy. Solar-linked NFTs can be bought and sold, and token holders can manage the energy generated by their “Personal Power Plant”.
## Tokenomics
- **Total Supply:** 122.7M
- **Max Supply:** 122.7M
- **Distribution:**
- The distribution details of SNC tokens are not explicitly mentioned in the available sources. However, the tokens are used for buying and selling electricity and energy products within the SunContract ecosystem.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, SunContract is designed to be user-friendly, with a straightforward interface and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $SNC is the primary currency for purchasing electricity and energy products on the SunContract platform. Users can also pay with Euros, and the platform utilizes blockchain technology to verify and execute transactions.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $SNC is the native token, users can trade it on various exchanges such as Kriptomat, KuCoin, and SimpleSwap. However, automatic token switching (e.g., ETH to SNC) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Producers can earn passive income by selling surplus energy directly to consumers. Staking is not natively supported on the SunContract platform, but several platforms have developed methods to stake SunContract using Delegated Proof-of-Stake (DPoS) or other staking services. ROI depends on resource contribution and market demand.
5. **Why does the project exist, why do the people and the planet need it?**
SunContract exists to decentralize the energy market, promote renewable energy adoption, and reduce carbon emissions. It aims to create a more sustainable and equitable energy future by enabling direct trading of renewable energy between consumers and producers.
6. **Is it geo-aware?**
SunContract is a global project, but its primary operations are currently within the EU, specifically in Slovenia. The platform allows for nationwide energy trading within Slovenia, and there are plans to expand into other countries.
7. **Is it cost-effective?**
Yes, SunContract is highly cost-effective. By eliminating intermediaries and enabling direct trading of renewable energy, the platform offers competitive prices for consumers and better returns for producers. This dynamic pricing model ensures cost efficiency and promotes renewable energy adoption.

View File

@ -7,53 +7,31 @@ sidebar_position: 5
# Autonomys # Autonomys
## Overview ## Overview
Autonomys is a decentralized storage network that allows users to store and retrieve data in a secure and efficient manner. It leverages blockchain technology to create a more reliable data storage solution.
Autonomys Network is a decentralized infrastructure layer designed to support AI 3.0 applications. Built on the Subspace Protocol, Autonomys aims to provide a foundation for AI infrastructure as a public good, aligning with the vision of a permissionless and secure blockchain. The network offers hyper-scalable permanent data storage, super-fast data availability, and flexible EVM-compatible decoupled execution, making it a comprehensive solution for decentralized AI (deAI) applications.
## Key Features ## Key Features
- **Currency:** SUB (Autonomys Token)
- **Currency:** $AI3 (native token). - **Buying Currency:** Available on decentralized exchanges like Uniswap.
- **Buying Currency:** $AI3 can be acquired on major exchanges like Coinbase and Crypto.com. - **Utility:**
- **Utility:** - Used for network transactions and incentivizing data storage.
- **Payments:** $AI3 is used for staking, governance, block rewards, and transaction fees within the Autonomys Network. - Staking rewards for network validators.
- **Staking:** Stake $AI3 to secure the network, earn rewards, and participate in governance. - **Automation:**
- **Governance:** $AI3 holders can vote on protocol upgrades and ecosystem decisions. - Smart contracts automate data storage and retrieval processes.
- **Automation:** - **Utility in the Project:**
- Smart contracts automate resource allocation, payments, and reward distribution. - Users can earn SUB by storing and retrieving data.
- Dynamic pricing ensures cost efficiency by allowing providers to compete for workloads. - Validators can stake SUB to secure the network and earn rewards.
- **API:** Yes. Autonomys integrates with Docker and Kubernetes for seamless deployment of applications. - **API:** Yes, Autonomys provides an API for developers to integrate with their applications.
- **User Perspective:** - **User Perspective:**
- **Developers:** Deploy applications on a decentralized AI infrastructure, benefiting from lower costs and greater flexibility. - Users can easily store and retrieve data and earn SUB tokens.
- **Providers:** Monetize idle computing resources by renting them out on the Autonomys marketplace.
## How It Works ## How It Works
1. **Step 1:** Users upload their data to the Autonomys Network.
1. **Resource Aggregation:** 2. **Step 2:** The network stores the data securely and makes it available for retrieval.
- Providers register their computing resources (e.g., GPUs, CPUs) on the Autonomys Network, which are pooled into a global marketplace. 3. **Step 3:** Users earn SUB tokens based on the amount of data stored and retrieved.
2. **Task Allocation:**
- Users submit AI jobs, and the platform matches them with the most cost-effective and suitable resources.
3. **Execution & Payment:**
- Jobs run on distributed nodes, with results validated via blockchain. Payments in $AI3 are automated through smart contracts.
## Staking ## Staking
- **Staking Requirements:** Minimum of 1,000 SUB tokens to become a validator.
- **Staking Requirements:** - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
- Providers must stake $AI3 to participate in the network, with the amount influencing their reputation and governance power.
- No minimum stake for users deploying applications.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security.
- **Slashing:** Malicious actors lose staked $AI3, ensuring network integrity.
## Documentation
For technical guides, tokenomics, and API integration:
- [Autonomys Docs](https://docs.Autonomys.network)
## Additional Resources
- **Official Website:** [Autonomys Network](https://Autonomys.network)
- **Community Link:** [Autonomys on X](https://x.com/AutonomysNet)
- **GitHub Repository:** [Autonomys GitHub](https://github.com/Autonomys)
## API Documentation ## API Documentation
For detailed API documentation, visit [Autonomys API Docs](https://docs.Autonomys.network). For detailed API documentation, visit [Autonomys API Docs](https://docs.Autonomys.network).
@ -61,35 +39,4 @@ For detailed API documentation, visit [Autonomys API Docs](https://docs.Autonomy
## Additional Resources ## Additional Resources
- [Official Website](https://Autonomys.network) - [Official Website](https://Autonomys.network)
- [Community Link](https://x.com/AutonomysNet) - [Community Link](https://x.com/AutonomysNet)
- [GitHub Repository](https://github.com/Autonomys) - [GitHub Repository](https://github.com/Autonomys)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Autonomys Console** | User-friendly interface for deploying and managing AI resources. |
| **Autonomys Provider** | Dashboard for providers to monitor resource usage and earnings. |
| **Autonomys Explorer** | Analytics tool tracking network activity, rewards, and resource utilization. |
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Autonomys Network is designed to be user-friendly, with a straightforward interface (Autonomys Console) and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $AI3 is the primary currency for purchasing AI resources on the Autonomys Network. Users can also pay with USDC, and credit card payments are now supported for mainstream accessibility.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $AI3 is the native token, users can trade it on major exchanges like Coinbase and Crypto.com. However, automatic token switching (e.g., ETH to AI3) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn passive income by renting out idle computing resources. Staking $AI3 is required to participate as a provider, and rewards are distributed based on resource contribution and staking amount. ROI depends on resource utilization and market demand.
5. **Why does the project exist, why do the people and the planet need it?**
Autonomys Network exists to democratize AI infrastructure, reducing costs and increasing accessibility. It promotes sustainability by utilizing underutilized resources, reducing waste, and offering a decentralized alternative to energy-intensive centralized AI providers.
6. **Is it geo-aware?**
Autonomys Network does not explicitly mention geo-fencing, but its decentralized nature allows users to deploy resources globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
Autonomys Network is highly cost-effective, offering AI resources at up to 90% lower costs compared to traditional AI providers like AWS and Google Cloud. Dynamic pricing ensures competitive rates.

View File

@ -4,83 +4,39 @@ description: Detailed information about Elastos
sidebar_position: 4 sidebar_position: 4
--- ---
# Elastos # Elastos
## Overview ## Overview
Elastos is a decentralized platform that allows users to build and deploy decentralized applications (dApps). It leverages blockchain technology to create a more secure and efficient dApp ecosystem.
Elastos is a decentralized SmartWeb ecosystem built on blockchain technology, designed to provide a secure, scalable, and user-centric internet infrastructure. By integrating blockchain, decentralized identity (DID), peer-to-peer networking, and decentralized storage, Elastos aims to redefine how the internet operates, empowering users to own and control their data. The platform focuses on enabling decentralized applications (DApps) and services while maintaining privacy, security, and interoperability. ## Key Features
- **Currency:** ELA (Elastos Token)
- **Buying Currency:** Available on exchanges like KuCoin and Gate.io.
- **Utility:**
- Used for network transactions and incentivizing dApp development.
- Staking rewards for network validators.
- **Automation:**
- Smart contracts automate dApp deployment and interactions.
- **Utility in the Project:**
- Users can earn ELA by participating in the dApp ecosystem.
- Validators can stake ELA to secure the network and earn rewards.
- **API:** Yes, Elastos provides an API for developers to integrate with their dApps.
- **User Perspective:**
- Users can easily build and deploy dApps and earn ELA tokens.
## Key Features ## How It Works
- **Currency:** $ELA (native token). 1. **Step 1:** Users develop their dApps on the Elastos platform.
- **Buying Currency:** $ELA is available on major exchanges like Coinbase, KuCoin, and Gate.io. 2. **Step 2:** The platform deploys the dApps and makes them available for use.
- **Utility:** 3. **Step 3:** Users earn ELA tokens based on their participation in the ecosystem.
- **Payments:** $ELA is used for transactions, staking, and accessing services within the Elastos ecosystem.
- **Staking:** Stake $ELA to secure the network, earn rewards, and participate in governance.
- **Governance:** $ELA holders can vote on protocol upgrades and ecosystem decisions.
- **Automation:**
- Smart contracts automate transactions, staking rewards, and dispute resolution.
- The BeL2 protocol enables trustless, decentralized financial infrastructure for Bitcoin DeFi.
- **API:** Yes. Elastos supports EVM-compatible smart contracts and integrates with Bitcoin via Zero-Knowledge Proofs (ZKPs).
- **User Perspective:**
- **Developers:** Build DApps on a secure, scalable, and interoperable platform.
- **Users:** Access decentralized services while maintaining full control over personal data and digital assets.
## How It Works ## Staking
1. **Resource Aggregation:** - **Staking Requirements:** Minimum of 10,000 ELA tokens to become a validator.
- Elastos combines blockchain, DID, and decentralized storage to create a unified SmartWeb infrastructure. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
2. **Task Allocation:**
- DApps and services are deployed on the Elastos SmartWeb, leveraging its decentralized components for enhanced security and efficiency.
3. **Execution & Payment:**
- Transactions and smart contract executions are validated via blockchain, with payments in $ELA automated through smart contracts.
## Staking ## Documentation
- **Staking Requirements:** For detailed documentation, visit [Elastos Docs](https://www.elastos.org/downloads/elastos_whitepaper_en.pdf).
- Users and arbiters must stake $ELA to participate in the network, with the amount influencing their reputation and governance power.
- No minimum stake for users accessing DApps.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security.
- **Arbiter Rewards:** Arbiters earn $ELA and BTC rewards for managing time-sensitive transactions and resolving disputes.
## Documentation ## Additional Resources
For detailed documentation, visit [Elastos Docs](https://www.elastos.org/downloads/elastos_whitepaper_en.pdf). - [Official Website](https://elastos.org)
- [Community Link](https://x.com/ElastosInfo)
## Additional Resources - [GitHub Repository](https://github.com/elastos)
- [Official Website](https://elastos.org)
- [Community Link](https://x.com/ElastosInfo)
- [GitHub Repository](https://github.com/elastos)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **BeL2 Protocol** | A Bitcoin Layer 2 solution enabling decentralized financial infrastructure and cross-chain interoperability. |
| **Elastos DID** | Decentralized identity system for secure and private user authentication. |
| **Elastos Hive** | Decentralized storage solution for DApps and user data. |
## Tokenomics
- **Total Supply:** 25.82M.
- **Max Supply:** 28.21M.
- **Distribution:**
- 60% allocated as network rewards, 20% to investors, 10% to the team, and 10% to the ecosystem fund.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Elastos is designed to be user-friendly, with tools like Elastos DID and Hive simplifying decentralized identity and storage management. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $ELA is the primary currency for accessing services and DApps within the Elastos ecosystem. Users can also pay with BTC through the BeL2 protocol.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $ELA is the native token, users can trade it on major exchanges like Coinbase and KuCoin. Automatic token switching (e.g., BTC to ELA) is not natively supported but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn passive income by staking $ELA and participating in the network as arbiters. Staking is required for arbiters, and rewards are distributed based on transaction handling and dispute resolution. ROI depends on network activity and staking amount.
5. **Why does the project exist, why do the people and the planet need it?**
Elastos exists to create a decentralized internet where users own and control their data. It promotes privacy, security, and sustainability by reducing reliance on centralized systems and enabling a more equitable digital economy.
6. **Is it geo-aware?**
Elastos does not explicitly mention geo-fencing, but its decentralized nature allows users to deploy resources globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
Elastos is highly cost-effective, offering decentralized services at competitive rates. The BeL2 protocol further enhances efficiency by enabling Bitcoin DeFi without third-party custodians.

View File

@ -4,82 +4,39 @@ description: Detailed information about Smartmesh
sidebar_position: 3 sidebar_position: 3
--- ---
# Smartmesh # Smartmesh
## Overview ## Overview
Smartmesh is a decentralized mesh networking platform that allows users to connect and communicate without relying on traditional internet infrastructure. It leverages blockchain technology to create a more resilient and efficient communication network.
Smartmesh is a decentralized Internet of Things (IoT) and blockchain-based mesh networking protocol designed to provide connectivity in areas with limited or no internet access. By leveraging blockchain technology and mesh networking, Smartmesh enables peer-to-peer communication, data sharing, and transactions without relying on traditional internet infrastructure. The platform aims to bridge the digital divide, making connectivity more accessible and affordable for individuals, communities, and businesses worldwide. ## Key Features
- **Currency:** SMT (Smartmesh Token)
- **Buying Currency:** Available on exchanges like KuCoin and Gate.io.
- **Utility:**
- Used for network transactions and incentivizing mesh networking.
- Staking rewards for network validators.
- **Automation:**
- Smart contracts automate network transactions and reward distribution.
- **Utility in the Project:**
- Users can earn SMT by participating in the mesh network.
- Validators can stake SMT to secure the network and earn rewards.
- **API:** Yes, Smartmesh provides an API for developers to integrate with their applications.
- **User Perspective:**
- Users can easily connect to the mesh network and earn SMT tokens.
## Key Features ## How It Works
- **Currency:** $SMT (native token). 1. **Step 1:** Users connect their devices to the Smartmesh Network.
- **Buying Currency:** $SMT is available on exchanges like Huobi and Gate.io. 2. **Step 2:** The network enables communication between devices without internet access.
- **Utility:** 3. **Step 3:** Users earn SMT tokens based on their participation in the network.
- **Payments:** $SMT is used to facilitate transactions and incentivize participation in the mesh network.
- **Staking:** Stake $SMT to secure the network, earn rewards, and participate in governance.
- **Governance:** $SMT holders can vote on protocol upgrades and ecosystem decisions.
- **Automation:**
- Smart contracts automate transaction settlements, reward distribution, and network maintenance.
- Dynamic routing ensures efficient data transmission across the mesh network.
- **API:** Yes. Smartmesh provides APIs for developers to integrate mesh networking capabilities into their applications.
- **User Perspective:**
- **Developers:** Build decentralized applications (dApps) that operate seamlessly in offline or low-connectivity environments.
- **Users:** Access affordable and reliable connectivity, even in remote or underserved areas.
## How It Works ## Staking
1. **Network Formation:** - **Staking Requirements:** Minimum of 10,000 SMT tokens to become a validator.
- Devices (e.g., smartphones, IoT devices) connect to each other, forming a decentralized mesh network. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
2. **Data Routing:**
- Data packets are routed through the mesh network using the most efficient path, ensuring reliable communication.
3. **Transaction & Reward:**
- Transactions and data transfers are validated via blockchain, with rewards distributed in $SMT to participants who contribute resources.
## Staking ## Documentation
- **Staking Requirements:** For detailed documentation, visit [Smartmesh Docs](https://smartmesh.io/SmartMeshWhitePaperEN.pdf).
- Participants must stake $SMT to join the network as nodes, with the amount influencing their reputation and governance power.
- No minimum stake for users accessing the network.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security and resource sharing.
- **Slashing:** Malicious actors lose staked $SMT, ensuring network integrity.
## Documentation ## Additional Resources
For detailed documentation, visit [Smartmesh Docs](https://smartmesh.io/SmartMeshWhitePaperEN.pdf). - [Official Website](https://smartmesh.io)
- [Community Link](https://x.com/Smart_Mesh/)
## Additional Resources - [GitHub Repository](https://github.com/SmartMeshFoundation)
- [Official Website](https://smartmesh.io)
- [Community Link](https://x.com/Smart_Mesh/)
- [GitHub Repository](https://github.com/SmartMeshFoundation)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Smartmesh App** | User-friendly interface for accessing and managing mesh network connections. |
| **Spectrum** | Blockchain layer for secure and scalable transactions within the mesh network. |
| **MeshBox** | Hardware device that extends mesh network coverage and connectivity. |
## Tokenomics
- **Total Supply:** 3.14B
- **Distribution:**
- 50% allocated as network rewards, 20% to investors, 15% to the team, and 15% to ecosystem development.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Smartmesh is designed to be user-friendly, with intuitive applications like the Smartmesh App and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $SMT is the primary currency for transactions and incentivizing participation in the Smartmesh network.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $SMT is the native token, users can trade it on exchanges like Huobi and Gate.io. Automatic token switching (e.g., ETH to SMT) is not natively supported but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Participants can earn passive income by contributing resources to the mesh network. Staking $SMT is required to join as a node, and rewards are distributed based on resource contribution and staking amount. ROI depends on network usage and participation levels.
5. **Why does the project exist, why do the people and the planet need it?**
Smartmesh exists to bridge the digital divide by providing affordable and reliable connectivity in underserved areas. It promotes sustainability by reducing reliance on energy-intensive centralized infrastructure and enabling peer-to-peer communication.
6. **Is it geo-aware?**
Smartmesh operates globally, allowing users to form mesh networks anywhere, regardless of geographic location.
7. **Is it cost-effective?**
Smartmesh is highly cost-effective, offering connectivity solutions at a fraction of the cost of traditional internet infrastructure. Its decentralized nature ensures competitive and affordable access.

View File

@ -4,83 +4,36 @@ description: Detailed information about Spacechain
sidebar_position: 1 sidebar_position: 1
--- ---
# SpaceChain # Spacechain
## Overview ## Overview
Spacechain is a decentralized satellite network that allows users to store and retrieve data in a secure and efficient manner. It leverages blockchain technology to create a more reliable data storage solution.
SpaceChain is a decentralized satellite infrastructure project that integrates blockchain technology with space-based applications to create a secure, transparent, and accessible ecosystem for the New Space Economy. By leveraging decentralized satellite networks, SpaceChain aims to democratize access to space, enabling global collaboration and innovation in industries such as fintech, Earth observation, and decentralized finance (DeFi). The platform provides a decentralized infrastructure for hosting blockchain nodes, executing multisignature transactions, and enabling secure communication and data management in space. ## Key Features
- **Currency:** SPC (Spacechain Token)
- **Buying Currency:** Available on decentralized exchanges like Uniswap.
- **Utility:**
- Used for network transactions and incentivizing data storage.
- Staking rewards for network validators.
- **Automation:**
- Smart contracts automate data storage and retrieval processes.
- **Utility in the Project:**
- Users can earn SPC by storing and retrieving data.
- Validators can stake SPC to secure the network and earn rewards.
- **API:** Yes, Spacechain provides an API for developers to integrate with their applications.
- **User Perspective:**
- Users can easily store and retrieve data and earn SPC tokens.
## Key Features ## How It Works
- **Currency:** $SPC (native token). 1. **Step 1:** Users upload their data to the Spacechain Network.
- **Buying Currency:** $SPC is available on exchanges like Uniswap v3 and SushiSwap . 2. **Step 2:** The network stores the data securely and makes it available for retrieval.
- **Utility:** 3. **Step 3:** Users earn SPC tokens based on the amount of data stored and retrieved.
- **Payments:** $SPC is used to pay for satellite services, such as data storage, processing, and secure transactions .
- **Governance:** $SPC holders can participate in governance decisions related to the SpaceChain network .
- **Access:** $SPC tokens grant access to premium features and services within the SpaceChain ecosystem .
- **Automation:**
- Smart contracts automate secure transactions and data management on decentralized satellite networks.
- SpaceChains Decentralized Satellite Infrastructure (DSI) enables real-time execution of tasks across a mesh network of satellites .
- **API:** Yes. SpaceChain integrates with blockchain platforms like Qtum, Ethereum, and Bitcoin for seamless deployment of space-based applications .
- **User Perspective:**
- **Developers:** Build and deploy decentralized applications (dApps) on SpaceChains satellite infrastructure, leveraging its secure and transparent environment.
- **Enterprises:** Utilize SpaceChains space-based key management system and multisignature wallet technology for ultra-secure financial transactions and data protection .
## How It Works ## Staking
1. **Resource Aggregation:** - **Staking Requirements:** Minimum of 1,000 SPC tokens to become a validator.
- SpaceChains Decentralized Satellite Infrastructure (DSI) pools resources from multiple satellites owned by different operators, creating a collaborative network for space-based applications . - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
2. **Task Allocation:**
- Users submit tasks, such as secure transactions or data requests, which are executed on the DSI network. The platform ensures secure and efficient task distribution across satellites .
3. **Execution & Payment:**
- Tasks are executed on space-based blockchain nodes, with results validated via blockchain. Payments in $SPC are automated through smart contracts, ensuring transparency and security .
## Staking ## Additional Resources
- **Staking Requirements:** - [Official Website](https://www.spacechain.com/)
- SpaceChain does not currently require staking for users or providers. However, $SPC tokens are used for governance and accessing premium services . - [Community Link](https://www.spacechain.com/community/)
- **Rewards:** - [GitHub Repository](https://github.com/spacechain)
- SpaceChains ecosystem rewards are primarily tied to the utility of $SPC tokens, such as paying for services and participating in governance .
## Documentation
For technical guides, tokenomics, and API integration:
- [SpaceChain Docs](https://www.spacechain.com/)
## Additional Resources
- [Official Website](https://www.spacechain.com/)
- [Community Link](https://www.spacechain.com/community/)
- [GitHub Repository](https://github.com/spacechain)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Decentralized Satellite Infrastructure (DSI)** | A mesh network of satellites enabling secure and decentralized space-based applications. |
| **SpaceChain OS** | An open-source operating system for running blockchain nodes and smart contracts in space. |
| **Tethys** | A handheld satellite mobile device for secure cryptocurrency transactions without internet connectivity. |
| **Space-based Multisignature Wallet** | A secure wallet technology that uses space nodes for transaction validation, ensuring unparalleled security. |
## Tokenomics
- **Total Supply:** 391.25M
- **Distribution:**
- 51% of tokens are allocated to the community, promoting decentralization and community ownership .
- The remaining tokens are distributed among the team, partners, and ecosystem development.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, SpaceChain is designed to be accessible to both technical and non-technical users. Its decentralized satellite infrastructure and user-friendly tools, such as Tethys, make it easy for the average DePIN user to participate in the ecosystem .
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $SPC is the primary currency for accessing SpaceChains services, including satellite data, secure transactions, and premium features .
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
SpaceChain supports a one-way peg mechanism, allowing users to burn Bitcoin on the main chain to claim $SPC tokens on the sidechain. However, automatic token switching (e.g., ETH to SPC) is not natively supported .
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
SpaceChain does not require staking for service providers. ROI depends on the utilization of satellite resources and the demand for space-based services. Providers can monetize their satellite assets by integrating them into the DSI network .
5. **Why does the project exist, why do the people and the planet need it?**
SpaceChain exists to democratize access to space, reduce barriers to entry, and foster global collaboration in the New Space Economy. By leveraging blockchain technology, SpaceChain enhances security, transparency, and accessibility in space-based applications, benefiting industries such as fintech, Earth observation, and decentralized finance .
6. **Is it geo-aware?**
SpaceChains decentralized satellite infrastructure operates globally, enabling users to access services regardless of geographical boundaries. Its space-based solutions are designed to comply with international regulations .
7. **Is it cost-effective?**
SpaceChains decentralized approach reduces the costs associated with traditional satellite infrastructure, making space-based services more affordable and accessible. Its collaborative network of satellites ensures efficient resource utilization .

View File

@ -4,84 +4,39 @@ description: Detailed information about Arbol
sidebar_position: 4 sidebar_position: 4
--- ---
# Arbol # Arbol
## Overview ## Overview
Arbol is a decentralized platform that allows users to create and trade weather-based financial products. It leverages blockchain technology to create a more transparent and efficient weather risk management solution.
Arbol is a decentralized climate risk platform built on blockchain technology, designed to provide transparent, efficient, and accessible solutions for managing weather-related risks. By leveraging smart contracts and decentralized finance (DeFi) principles, Arbol enables users to create, trade, and settle parametric weather insurance contracts. The platform aims to democratize access to climate risk management, making it more affordable and inclusive for farmers, businesses, and individuals globally. ## Key Features
- **Currency:** ARB (Arbol Token)
- **Buying Currency:** Available on decentralized exchanges like Uniswap.
- **Utility:**
- Used for network transactions and incentivizing weather-based financial products.
- Staking rewards for network validators.
- **Automation:**
- Smart contracts automate the creation and trading of weather-based financial products.
- **Utility in the Project:**
- Users can earn ARB by creating and trading weather-based financial products.
- Validators can stake ARB to secure the network and earn rewards.
- **API:** Yes, Arbol provides an API for developers to integrate with their applications.
- **User Perspective:**
- Users can easily create and trade weather-based financial products and earn ARB tokens.
## Key Features ## How It Works
- **Currency:** $ARBOL (native token). 1. **Step 1:** Users create weather-based financial products on the Arbol platform.
- **Buying Currency:** $ARBOL is available on major exchanges like Coinbase, KuCoin, and Gate.io. 2. **Step 2:** The platform matches buyers and sellers of these products.
- **Utility:** 3. **Step 3:** Users earn ARB tokens based on their participation in the platform.
- **Payments:** $ARBOL is used to pay for weather insurance contracts and other platform services.
- **Staking:** Stake $ARBOL to secure the network, earn rewards, and participate in governance.
- **Governance:** $ARBOL holders can vote on protocol upgrades and ecosystem decisions.
- **Automation:**
- Smart contracts automate contract creation, payouts, and settlement based on predefined weather parameters.
- Dynamic pricing ensures fair and competitive rates for insurance products.
- **API:** Yes. Arbol integrates with weather data providers and blockchain networks for seamless contract execution.
- **User Perspective:**
- **Farmers:** Protect crops and livelihoods with affordable, parametric weather insurance.
- **Businesses:** Mitigate financial risks associated with weather disruptions.
- **Providers:** Monetize underutilized capital by participating in the insurance marketplace.
## How It Works ## Staking
1. **Contract Creation:** - **Staking Requirements:** Minimum of 1,000 ARB tokens to become a validator.
- Users define weather parameters (e.g., rainfall, temperature) and coverage terms, which are encoded into smart contracts. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
2. **Marketplace Matching:**
- Contracts are listed on the Arbol marketplace, where providers can underwrite them in exchange for premiums.
3. **Execution & Payout:**
- Weather data from trusted sources triggers automatic payouts if predefined conditions are met, ensuring transparency and efficiency.
## Staking ## Documentation
- **Staking Requirements:** For detailed documentation, visit [Arbol Docs](https://www.arbol.io/case-studies).
- Providers must stake $ARBOL to participate in underwriting contracts, with the amount influencing their reputation and governance power.
- No minimum stake for users purchasing insurance.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security.
- **Slashing:** Malicious actors lose staked $ARBOL, ensuring network integrity.
## Documentation ## Additional Resources
For detailed documentation, visit [Arbol Docs](https://www.arbol.io/case-studies). - [Official Website](https://arbol.io)
- [Community Link](https://x.com/arbolmarket)
## Additional Resources - [GitHub Repository](https://github.com/arbol-Project)
- [Official Website](https://arbol.io)
- [Community Link](https://x.com/arbolmarket)
- [GitHub Repository](https://github.com/arbol-Project)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Arbol Marketplace** | Platform for creating, trading, and settling parametric weather insurance contracts. |
| **Arbol Dashboard** | Interface for users to monitor contracts, payouts, and staking rewards. |
| **Arbol Explorer** | Analytics tool tracking contract activity, weather data, and network performance. |
## Tokenomics
- **Total Supply:** 1B.
- **Max Supply:** 1B.
- **Distribution:**
- 60% allocated as network rewards, 20% to investors, 10% to the team, and 10% to the ecosystem fund.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Arbol is designed to be user-friendly, with an intuitive interface (Arbol Dashboard) and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $ARBOL is the primary currency for purchasing weather insurance contracts on the Arbol platform. Users can also pay with stablecoins like USDC for added flexibility.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $ARBOL is the native token, users can trade it on major exchanges like Coinbase and KuCoin. However, automatic token switching (e.g., ETH to ARBOL) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn passive income by underwriting weather insurance contracts. Staking $ARBOL is required to participate as a provider, and rewards are distributed based on underwriting activity and staking amount. ROI depends on market demand and risk exposure.
5. **Why does the project exist, why do the people and the planet need it?**
Arbol exists to democratize climate risk management, reducing financial vulnerability for farmers and businesses affected by weather disruptions. It promotes sustainability by incentivizing climate-resilient practices and offering a decentralized alternative to traditional insurance models.
6. **Is it geo-aware?**
Arbol is geo-aware, leveraging localized weather data to create region-specific insurance contracts. This ensures accurate and relevant coverage for users worldwide.
7. **Is it cost-effective?**
Arbol is highly cost-effective, offering weather insurance at competitive rates compared to traditional providers. Dynamic pricing and automated payouts reduce administrative costs, making it an affordable solution for users.

View File

@ -3,89 +3,40 @@ title: Audius
description: Detailed information about Audius description: Detailed information about Audius
sidebar_position: 3 sidebar_position: 3
--- ---
# Audius
## Overview # Audius
Audius is a decentralized music streaming and sharing platform built on blockchain technology, designed to empower artists and listeners by eliminating intermediaries. Unlike traditional music platforms, Audius allows artists to upload, share, and monetize their music directly with fans, ensuring transparency, fairness, and full control over their content. The platform leverages blockchain to create a decentralized ecosystem where artists, fans, and node operators collaborate to build a community-owned music network. ## Overview
Audius is a decentralized music streaming platform that allows artists to share their music directly with fans. It leverages blockchain technology to create a more transparent and fair music streaming solution.
## Key Features ## Key Features
- **Currency:** $AUDIO (native token). - **Currency:** AUDIO (Audius Token)
- **Buying Currency:** $AUDIO is available on major exchanges like Binance, KuCoin, and Uniswap. - **Buying Currency:** Available on exchanges like Binance and Coinbase.
- **Utility:** - **Utility:**
- **Rewards:** $AUDIO is used to distribute rewards to artists, node operators, and fans for their contributions to the platform. - Used for network transactions and incentivizing music streaming.
- **Staking:** Stake $AUDIO to operate nodes, participate in governance, and earn rewards. - Staking rewards for network validators.
- **Governance:** $AUDIO holders can vote on platform upgrades and ecosystem decisions. - **Automation:**
- **Automation:** - Smart contracts automate music streaming and payment processing.
- Smart contracts automate royalty payments, staking rewards, and governance processes. - **Utility in the Project:**
- Decentralized content distribution ensures transparency and eliminates censorship. - Users can earn AUDIO by streaming and sharing music.
- **API:** Yes. Audius provides APIs for developers to integrate its services into their applications. - Validators can stake AUDIO to secure the network and earn rewards.
- **User Perspective:** - **API:** Yes, Audius provides an API for developers to integrate with their applications.
- **Artists:** Upload and monetize music directly, retaining full control over their content and revenue. - **User Perspective:**
- **Fans:** Discover and stream high-quality music, interact with artists, and support them directly. - Users can easily stream and share music and earn AUDIO tokens.
- **Node Operators:** Maintain the network by hosting content and discovery nodes, earning $AUDIO rewards.
## How It Works ## How It Works
1. **Content Upload:** 1. **Step 1:** Artists upload their music to the Audius platform.
- Artists upload their music to Audius, which is stored on decentralized content nodes. 2. **Step 2:** Fans stream the music and interact with the platform.
2. **Content Discovery:** 3. **Step 3:** Users earn AUDIO tokens based on their participation in the platform.
- Discovery nodes index and make the music searchable for fans, ensuring seamless access.
3. **Monetization & Rewards:**
- Fans stream music, and artists earn $AUDIO tokens based on streams and engagement. Node operators are rewarded for maintaining the network.
## Staking ## Staking
- **Staking Requirements:** - **Staking Requirements:** Minimum of 10,000 AUDIO tokens to become a validator.
- Node operators must stake $AUDIO to participate in the network, ensuring reliability and security. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
- No minimum stake for artists or fans to use the platform.
- **Rewards:**
- **Streaming Rewards:** Distributed to artists based on listener engagement.
- **Node Rewards:** Node operators earn $AUDIO for hosting and maintaining content and discovery nodes.
- **Slashing:** Malicious actors risk losing staked $AUDIO, ensuring network integrity.
## Documentation ## Documentation
For technical guides, tokenomics, and API integration: For detailed documentation, visit [Audius Docs](https://docs.audius.org).
- [Audius Docs](https://docs.audius.org)
## Additional Resources
- **Official Links:**
- [Website](https://audius.org) | [GitHub](https://github.com/audiusproject) | [Twitter](https://twitter.com/AudiusProject)
- **Community:**
- [Discord](https://discord.com/invite/audius)
- **Partnerships:**
- Collaborations with TikTok, The Graph, and prominent artists like Nas and Steve Aoki enhance the platform's reach and credibility.
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Audius Client** | User-friendly interface for streaming and uploading music. |
| **Content Nodes** | Decentralized nodes that store and distribute music content. |
| **Discovery Nodes** | Index and make music searchable for fans. |
## Tokenomics
- **Total Supply:** 1,29B
- **Distribution:**
- 40.5% allocated to the development team and advisors, 36% to investors, 18% to the foundation reserve, and 5.5% to airdrops.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Audius is designed to be user-friendly, with a straightforward interface for both artists and listeners. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $AUDIO is the primary currency for staking, governance, and earning rewards on the Audius platform. Fans can also support artists directly through $AUDIO tokens.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $AUDIO is the native token, users can trade it on major exchanges like Binance and KuCoin. Automatic token switching (e.g., ETH to AUDIO) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Node operators can earn passive income by staking $AUDIO and maintaining content or discovery nodes. Rewards are distributed based on network participation and staking amount. ROI depends on network usage and staking contributions.
5. **Why does the project exist, why do the people and the planet need it?**
Audius exists to democratize the music industry, giving artists full control over their content and revenue. It promotes fairness and transparency by eliminating intermediaries and leveraging blockchain technology.
6. **Is it geo-aware?**
Audius does not explicitly mention geo-fencing, but its decentralized nature allows users to access and share music globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
Audius is highly cost-effective for both artists and listeners. Artists retain a larger share of their earnings, and fans can access high-quality music without subscription fees.
## Additional Resources
- [Official Website](https://audius.org)
- [Community Link](https://discord.com/invite/audius)
- [GitHub Repository](https://github.com/audiusproject)

View File

@ -4,83 +4,39 @@ description: Detailed information about Livepeer
sidebar_position: 1 sidebar_position: 1
--- ---
# Livepeer # Livepeer
## Overview ## Overview
Livepeer is a decentralized video streaming network that allows users to share their computing power for video transcoding. It leverages blockchain technology to create a more efficient and cost-effective video streaming solution.
Livepeer is a decentralized video streaming network built on the Ethereum blockchain, designed to provide a scalable, cost-effective, and open-source alternative to traditional video infrastructure. By leveraging blockchain technology, Livepeer enables developers and broadcasters to create, share, and refine robust pipelines for real-time AI video processing. The platform aims to democratize access to video infrastructure, making it more affordable and accessible for content creators, developers, and businesses. ## Key Features
- **Currency:** LPT (Livepeer Token)
- **Buying Currency:** Available on exchanges like Binance and Coinbase.
- **Utility:**
- Used for network transactions and incentivizing video transcoding.
- Staking rewards for network validators.
- **Automation:**
- Smart contracts automate video transcoding and reward distribution.
- **Utility in the Project:**
- Users can earn LPT by sharing their computing power for video transcoding.
- Validators can stake LPT to secure the network and earn rewards.
- **API:** Yes, Livepeer provides an API for developers to integrate with their applications.
- **User Perspective:**
- Users can easily share their computing power and earn LPT tokens.
## Key Features ## How It Works
- **Currency:** $LPT (native token). 1. **Step 1:** Users connect their devices to the Livepeer Network.
- **Buying Currency:** $LPT is available on major exchanges like Coinbase, Binance, and Kraken. 2. **Step 2:** The network uses the shared computing power for video transcoding.
- **Utility:** 3. **Step 3:** Users earn LPT tokens based on the amount of computing power shared.
- **Payments:** $LPT is used to pay for video transcoding and AI-driven video processing services.
- **Staking:** Stake $LPT to secure the network, earn rewards, and participate in governance.
- **Governance:** $LPT holders can vote on protocol upgrades and ecosystem decisions.
- **Automation:**
- Smart contracts automate resource allocation, payments, and reward distribution.
- Dynamic pricing ensures cost efficiency by allowing orchestrators to compete for workloads.
- **API:** Yes. Livepeer integrates with ComfyUI and other AI workflows for seamless video processing.
- **User Perspective:**
- **Developers:** Build and scale innovative video applications on a decentralized platform, benefiting from lower costs and greater flexibility.
- **Orchestrators:** Monetize idle computing resources by providing video transcoding and AI processing services.
## How It Works ## Staking
1. **Resource Aggregation:** - **Staking Requirements:** Minimum of 10,000 LPT tokens to become a validator.
- Orchestrators register their computing resources (e.g., GPUs, CPUs) on the Livepeer Network, which are pooled into a global marketplace. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
2. **Task Allocation:**
- Users submit video processing jobs, and the platform matches them with the most cost-effective and suitable resources.
3. **Execution & Payment:**
- Jobs run on distributed nodes, with results validated via blockchain. Payments in $LPT are automated through smart contracts.
## Staking ## Documentation
- **Staking Requirements:** For detailed documentation, visit [Livepeer Docs](https://docs.livepeer.org).
- Orchestrators must stake $LPT to participate in the network, with the amount influencing their reputation and governance power.
- No minimum stake for users deploying video applications.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security.
- **Slashing:** Malicious actors lose staked $LPT, ensuring network integrity.
## Documentation ## Additional Resources
For technical guides, tokenomics, and API integration: - [Official Website](https://livepeer.org)
- [Livepeer Docs](https://docs.livepeer.org) - [Community Link](https://x.com/Livepeer)
- [GitHub Repository](https://github.com/livepeer)
## Additional Resources
- [Official Website](https://livepeer.org)
- [Community Link](https://x.com/Livepeer)
- [GitHub Repository](https://github.com/livepeer)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Livepeer Pipelines** | Customizable tool for connecting ComfyUI's AI workflows with Livepeer's video processing network. |
| **Livepeer Orchestrator** | Dashboard for orchestrators to monitor resource usage and earnings. |
| **Livepeer Explorer** | Analytics tool tracking network activity, rewards, and resource utilization. |
## Tokenomics
- **Total Supply:** 37.77M
- **Distribution:**
- 75% allocated as network rewards, 25% to investors, team, and ecosystem fund.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Livepeer is designed to be user-friendly, with a straightforward interface (Livepeer Pipelines) and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $LPT is the primary currency for purchasing video transcoding and AI processing services on the Livepeer Network. Users can also pay with USDC for mainstream accessibility.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $LPT is the native token, users can trade it on major exchanges like Coinbase and Binance. However, automatic token switching (e.g., ETH to LPT) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Orchestrators can earn passive income by renting out idle computing resources. Staking $LPT is required to participate as an orchestrator, and rewards are distributed based on resource contribution and staking amount. ROI depends on resource utilization and market demand.
5. **Why does the project exist, why do the people and the planet need it?**
Livepeer exists to democratize video infrastructure, reducing costs and increasing accessibility. It promotes sustainability by utilizing underutilized resources, reducing waste, and offering a decentralized alternative to energy-intensive centralized video providers.
6. **Is it geo-aware?**
Livepeer does not explicitly mention geo-fencing, but its decentralized nature allows users to deploy resources globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
Livepeer is highly cost-effective, offering video processing services at up to 90% lower costs compared to traditional video infrastructure providers. Dynamic pricing ensures competitive rates.

View File

@ -4,88 +4,38 @@ description: Detailed information about Morpheus
sidebar_position: 6 sidebar_position: 6
--- ---
# Morpheus Network # Morpheus
## Overview ## Overview
Morpheus is a decentralized cloud computing platform that enables users to share their computing resources, such as CPU, GPU, and storage, in a peer-to-peer network. It aims to provide a more efficient and cost-effective alternative to traditional cloud computing services by leveraging blockchain technology.
Morpheus Network is a supply chain platform that leverages blockchain technology to automate and optimize supply chain processes. It provides a comprehensive suite of tools designed to enhance transparency, security, and efficiency in global trade operations. By integrating with various technologies and service providers, Morpheus Network aims to streamline workflows, reduce inefficiencies, and ensure compliance across the supply chain.
## Key Features ## Key Features
- **Currency:** $MNW (native token). - **Currency:** MPT (Morpheus Token)
- **Buying Currency:** $MNW is available on major exchanges like Gate.io, KuCoin, and Uniswap. - **Buying Currency:** Available on exchanges like KuCoin and Gate.io.
- **Utility:** - **Utility:**
- **Payments:** $MNW is used to pay for supply chain automation services, including document handling, customs clearance, and shipment tracking. - Used for network transactions and incentivizing resource sharing.
- **Staking:** Stake $MNW to secure the network, earn rewards, and participate in governance. - Staking rewards for network validators.
- **Governance:** $MNW holders can vote on protocol upgrades and ecosystem decisions. - **Automation:**
- **Automation:** - Smart contracts automate resource allocation and reward distribution.
- Smart contracts automate workflows, payments, and document generation. - **Utility in the Project:**
- Integration with over 200 industry-leading technologies and service providers ensures seamless data exchange and workflow automation. - Users can earn MPT by sharing their computing resources.
- **API:** Yes. Morpheus Network integrates with various APIs for seamless data exchange and automation. - Validators can stake MPT to secure the network and earn rewards.
- **API:** Yes, Morpheus provides an API for developers to integrate with their applications.
- **User Perspective:** - **User Perspective:**
- **Supply Chain Managers:** Automate and optimize supply chain processes, ensuring transparency and compliance. - Users can easily share their computing resources and earn MPT tokens.
- **Service Providers:** Integrate with Morpheus Network to offer automated and secure supply chain services.
## How It Works ## How It Works
1. **Automation Setup:** 1. **Step 1:** Users connect their devices to the Morpheus Network.
- Users configure automated workflows for document handling, customs clearance, and shipment tracking. 2. **Step 2:** The network uses the shared computing resources for various tasks such as data processing, machine learning, and storage.
2. **Task Execution:** 3. **Step 3:** Users earn MPT tokens based on the amount of resources shared.
- Smart contracts execute predefined tasks, such as generating documents, processing payments, and updating shipment statuses.
3. **Monitoring and Compliance:**
- Real-time tracking and analytics ensure transparency and compliance throughout the supply chain.
## Staking ## Staking
- **Staking Requirements:** - **Staking Requirements:** Minimum of 5,000 MPT tokens to become a validator.
- Users can stake $MNW tokens to participate in the network and earn rewards. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
- No minimum stake is required for users, but providers must stake a significant amount to operate a node.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security and validation.
- **Slashing:** Malicious actors lose staked $MNW, ensuring network integrity.
## Documentation ## API Documentation
For technical guides, tokenomics, and API integration: For detailed API documentation, visit [Morpheus API Docs](https://morpheus.network/assets/Morpheus.Network_White_Platform.pdf).
- [Morpheus Docs](https://docs.morpheusdata.com/en/latest/getting_started/functionality/agent/features.html)
## Additional Resources ## Additional Resources
- **Official Links:** - [Official Website](https://morpheus.network)
- [Website](https://morpheus.network) | [Community](https://x.com/MNWSupplyChain) - [Community Link](https://x.com/MNWSupplyChain)
- **Community:**
- [Facebook](https://www.facebook.com/themorpheusnetwork/)
- **Partnerships:**
- Collaborations with industry leaders like FedEx, DHL, and SAP enhance cross-chain interoperability and supply chain optimization.
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Morpheus Console** | User-friendly interface for managing supply chain automation and tracking shipments. |
| **Morpheus Provider** | Dashboard for service providers to monitor integrations and earnings. |
| **Morpheus Explorer** | Analytics tool tracking network activity, rewards, and supply chain performance. |
## Tokenomics
- **Total Supply:** 47,897,218.
- **Max Supply:** 47,897,218.
- **Distribution:**
- 98.5% of all tokens have already been released, ensuring price stability and preventing sudden token unlocks.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Morpheus Network is designed to be user-friendly, with a straightforward interface and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $MNW is the primary currency for purchasing supply chain automation services on the Morpheus Network. Users can also pay with other cryptocurrencies through external exchanges.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $MNW is the native token, users can trade it on major exchanges like Gate.io and KuCoin. However, automatic token switching (e.g., ETH to MNW) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn passive income by staking $MNW tokens and operating a node. Staking $MNW is required to participate as a provider, and rewards are distributed based on the amount staked and the node's contribution to the network. ROI depends on the node's performance and market demand.
5. **Why does the project exist, why do the people and the planet need it?**
Morpheus Network exists to optimize and automate supply chain processes, reducing costs and increasing efficiency. It promotes sustainability by utilizing underutilized resources and offering a decentralized alternative to energy-intensive centralized supply chain management systems.
6. **Is it geo-aware?**
Morpheus Network does not explicitly mention geo-fencing, but its decentralized nature allows users to deploy resources globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
Morpheus Network is highly cost-effective, offering supply chain automation services at competitive rates. Smart contracts and automated workflows ensure efficient resource utilization and cost savings.

View File

@ -4,44 +4,34 @@ description: Detailed information about Silent Notary
sidebar_position: 5 sidebar_position: 5
--- ---
---
# Silent Notary # Silent Notary
## Overview ## Overview
Silent Notary is a decentralized notarization platform that allows users to notarize documents and data in a secure and immutable manner. It leverages blockchain technology to create a more reliable notarization solution.
Silent Notary is a decentralized notary service built on the blockchain, designed to provide a secure, transparent, and tamper-proof way to verify the authenticity and integrity of digital documents and data. By leveraging blockchain technology, Silent Notary enables users to create immutable records of their documents, ensuring that they remain unaltered and verifiable over time. The platform aims to democratize access to notary services, making them more accessible and reliable for individuals and businesses.
## Key Features ## Key Features
- **Currency:** $UBSN (native token). - **Currency:** SNTR (Silent Notary Token)
- **Buying Currency:** $UBSN is available on exchanges like Gate.io. - **Buying Currency:** Available on decentralized exchanges like Uniswap.
- **Utility:** - **Utility:**
- **Payments:** $UBSN is used to pay for notary services, including document verification and data integrity checks. - Used for network transactions and incentivizing notarization.
- **Staking:** Stake $UBSN to secure the network, earn rewards, and participate in governance. - Staking rewards for network validators.
- **Governance:** $UBSN holders can vote on protocol upgrades and ecosystem decisions. - **Automation:**
- **Automation:** - Smart contracts automate notarization processes.
- Smart contracts automate the notarization process, ensuring that documents are verified and stored securely on the blockchain. - **Utility in the Project:**
- Dynamic pricing ensures cost efficiency by allowing providers to compete for notarization services. - Users can earn SNTR by notarizing documents and data.
- **API:** Yes. Silent Notary provides APIs for seamless integration with various applications and services. - Validators can stake SNTR to secure the network and earn rewards.
- **API:** Yes, Silent Notary provides an API for developers to integrate with their applications.
- **User Perspective:** - **User Perspective:**
- **Individuals:** Verify the authenticity of important documents, such as contracts and certificates, with ease. - Users can easily notarize documents and data and earn SNTR tokens.
- **Businesses:** Ensure data integrity and compliance with regulatory requirements through tamper-proof records.
## How It Works ## How It Works
1. **Document Submission:** 1. **Step 1:** Users upload their documents or data to the Silent Notary platform.
- Users submit documents or data that need to be notarized to the Silent Notary platform. 2. **Step 2:** The platform notarizes the documents or data and stores them securely.
2. **Notarization Process:** 3. **Step 3:** Users earn SNTR tokens based on the amount of data notarized.
- The platform creates a unique hash of the document, which is then recorded on the blockchain, ensuring immutability and transparency.
3. **Verification & Payment:**
- The notarized document can be verified at any time by checking the blockchain record. Payments in $UBSN are automated through smart contracts.
## Staking ## Staking
- **Staking Requirements:** - **Staking Requirements:** Minimum of 1,000 SNTR tokens to become a validator.
- Providers must stake $UBSN to participate in the network, with the amount influencing their reputation and governance power. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
- No minimum stake for users submitting documents for notarization.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security.
- **Slashing:** Malicious actors lose staked $UBSN, ensuring network integrity.
## Documentation ## Documentation
For detailed documentation, visit [Silent Notary Docs](https://silentnotary.com/FAQ.html). For detailed documentation, visit [Silent Notary Docs](https://silentnotary.com/FAQ.html).
@ -49,39 +39,4 @@ For detailed documentation, visit [Silent Notary Docs](https://silentnotary.com/
## Additional Resources ## Additional Resources
- [Official Website](https://silentnotary.com) - [Official Website](https://silentnotary.com)
- [Community Link](https://t.me/SilentNotary) - [Community Link](https://t.me/SilentNotary)
- [GitHub Repository](https://github.com/silentnotary) - [GitHub Repository](https://github.com/silentnotary)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Silent Notary Dashboard** | User-friendly interface for submitting and managing notarized documents. |
| **Silent Notary Explorer** | Analytics tool tracking network activity, rewards, and document verifications. |
## Tokenomics
- **Total Supply:** 186.46B
- **Max Supply:** 186.46B
- **Distribution:**
- 60% allocated as network rewards, 20% to investors, 10% to the team, and 10% to the ecosystem fund.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Silent Notary is designed to be user-friendly, with a straightforward interface and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $UBSN is the primary currency for purchasing notary services on the Silent Notary platform. Users can also pay with other supported cryptocurrencies through external exchanges.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $UBSN is the native token, users can trade it on exchanges like Gate.io. However, automatic token switching (e.g., ETH to UBSN) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn passive income by offering notarization services. Staking $UBSN is required to participate as a provider, and rewards are distributed based on service contribution and staking amount. ROI depends on service utilization and market demand.
5. **Why does the project exist, why do the people and the planet need it?**
Silent Notary exists to provide a secure and transparent way to verify the authenticity of digital documents and data. It promotes trust and integrity in digital transactions, reducing fraud and ensuring compliance with regulatory requirements.
6. **Is it geo-aware?**
Silent Notary does not explicitly mention geo-fencing, but its decentralized nature allows users to verify documents globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
Silent Notary is highly cost-effective, offering notarization services at competitive rates compared to traditional notary services. Dynamic pricing ensures that users get the best value for their notarization needs.

View File

@ -4,83 +4,39 @@ description: Detailed information about Theta Network
sidebar_position: 2 sidebar_position: 2
--- ---
# Theta Network # Theta Network
## Overview ## Overview
Theta Network is a decentralized video streaming platform that allows users to share their bandwidth and earn rewards. It leverages blockchain technology to create a more efficient and cost-effective video streaming solution.
Theta Network is a decentralized cloud infrastructure for AI, media, and entertainment, powered by blockchain technology. It combines the Theta Edge Network and Theta Blockchain to deliver a scalable, cost-effective solution for video streaming, AI computing, and decentralized applications (dApps). By leveraging a global network of nodes, Theta enables users to share bandwidth and computing resources, creating a more efficient and democratized ecosystem for content delivery and edge computing. ## Key Features
- **Currency:** THETA (Theta Token)
- **Buying Currency:** Available on exchanges like Binance and Coinbase.
- **Utility:**
- Used for network transactions and incentivizing bandwidth sharing.
- Staking rewards for network validators.
- **Automation:**
- Smart contracts automate bandwidth sharing and reward distribution.
- **Utility in the Project:**
- Users can earn THETA by sharing their bandwidth.
- Validators can stake THETA to secure the network and earn rewards.
- **API:** Yes, Theta Network provides an API for developers to integrate with their applications.
- **User Perspective:**
- Users can easily share their bandwidth and earn THETA tokens.
## Key Features ## How It Works
- **Currency:** $THETA (governance token) and $TFUEL (operational token). 1. **Step 1:** Users connect their devices to the Theta Network.
- **Buying Currency:** $THETA and $TFUEL are available on major exchanges like Binance, Coinbase, and KuCoin. 2. **Step 2:** The network uses the shared bandwidth to stream video content.
- **Utility:** 3. **Step 3:** Users earn THETA tokens based on the amount of bandwidth shared.
- **Payments:** $TFUEL is used for transactions, smart contracts, and rewarding users for sharing resources.
- **Staking:** Stake $THETA to secure the network, earn rewards, and participate in governance.
- **Governance:** $THETA holders can vote on protocol upgrades and ecosystem decisions.
- **Automation:**
- Smart contracts automate resource allocation, payments, and reward distribution.
- Edge Nodes dynamically relay video streams and compute tasks based on demand.
- **API:** Yes. Theta integrates with Ethereum Virtual Machine (EVM) for seamless dApp development.
- **User Perspective:**
- **Developers:** Build dApps, NFTs, and decentralized exchanges (DEX) on Thetas EVM-compatible blockchain.
- **Users:** Earn $TFUEL by sharing bandwidth and computing resources via Edge Nodes.
## How It Works ## Staking
1. **Resource Aggregation:** - **Staking Requirements:** Minimum of 10,000 THETA tokens to become a validator.
- Edge Nodes contribute unused bandwidth and computing resources, forming a decentralized network for video streaming and AI tasks. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
2. **Task Allocation:**
- Video streams and compute jobs are routed to the nearest Edge Nodes, ensuring low latency and high efficiency.
3. **Execution & Payment:**
- Jobs run on distributed nodes, with results validated via blockchain. Payments in $TFUEL are automated through smart contracts.
## Staking ## Documentation
- **Staking Requirements:** For detailed documentation, visit [Theta Network Docs](https://docs.thetatoken.org).
- Validator Nodes require a minimum of 10,000,000 $THETA, while Guardian Nodes require 100,000 $THETA to participate in consensus and governance.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security.
- **Slashing:** Malicious actors lose staked $THETA, ensuring network integrity.
## Documentation ## Additional Resources
For technical guides, tokenomics, and API integration: - [Official Website](https://www.thetatoken.org)
- [Theta Network Docs](https://docs.thetatoken.org) - [Community Link](https://discord.com/invite/QfMpeZBfKB)
- [GitHub Repository](https://github.com/thetatoken)
## Additional Resources
- [Official Website](https://www.thetatoken.org)
- [Community Link](https://discord.com/invite/QfMpeZBfKB)
- [GitHub Repository](https://github.com/thetatoken)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Theta Edge Node** | Software for users to share bandwidth and compute resources, earning $TFUEL rewards. |
| **Theta Blockchain** | EVM-compatible blockchain supporting smart contracts, NFTs, and dApps. |
| **Theta Video API** | Enables decentralized video-on-demand and peer-to-peer streaming. |
## Tokenomics
- **Total Supply:** 1 billion $THETA (fixed supply), 5 billion $TFUEL (initial supply with 5% annual inflation, 6.83M as of Feb 2025).
- **Distribution:**
- $THETA: Governance and staking.
- $TFUEL: Operational transactions and rewards for resource sharing.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Theta Network is designed to be accessible, with user-friendly tools like the Theta Edge Node and comprehensive documentation. It caters to both technical and non-technical users.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $TFUEL is the primary currency for transactions, smart contracts, and resource sharing on the Theta Network.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $THETA and $TFUEL are the native tokens, users can trade them on major exchanges like Binance and Coinbase. Automatic token switching is not natively supported but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn $TFUEL by running Edge Nodes and sharing resources. Staking $THETA is required for Validator and Guardian Nodes, with rewards based on resource contribution and staking amount.
5. **Why does the project exist, why do the people and the planet need it?**
Theta Network exists to decentralize video streaming and AI computing, reducing costs and improving efficiency. It promotes sustainability by utilizing underutilized resources and reducing reliance on centralized infrastructure.
6. **Is it geo-aware?**
Yes, Thetas Edge Nodes use proximity-based routing to ensure low-latency video streaming and compute tasks, optimizing performance based on user location.
7. **Is it cost-effective?**
Theta Network is highly cost-effective, reducing content delivery costs by up to 50% compared to traditional CDNs. Its decentralized model ensures competitive pricing and scalability.

View File

@ -4,81 +4,36 @@ description: Detailed information about Arcade City
sidebar_position: 5 sidebar_position: 5
--- ---
# Arcade City # Arcade City
## Overview ## Overview
Arcade City is a decentralized ride-sharing platform that allows users to connect directly with drivers. It leverages blockchain technology to create a peer-to-peer ride-sharing network.
Arcade City is a decentralized ride-sharing and mobility platform built on blockchain technology, designed to provide a fair, transparent, and community-driven alternative to traditional ride-sharing services like Uber and Lyft. By leveraging decentralized governance and tokenized incentives, Arcade City empowers drivers and riders to interact directly, eliminating intermediaries and reducing costs. The platform aims to revolutionize the mobility industry by fostering trust, inclusivity, and economic empowerment for all participants. ## Key Features
- **Currency:** ARC (Arcade Token)
- **Buying Currency:** Available on decentralized exchanges like Uniswap.
- **Utility:**
- Used for network transactions and incentivizing ride-sharing.
- Staking rewards for network validators.
- **Automation:**
- Smart contracts automate ride bookings and payment processing.
- **Utility in the Project:**
- Users can earn ARC by participating in the ride-sharing network.
- Validators can stake ARC to secure the network and earn rewards.
- **API:** Yes, Arcade City provides an API for developers to integrate with their applications.
- **User Perspective:**
- Users can easily book rides and earn ARC tokens by sharing rides.
## Key Features ## How It Works
- **Currency:** $ARC (native token). 1. **Step 1:** Users download the Arcade City app and create an account.
- **Buying Currency:** $ARC is available on major exchanges like Coinbase, Gate.io, and KuCoin. 2. **Step 2:** Users can book rides directly with drivers using the app.
- **Utility:** 3. **Step 3:** Users earn ARC tokens based on their participation in the network.
- **Payments:** $ARC is used to pay for ride-sharing services, with drivers and riders transacting directly on the platform.
- **Staking:** Stake $ARC to secure the network, earn rewards, and participate in governance decisions.
- **Governance:** $ARC holders can vote on platform upgrades, fee structures, and community initiatives.
- **Automation:**
- Smart contracts automate ride matching, payments, and dispute resolution, ensuring transparency and efficiency.
- Dynamic pricing adjusts fares based on demand, ensuring fair compensation for drivers and affordability for riders.
- **API:** Yes. Arcade City provides APIs for developers to integrate ride-sharing services into their applications.
- **User Perspective:**
- **Drivers:** Earn higher income by cutting out middlemen and retaining more of their earnings.
- **Riders:** Enjoy lower fares, transparent pricing, and a community-driven experience.
## How It Works ## Staking
1. **Ride Matching:** - **Staking Requirements:** Minimum of 1,000 ARC tokens to become a validator.
- Drivers and riders connect directly through the Arcade City platform, with smart contracts facilitating ride requests and confirmations. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
2. **Payment & Execution:**
- Riders pay drivers in $ARC or other supported tokens, with transactions recorded on the blockchain for transparency. ## Additional Resources
- Smart contracts ensure fair compensation and automate dispute resolution if needed. - [Official Website](https://arcade.city)
3. **Community Governance:** - [Community Link](https://x.com/TheArcadeApp)
- Drivers and riders participate in governance by staking $ARC and voting on platform improvements and policies. - [GitHub Repository](https://github.com/arcadecity)
## Staking
- **Staking Requirements:**
- Drivers and riders can stake $ARC to participate in governance and earn rewards.
- No minimum stake is required for basic platform usage, but higher stakes increase voting power and rewards.
- **Rewards:**
- **Network Rewards:** Distributed to stakers based on their contribution to platform security and governance.
- **Slashing:** Malicious actors lose staked $ARC, ensuring network integrity and trust.
## Additional Resources
- [Official Website](https://arcade.city)
- [Community Link](https://x.com/TheArcadeApp)
- [GitHub Repository](https://github.com/arcadecity)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Arcade App** | User-friendly interface for booking rides and managing transactions. |
| **Driver Dashboard** | Tools for drivers to track earnings, manage rides, and participate in governance. |
| **Arcade Explorer** | Analytics tool tracking platform activity, rewards, and user engagement. |
## Tokenomics
- **Total Supply:** 100M.
- **Max Supply:** 100M.
- **Distribution:**
- 60% allocated as network rewards, 20% to investors, 10% to the team, and 10% to the ecosystem fund.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Arcade City is designed to be user-friendly, with a straightforward app interface and comprehensive documentation. It caters to both drivers and riders, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $ARC is the primary currency for ride-sharing services on Arcade City. Users can also pay with other supported tokens like USDC for added flexibility.
3. **Can tokens be automatically switched from other standard tokens (e.g., ETH, BTC)?**
While $ARC is the native token, users can trade it on major exchanges like Coinbase and Gate.io. Automatic token switching (e.g., ETH to ARC) is not natively supported but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Drivers can earn income by offering ride-sharing services and staking $ARC to participate in governance. ROI depends on ride demand, staking rewards, and platform usage.
5. **Why does the project exist, why do the people and the planet need it?**
Arcade City exists to decentralize the ride-sharing industry, empowering drivers and riders while reducing costs and increasing transparency. It promotes sustainability by optimizing resource utilization and reducing the environmental impact of centralized ride-sharing platforms.
6. **Is it geo-aware?**
Arcade City supports geo-aware features, allowing users to find rides and drivers based on their location. This ensures efficient matching and compliance with local regulations.
7. **Is it cost-effective?**
Arcade City is highly cost-effective, offering lower fares for riders and higher earnings for drivers by eliminating intermediary fees. Dynamic pricing ensures fair compensation and affordability.

View File

@ -4,82 +4,39 @@ description: Detailed information about Carv
sidebar_position: 3 sidebar_position: 3
--- ---
# CARV # Carv
## Overview ## Overview
Carv is a decentralized mobility network that allows users to share and monetize their vehicle data. It leverages blockchain technology to create a secure and transparent data marketplace.
CARV is a decentralized data privacy and monetization platform that empowers users to take control of their personal data while earning rewards through innovative gaming and AI integration. Built on a modular data layer, CARV revolutionizes how data is managed, shared, and monetized, offering users unprecedented privacy and economic opportunities. The platform integrates gaming elements, such as its popular Banana tap-to-earn mini-game, to create a seamless and engaging experience for users. CARV aims to bridge the gap between data privacy, gaming, and decentralized infrastructure, making it a standout project in the DePIN (Decentralized Physical Infrastructure Networks) ecosystem. ## Key Features
- **Currency:** CARV (Carv Token)
- **Buying Currency:** Available on exchanges like Uniswap and SushiSwap.
- **Utility:**
- Used for network transactions and incentivizing data sharing.
- Staking rewards for network validators.
- **Automation:**
- Smart contracts automate data sharing and reward distribution.
- **Utility in the Project:**
- Users can earn CARV by sharing their vehicle data.
- Validators can stake CARV to secure the network and earn rewards.
- **API:** Yes, Carv provides an API for developers to integrate with their applications.
- **User Perspective:**
- Users can easily connect their vehicles to the Carv network to share data and earn rewards.
## Key Features ## How It Works
- **Currency:** $CARV (native token). 1. **Step 1:** Users connect their vehicles to the Carv network using a compatible device.
- **Buying Currency:** $CARV is available on major exchanges like CoinW, with trading pairs such as CARV/USDT. 2. **Step 2:** The device collects and shares vehicle data with the network.
- **Utility:** 3. **Step 3:** Users earn CARV tokens based on the amount of data shared.
- **Data Monetization:** Users earn $CARV tokens by sharing select data while maintaining strict privacy controls.
- **Staking:** Stake $CARV to participate in network governance and earn rewards.
- **Gaming Rewards:** Accumulate $CARV tokens through gaming activities like the Banana tap-to-earn mini-game.
- **Automation:**
- Smart contracts ensure transparent and secure data sharing and reward distribution.
- AI integration optimizes user experiences and data utilization.
- **API:** Yes. CARV supports integrations with gaming platforms and AI systems for seamless data interaction.
- **User Perspective:**
- **Gamers:** Earn rewards by participating in gaming activities and sharing data.
- **Data Contributors:** Monetize personal data while maintaining control over privacy.
- **Developers:** Build applications on CARVs modular data layer for enhanced data privacy and monetization features.
## How It Works ## Staking
1. **Data Control:** - **Staking Requirements:** Minimum of 1,000 CARV tokens to become a validator.
- Users decide which data to share, ensuring privacy and control over their information. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
2. **Reward Mechanism:**
- Data sharing and gaming activities generate $CARV tokens, which are distributed via smart contracts.
3. **Integration:**
- CARV integrates with gaming platforms and AI systems, creating a cross-platform experience for users.
## Staking ## Documentation
- **Staking Requirements:** For detailed documentation, visit [Carv Docs](https://docs.carv.io/overview/carv-intro).
- Users and node operators can stake $CARV to participate in network governance and earn rewards.
- **Rewards:**
- **Staking Rewards:** Distributed to participants based on their staked amount and contribution to the network.
- **Governance:** Stakers can vote on platform upgrades and ecosystem decisions.
## Documentation ## Additional Resources
For detailed documentation, visit [Carv Docs](https://docs.carv.io/). - [Official Website](https://carv.io/)
- [Community Link](https://discord.com/invite/carv)
## Additional Resources - [GitHub Repository](https://github.com/carv-protocol)
- [Official Website](https://carv.io/)
- [Community Link](https://discord.com/invite/carv)
- [GitHub Repository](https://github.com/carv-protocol)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Banana Mini-Game** | A tap-to-earn game where users accumulate $CARV tokens and rewards. |
| **Modular Data Layer** | A decentralized infrastructure for data management and monetization. |
| **CARV Dashboard** | User-friendly interface for managing data sharing, rewards, and staking. |
## Tokenomics
- **Total Supply:** 1B
- **Distribution:**
- 50% allocated to the community, ensuring long-term growth and sustainability.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, CARV is designed to be user-friendly, with intuitive interfaces like the Banana mini-game and a comprehensive dashboard for managing data and rewards. It caters to both gamers and data contributors, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
$CARV is the primary currency for participating in the platforms ecosystem, including gaming activities and data monetization. Users can also trade $CARV on exchanges like CoinW.
3. **Can tokens be automatically switched from other standard tokens (e.g., ETH, BTC)?**
While $CARV is the native token, users can trade it on exchanges like CoinW. Automatic token switching (e.g., ETH to CARV) is not natively supported but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Users and node operators can earn rewards by staking $CARV and participating in the network. ROI depends on factors like staking amount, data contribution, and gaming activity.
5. **Why does the project exist, why do the people and the planet need it?**
CARV exists to empower users with control over their data while creating economic opportunities through gaming and AI integration. It promotes data privacy and decentralization, addressing critical needs in the digital economy.
6. **Is it geo-aware?**
CARVs decentralized nature allows global participation, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
CARV offers a cost-effective solution for data monetization and gaming rewards, leveraging blockchain technology to reduce reliance on centralized intermediaries.

View File

@ -4,41 +4,34 @@ description: Detailed information about Drife
sidebar_position: 4 sidebar_position: 4
--- ---
# Drife Project # Drife
## Overview ## Overview
Drife is a decentralized ride-hailing platform that allows users to book rides directly with drivers, eliminating the need for intermediaries. It leverages blockchain technology to ensure transparency and fair pricing.
Drife is a decentralized ride-hailing platform built on blockchain technology, aiming to disrupt the traditional ride-hailing industry by empowering drivers and riders. By eliminating intermediaries, Drife creates a peer-to-peer network that offers greater transparency, fairness, and control over interactions between riders and drivers. The platform operates on the DRF token, which serves as the native currency for all transactions within the ecosystem.
## Key Features ## Key Features
- **Currency:** $DRF (native token). - **Currency:** DRF (Drife Token)
- **Buying Currency:** $DRF is available on major exchanges like Cetus. - **Buying Currency:** Available on exchanges like KuCoin and Gate.io.
- **Utility:** - **Utility:**
- **Payments:** $DRF is used to pay for ride-hailing services, including fares and subscription plans. - Used for network transactions and incentivizing ride-sharing.
- **Staking:** Stake $DRF to participate in the network, earn rewards, and gain governance power. - Staking rewards for network validators.
- **Governance:** $DRF holders can vote on platform upgrades and ecosystem decisions. - **Automation:**
- **Automation:** - Smart contracts automate ride bookings and payment processing.
- Smart contracts automate ride allocation, payments, and reward distribution. - **Utility in the Project:**
- Dynamic pricing ensures fair and transparent fares based on predefined smart contract criteria. - Users can earn DRF by participating in the ride-sharing network.
- **API:** Yes. Drife integrates with various blockchain technologies for seamless deployment of applications. - Validators can stake DRF to secure the network and earn rewards.
- **API:** Yes, Drife provides an API for developers to integrate with their applications.
- **User Perspective:** - **User Perspective:**
- **Drivers:** Earn more income with a zero-commission fee structure and participate in the network to receive additional rewards. - Users can easily book rides and earn DRF tokens by sharing rides.
- **Riders:** Benefit from transparent fares, secure transactions, and a user-friendly platform.
## How It Works ## How It Works
1. **Resource Aggregation:** 1. **Step 1:** Users download the Drife app and create an account.
- Drivers register their vehicles on the Drife platform, contributing to a global pool of ride-hailing resources. 2. **Step 2:** Users can book rides directly with drivers using the app.
2. **Task Allocation:** 3. **Step 3:** Users earn DRF tokens based on their participation in the network.
- Riders submit ride requests, and the platform matches them with suitable drivers based on location, fare, and other criteria.
3. **Execution & Payment:**
- Rides are executed as per the agreed terms, with payments in $DRF automatically handled through smart contracts.
## Staking ## Staking
- **Staking Requirements:** - **Staking Requirements:** Minimum of 5,000 DRF tokens to become a validator.
- Drivers and other participants can stake $DRF to earn rewards and gain governance power. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security and activity.
- **Slashing:** Malicious actors lose staked $DRF, ensuring network integrity.
## Documentation ## Documentation
For detailed documentation, visit [Drife Docs](https://drife.gitbook.io/white-paper). For detailed documentation, visit [Drife Docs](https://drife.gitbook.io/white-paper).
@ -46,39 +39,4 @@ For detailed documentation, visit [Drife Docs](https://drife.gitbook.io/white-pa
## Additional Resources ## Additional Resources
- [Official Website](https://drife.io) - [Official Website](https://drife.io)
- [Community Link](https://t.me/Drife_officialchat) - [Community Link](https://t.me/Drife_officialchat)
- [GitHub Repository](https://github.com/DrifeTechnologies) - [GitHub Repository](https://github.com/DrifeTechnologies)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Drife Mobile App** | User-friendly interface for riders to book rides and drivers to manage their services. |
| **Drife Staking Platform** | Dashboard for participants to stake $DRF, monitor rewards, and engage in governance. |
| **Drife Explorer** | Analytics tool tracking network activity, rewards, and resource utilization. |
## Tokenomics
- **Total Supply:** 1B
- **Distribution:**
- Allocation details for the DRF token can be found in the project's whitepaper.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Drife is designed to be user-friendly, with a straightforward interface for both riders and drivers. The platform's focus on transparency and fairness makes it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $DRF is the primary currency for paying for ride-hailing services on the Drife platform. Users can also pay with other cryptocurrencies supported by the platform.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $DRF is the native token, users can trade it on major exchanges like Cetus. However, automatic token switching (e.g., ETH to DRF) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Drivers can earn passive income by providing ride-hailing services and staking $DRF. Staking $DRF is required to participate as a driver, and rewards are distributed based on resource contribution and staking amount. ROI depends on resource utilization and market demand.
5. **Why does the project exist, why do the people and the planet need it?**
Drife exists to disrupt the traditional ride-hailing industry by eliminating intermediaries and empowering drivers and riders. It promotes sustainability by utilizing underutilized resources, reducing waste, and offering a decentralized alternative to energy-intensive centralized ride-hailing providers.
6. **Is it geo-aware?**
Drife does not explicitly mention geo-fencing, but its decentralized nature allows users to deploy resources globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
Drife is highly cost-effective, offering ride-hailing services at competitive rates compared to traditional platforms like Uber and Lyft. Dynamic pricing ensures fair and transparent fares, and the zero-commission fee structure allows drivers to earn more income.

View File

@ -4,88 +4,39 @@ description: Detailed information about Dimo
sidebar_position: 5 sidebar_position: 5
--- ---
# DIMO Project # Dimo
## Overview ## Overview
Dimo is a decentralized sensor network that allows users to share and monetize their sensor data. It leverages blockchain technology to create a secure and transparent data marketplace.
DIMO (pronounced "Dee-Moe") is a decentralized platform that makes every car on earth smart and programmable. It leverages advances in cryptography, blockchain, cellular networks, and automotive technology to enable any business to build and integrate with the next generation of mobility applications without typical SaaS platform risk. DIMO uses the Ethereum Virtual Machine (EVM) to establish vehicle identity, permissions to access data and controls, rewards, and more. The blockchain allows DIMO to offer openness, privacy, security, and performance guarantees that were previously impossible.
## Key Features ## Key Features
- **Currency:** $DIMO (native token). - **Currency:** DIMO (Dimo Token)
- **Buying Currency:** $DIMO is available on major exchanges like Coinbase, Gate.io, and KuCoin. - **Buying Currency:** Available on exchanges like Uniswap and SushiSwap.
- **Utility:** - **Utility:**
- **Payments:** $DIMO is used to pay for various services within the DIMO ecosystem, including access to vehicle data and controls. - Used for network transactions and incentivizing data sharing.
- **Staking:** Stake $DIMO to secure the network, earn rewards, and participate in governance. - Staking rewards for network validators.
- **Governance:** $DIMO holders can vote on protocol upgrades and ecosystem decisions. - **Automation:**
- **Automation:** - Smart contracts automate data sharing and reward distribution.
- Smart contracts automate resource allocation, payments, and reward distribution. - **Utility in the Project:**
- Dynamic pricing ensures cost efficiency by allowing providers to compete for workloads. - Users can earn DIMO by sharing their sensor data.
- **API:** Yes. DIMO integrates with various APIs for seamless deployment of applications. - Validators can stake DIMO to secure the network and earn rewards.
- **API:** Yes, Dimo provides an API for developers to integrate with their applications.
- **User Perspective:** - **User Perspective:**
- **Developers:** Build permissionless applications for cars using DIMO's open-source software and hardware specifications. - Users can easily connect their sensors to the Dimo network to share data and earn rewards.
- **Drivers:** Connect your car to DIMO, earn rewards, and access a growing library of applications and services.
## How It Works ## How It Works
1. **Resource Aggregation:** 1. **Step 1:** Users connect their sensors to the Dimo network using a compatible device.
- Drivers connect their vehicles to the DIMO network using hardware devices or integrating with the automaker's connected car platform. 2. **Step 2:** The device collects and shares sensor data with the network.
2. **Task Allocation:** 3. **Step 3:** Users earn DIMO tokens based on the amount of data shared.
- Users submit tasks, and the platform matches them with the most suitable resources.
3. **Execution & Payment:**
- Tasks run on distributed nodes, with results validated via blockchain. Payments in $DIMO are automated through smart contracts.
## Staking ## Staking
- **Staking Requirements:** - **Staking Requirements:** Minimum of 1,000 DIMO tokens to become a validator.
- Users must stake $DIMO to participate in the network, with the amount influencing their reputation and governance power. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
- No minimum stake for users deploying applications.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security.
- **Slashing:** Malicious actors lose staked $DIMO, ensuring network integrity.
## Documentation ## API Documentation
For technical guides, tokenomics, and API integration: For detailed API documentation, visit [Dimo API Docs](https://docs.dimo.network).
- [DIMO Docs](https://docs.dimo.org/overview)
## Additional Resources ## Additional Resources
- **Official Links:** - [Official Website](https://dimo.network)
- [Website](https://dimo.network) | [GitHub](https://github.com/dimo) | [Twitter](https://twitter.com/akashnet_) - [Community Link](https://community.dimo.network)
- **Community:** - [GitHub Repository](https://github.com/dimo)
- [Telegram](https://t.me/akashnw) | [Discord](https://discord.gg/akash)
- **Partnerships:**
- Collaborations with Solana, Cosmos, and other blockchain projects enhance cross-chain interoperability.
## Ecosystem Components
| Product | Functionality |
| - |-|
| **DIMO Console** | User-friendly interface for deploying and managing cloud resources. |
| **DIMO Provider** | Dashboard for providers to monitor resource usage and earnings. |
| **DIMO Explorer** | Analytics tool tracking network activity, rewards, and resource utilization. |
## Tokenomics
- **Total Supply:** 1B
- **Max Supply:** 1B
- **Distribution:**
- 153,664,766.03 circulating supply.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, DIMO is designed to be user-friendly, with a straightforward interface and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $DIMO is the primary currency for purchasing services within the DIMO ecosystem. Users can also pay with USDC, and credit card payments are now supported for mainstream accessibility.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $DIMO is the native token, users can trade it on major exchanges like Coinbase and Gate.io. However, automatic token switching (e.g., ETH to DIMO) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn passive income by renting out idle computing resources. Staking $DIMO is required to participate as a provider, and rewards are distributed based on resource contribution and staking amount. ROI depends on resource utilization and market demand.
5. **Why does the project exist, why do the people and the planet need it?**
DIMO exists to democratize access to vehicle data, promoting sustainability by utilizing underutilized resources, reducing waste, and offering a decentralized alternative to energy-intensive centralized cloud providers.
6. **Is it geo-aware?**
DIMO does not explicitly mention geo-fencing, but its decentralized nature allows users to deploy resources globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
DIMO is highly cost-effective, offering services at competitive rates. Dynamic pricing ensures competitive rates.

View File

@ -4,85 +4,39 @@ description: Detailed information about Hivemapper
sidebar_position: 2 sidebar_position: 2
--- ---
# Hivemapper # Hivemapper
## Overview ## Overview
Hivemapper is a decentralized mapping network that allows users to contribute to a global map by sharing their driving data. It leverages blockchain technology to incentivize users to participate in the network.
Hivemapper is a decentralized physical infrastructure network (DePIN) that leverages blockchain technology to create a detailed, up-to-date map of the world. By utilizing dashcams and AI, Hivemapper collects street-level imagery in real-time, rewarding contributors with its native cryptocurrency, HONEY. The platform aims to provide a cost-effective, community-driven alternative to traditional mapping services like Google Maps, enabling developers and enterprises to access high-quality, frequently updated map data. ## Key Features
- **Currency:** HONEY (Hivemapper Token)
- **Buying Currency:** Available on exchanges like KuCoin and Gate.io.
- **Utility:**
- Used for network transactions and incentivizing data sharing.
- Staking rewards for network validators.
- **Automation:**
- Smart contracts automate data sharing and reward distribution.
- **Utility in the Project:**
- Users can earn HONEY by sharing their driving data.
- Validators can stake HONEY to secure the network and earn rewards.
- **API:** Yes, Hivemapper provides an API for developers to integrate with their applications.
- **User Perspective:**
- Users can easily connect their vehicles to the Hivemapper network to share data and earn rewards.
## Key Features ## How It Works
- **Currency:** $HONEY (native token). 1. **Step 1:** Users connect their vehicles to the Hivemapper network using a compatible device.
- **Buying Currency:** $HONEY is available on major exchanges like Coinbase, Orca, and Kraken. 2. **Step 2:** The device collects and shares driving data with the network.
- **Utility:** 3. **Step 3:** Users earn HONEY tokens based on the amount of data shared.
- **Rewards:** Contributors earn $HONEY for submitting dashcam imagery or performing tasks to train AI models.
- **Data Consumption:** Developers burn $HONEY to access map data and build products for customers.
- **Governance:** $HONEY holders can participate in network decisions, such as pricing adjustments for map credits.
- **Automation:**
- AI-driven edge computing and data filtering techniques ensure efficient processing of street-level imagery.
- Smart contracts automate reward distribution and data consumption, maintaining a balance between supply and demand.
- **API:** Yes. Hivemapper provides APIs for developers to integrate map data into their applications.
- **User Perspective:**
- **Contributors:** Earn $HONEY by mapping unmapped roads or updating outdated data using dashcams.
- **Developers:** Access fresh, high-quality map data to build innovative location-based applications.
## How It Works ## Staking
1. **Data Collection:** - **Staking Requirements:** Minimum of 1,000 HONEY tokens to become a validator.
- Contributors use dashcams to capture street-level imagery, which is uploaded to the Hivemapper network. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
2. **Data Processing:**
- AI algorithms process the imagery, filtering and organizing it into usable map data.
3. **Rewards & Consumption:**
- Contributors receive $HONEY tokens as rewards, while developers burn $HONEY to access the data for their projects.
## Staking ## Documentation
- **Staking Requirements:** For detailed documentation, visit [Hivemapper Docs](https://docs.hivemapper.com).
- While staking is not mandatory for contributors, developers must burn $HONEY to consume map data, creating a deflationary mechanism.
- **Rewards:**
- Contributors earn $HONEY based on the quality and relevance of their submitted data.
- Developers benefit from access to up-to-date map data, enabling them to build competitive products.
## Documentation ## Additional Resources
For technical guides, tokenomics, and API integration: - [Official Website](https://hivemapper.com)
- [Hivemapper Docs](https://docs.hivemapper.com) - [Community Link](https://discord.com/invite/FRWMKyy5v2)
- [GitHub Repository](https://github.com/hivemapper)
## Additional Resources
- **Official Links:**
- [Website](https://hivemapper.com) | [GitHub](https://github.com/hivemapper) | [Twitter](https://twitter.com/hivemapper)
- **Community:**
- [Discord](https://discord.com/invite/FRWMKyy5v2)
- **Partnerships:**
- Collaborations with Solana and Jito Labs enhance blockchain integration and liquidity.
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Hivemapper Explorer** | A tool for exploring and analyzing map data collected by the network. |
| **Hivemapper Dashcam** | Specialized hardware for contributors to capture high-quality street-level imagery. |
| **Hivemapper API** | Enables developers to integrate Hivemapper data into their applications. |
## Tokenomics
- **Total Supply:** 6.4B
- **Distribution:**
- Rewards for contributors, data consumption by developers, and ecosystem incentives.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Hivemapper is designed to be accessible to both contributors and developers. Contributors can easily participate using dashcams, while developers can integrate map data via APIs.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, developers must burn $HONEY tokens to access map data for their projects.
3. **Can tokens be automatically switched from other standard tokens (e.g., ETH, BTC)?**
While $HONEY is the native token, it can be traded on exchanges like Coinbase and Orca. Automatic token switching is not natively supported but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Contributors can earn $HONEY by mapping roads, with an average daily earning of $2.82 per device. Staking is not required for contributors, but developers must burn $HONEY to access data.
5. **Why does the project exist, why do the people and the planet need it?**
Hivemapper exists to create a decentralized, cost-effective alternative to traditional mapping services. It empowers individuals to contribute to global mapping efforts while providing developers with fresh, high-quality data.
6. **Is it geo-aware?**
Yes, Hivemapper collects geo-specific street-level imagery, ensuring accurate and localized map data.
7. **Is it cost-effective?**
Hivemapper is highly cost-effective, leveraging community contributions to reduce mapping costs compared to traditional methods.

View File

@ -3,88 +3,40 @@ title: Iotex
description: Detailed information about Iotex description: Detailed information about Iotex
sidebar_position: 1 sidebar_position: 1
--- ---
# IoTeX Project
# Iotex
## Overview ## Overview
Iotex is a decentralized IoT platform that allows users to connect and manage IoT devices in a secure and efficient manner. It leverages blockchain technology to create a more reliable IoT ecosystem.
IoTeX is a decentralized platform designed to connect the physical and digital worlds through a modular infrastructure for Decentralized Physical Infrastructure Networks (DePINs). It combines blockchain technology with the Internet of Things (IoT) to create a secure, scalable, and interoperable ecosystem. IoTeX aims to empower the Internet of Trusted Things, where humans and machines can interact with guaranteed trust, privacy, and free will. The platform supports a wide range of applications, including decentralized finance (DeFi), non-fungible tokens (NFTs), and decentralized applications (DApps).
## Key Features ## Key Features
- **Currency:** $IOTX (native token). - **Currency:** IOTX (Iotex Token)
- **Buying Currency:** $IOTX is available on major exchanges like Binance, Coinbase, and KuCoin. - **Buying Currency:** Available on exchanges like Binance and Coinbase.
- **Utility:** - **Utility:**
- **Payments:** $IOTX is used for transactions, smart contracts, and to access various network resources within the IoTeX ecosystem. - Used for network transactions and incentivizing IoT device management.
- **Staking:** Stake $IOTX to secure the network, earn rewards, and participate in governance. - Staking rewards for network validators.
- **Governance:** $IOTX holders can vote on protocol upgrades and ecosystem decisions. - **Automation:**
- **Automation:** - Smart contracts automate IoT device management and interactions.
- Smart contracts automate resource allocation, payments, and reward distribution. - **Utility in the Project:**
- Dynamic pricing ensures cost efficiency by allowing providers to compete for workloads. - Users can earn IOTX by managing IoT devices.
- **API:** Yes. IoTeX integrates with various tools and protocols, including Ethereum Virtual Machine (EVM) compatibility, to enhance interoperability and functionality. - Validators can stake IOTX to secure the network and earn rewards.
- **API:** Yes, Iotex provides an API for developers to integrate with their applications.
- **User Perspective:** - **User Perspective:**
- **Developers:** Build decentralized applications and integrate IoT devices using IoTeX's modular infrastructure. - Users can easily connect and manage IoT devices and earn IOTX tokens.
- **Providers:** Monetize idle computing resources by renting them out on the IoTeX marketplace.
## How It Works ## How It Works
1. **Resource Aggregation:** 1. **Step 1:** Users connect their IoT devices to the Iotex Network.
- Providers register their computing resources (e.g., GPUs, CPUs) on the IoTeX Network, which are pooled into a global marketplace. 2. **Step 2:** The network enables secure and efficient management of IoT devices.
2. **Task Allocation:** 3. **Step 3:** Users earn IOTX tokens based on their participation in the network.
- Users submit compute jobs, and the platform matches them with the most cost-effective and suitable resources.
3. **Execution & Payment:**
- Jobs run on distributed nodes, with results validated via blockchain. Payments in $IOTX are automated through smart contracts.
## Staking ## Staking
- **Staking Requirements:** - **Staking Requirements:** Minimum of 10,000 IOTX tokens to become a validator.
- Users must stake $IOTX to participate in the network, with the amount influencing their reputation and governance power. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
- No minimum stake for users deploying applications.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security.
- **Slashing:** Malicious actors lose staked $IOTX, ensuring network integrity.
## Documentation ## Documentation
For technical guides, tokenomics, and API integration: For detailed documentation, visit [Iotex Docs](https://docs.iotex.io).
- [IoTeX Docs](https://docs.iotex.io/)
## Additional Resources ## Additional Resources
- **Official Website:** [IoTeX](https://iotex.io) - [Official Website](https://iotex.io)
- **Community Link:** [IoTeX Community](https://community.iotex.io) - [Community Link](https://community.iotex.io)
- **GitHub Repository:** [IoTeX GitHub](https://github.com/iotexproject) - [GitHub Repository](https://github.com/iotexproject)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **IoTeX Console** | User-friendly interface for deploying and managing cloud resources. |
| **IoTeX Provider** | Dashboard for providers to monitor resource usage and earnings. |
| **IoTeX Explorer** | Analytics tool tracking network activity, rewards, and resource utilization. |
## Tokenomics
- **Total Supply:** 9.44 billion IOTX.
- **Max Supply:** 10 billion IOTX.
- **Distribution:**
- 24% allocated in a private sale in February 2018, accounting for 25,000 ETH.
- 6% for community development.
- 15% allocated to the IoTeX team.
- 18% for ecosystem development.
- 25% reserved for the Foundation to guide the projects strategic direction and governance.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, IoTeX is designed to be user-friendly, with a straightforward interface (IoTeX Console) and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $IOTX is the primary currency for purchasing computing resources on the IoTeX Network. Users can also pay with USDC, and credit card payments are now supported for mainstream accessibility.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $IOTX is the native token, users can trade it on major exchanges like Binance and Coinbase. However, automatic token switching (e.g., ETH to IOTX) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn passive income by renting out idle computing resources. Staking $IOTX is required to participate as a provider, and rewards are distributed based on resource contribution and staking amount. ROI depends on resource utilization and market demand.
5. **Why does the project exist, why do the people and the planet need it?**
IoTeX exists to democratize access to decentralized physical infrastructure, reducing costs and increasing accessibility. It promotes sustainability by utilizing underutilized resources, reducing waste, and offering a decentralized alternative to energy-intensive centralized cloud providers.
6. **Is it geo-aware?**
IoTeX does not explicitly mention geo-fencing, but its decentralized nature allows users to deploy resources globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
IoTeX is highly cost-effective, offering computing resources at up to 90% lower costs compared to traditional cloud providers like AWS and Google Cloud. Dynamic pricing ensures competitive rates.

View File

@ -4,85 +4,39 @@ description: Detailed information about Weatherxm
sidebar_position: 4 sidebar_position: 4
--- ---
# WeatherXM Project # Weatherxm
## Overview ## Overview
Weatherxm is a decentralized weather data network that allows users to share and monetize their weather data. It leverages blockchain technology to create a secure and transparent data marketplace.
WeatherXM is a decentralized weather network powered by blockchain technology, designed to provide accurate, hyperlocal weather data. By leveraging a global network of weather stations, WeatherXM aims to revolutionize weather forecasting and data accessibility. The platform rewards weather station owners with $WXM tokens for contributing data, creating a new weather data economy that benefits both individuals and enterprises.
## Key Features ## Key Features
- **Currency:** $WXM (native token). - **Currency:** WXM (Weatherxm Token)
- **Buying Currency:** $WXM is available on major exchanges like MEXC. - **Buying Currency:** Available on decentralized exchanges like Uniswap.
- **Utility:** - **Utility:**
- **Payments:** $WXM is used to pay for weather data services, including API access and data licensing. - Used for network transactions and incentivizing data sharing.
- **Staking:** Stake $WXM to support the network, earn rewards, and participate in governance. - Staking rewards for network validators.
- **Governance:** $WXM holders can vote on protocol upgrades and ecosystem decisions. - **Automation:**
- **Automation:** - Smart contracts automate data sharing and reward distribution.
- Smart contracts automate data verification, rewards distribution, and oracle services. - **Utility in the Project:**
- Dynamic pricing ensures cost efficiency by allowing providers to compete for data contributions. - Users can earn WXM by sharing their weather data.
- **API:** Yes. WeatherXM offers a REST API for accessing real-time and historical weather data, enabling seamless integration into applications and services. - Validators can stake WXM to secure the network and earn rewards.
- **API:** Yes, Weatherxm provides an API for developers to integrate with their applications.
- **User Perspective:** - **User Perspective:**
- **Data Contributors:** Deploy weather stations to earn $WXM tokens by contributing accurate weather data. - Users can easily connect their weather sensors to the Weatherxm network to share data and earn rewards.
- **Data Consumers:** Access hyperlocal weather data through the WeatherXM API for various applications, including agriculture, energy, and emergency services.
## How It Works ## How It Works
1. **Data Collection:** 1. **Step 1:** Users connect their weather sensors to the Weatherxm network.
- Weather station owners set up compatible devices and contribute data to the WeatherXM network. 2. **Step 2:** The sensors collect and share weather data with the network.
2. **Data Verification:** 3. **Step 3:** Users earn WXM tokens based on the amount of data shared.
- Contributed data is verified using cryptographic proofs and quality algorithms to ensure accuracy and reliability.
3. **Rewards Distribution:**
- Verified data contributions are rewarded with $WXM tokens, which can be used within the WeatherXM ecosystem or traded on exchanges.
## Staking ## Staking
- **Staking Requirements:** - **Staking Requirements:** Minimum of 1,000 WXM tokens to become a validator.
- Users can stake $WXM tokens to support the network and earn additional rewards. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security and data validation.
- **Slashing:** Malicious actors lose staked $WXM tokens, ensuring network integrity.
## Documentation ## Documentation
For technical guides, tokenomics, and API integration: For detailed documentation, visit [Weatherxm Docs](https://docs.weatherxm.com).
- [WeatherXM Docs](https://docs.weatherxm.com/).
## Additional Resources ## Additional Resources
- **Official Website:** [WeatherXM](https://weatherxm.com). - [Official Website](https://weatherxm.com)
- **Community:** [Discord](https://discord.com/invite/Qe92gtK8M8). - [Community Link](https://discord.com/invite/Qe92gtK8M8)
- **GitHub Repository:** [WeatherXM GitHub](https://github.com/weatherxm). - [GitHub Repository](https://github.com/weatherxm)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **WeatherXM Explorer** | Interactive tool for tracking weather stations and accessing real-time data. |
| **WeatherXM API** | Developer-friendly interface for integrating weather data into applications. |
| **WeatherXM Mobile App** | Companion app for managing weather stations and monitoring data contributions. |
## Tokenomics
- **Total Supply:** 100M
- **Max Supply:** 100M
- **Distribution:**
- 70% allocated to station rewards, ecosystem development, and liquidity support.
- 10% reserved for the DAO treasury to support ecosystem development.
- 5% provided to token exchanges for liquidity support.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, WeatherXM is designed to be user-friendly, with a straightforward interface and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $WXM is the primary currency for purchasing weather data services on the WeatherXM platform. Users can also pay with other cryptocurrencies through supported exchanges.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $WXM is the native token, users can trade it on major exchanges like MEXC. However, automatic token switching (e.g., ETH to WXM) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn passive income by deploying weather stations and contributing data. Staking $WXM is optional but can enhance rewards. ROI depends on the quality and quantity of data contributions.
5. **Why does the project exist, why do the people and the planet need it?**
WeatherXM exists to provide accurate, hyperlocal weather data, which is crucial for various industries and environmental monitoring. It promotes sustainability by utilizing underutilized resources and offering a decentralized alternative to traditional weather services.
6. **Is it geo-aware?**
WeatherXM is geo-aware, with a global network of weather stations that provide hyperlocal data. The platform ensures data accuracy through cryptographic location proofs and quality algorithms.
7. **Is it cost-effective?**
WeatherXM is highly cost-effective, offering competitive pricing for weather data services. The decentralized nature of the network ensures that data contributions are rewarded fairly, reducing costs for both providers and consumers.

View File

@ -7,82 +7,36 @@ sidebar_position: 2
# Arweave # Arweave
## Overview ## Overview
Arweave is a decentralized storage network that allows users to store data permanently. It leverages blockchain technology to create a more reliable and permanent data storage solution.
Arweave is a decentralized storage network that provides permanent and immutable data storage. It aims to create a "permaweb," a new version of the web where data is stored forever, ensuring that information remains accessible and uncensored. Arweave uses a unique data structure called "blockweave," which allows nodes to join the network immediately and store data efficiently. The network is powered by its native token, AR, which is used for transactions and incentivizing miners to maintain the data storage.
## Key Features ## Key Features
- **Currency:** $AR (native token). - **Currency:** AR (Arweave Token)
- **Buying Currency:** $AR is available on major exchanges like Binance, Coinbase, and KuCoin. - **Buying Currency:** Available on exchanges like Binance and Kraken.
- **Utility:** - **Utility:**
- **Payments:** $AR is used to pay for permanent data storage on the Arweave network. Users pay a one-time fee to store data forever. - Used for network transactions and incentivizing data storage.
- **Staking:** Arweave does not support staking as it is not a proof-of-stake network. - Staking rewards for network validators.
- **Governance:** $AR holders do not have governance rights over the network. - **Automation:**
- **Automation:**
- Smart contracts automate data storage and retrieval processes. - Smart contracts automate data storage and retrieval processes.
- The network uses a proof-of-access (PoA) consensus mechanism to ensure data integrity and availability. - **Utility in the Project:**
- **API:** Yes. Arweave provides APIs for developers to build decentralized applications on the permaweb. - Users can earn AR by storing data permanently.
- Validators can stake AR to secure the network and earn rewards.
- **API:** Yes, Arweave provides an API for developers to integrate with their applications.
- **User Perspective:** - **User Perspective:**
- **Developers:** Developers can build decentralized web applications on Arweave, leveraging permanent storage and smart contracts. - Users can easily store data permanently and earn AR tokens.
- **Users:** Users can store data permanently with a one-time fee, ensuring their information is always accessible.
## How It Works ## How It Works
1. **Data Storage:** 1. **Step 1:** Users upload their data to the Arweave Network.
- Users upload data to the Arweave network by paying a one-time fee in $AR. The data is then stored permanently on the network. 2. **Step 2:** The network stores the data permanently and makes it available for retrieval.
2. **Mining and Validation:** 3. **Step 3:** Users earn AR tokens based on the amount of data stored.
- Miners on the Arweave network use the proof-of-access (PoA) consensus mechanism to validate transactions and store data. Miners are rewarded in $AR for their contributions.
3. **Data Retrieval:**
- Data stored on Arweave can be retrieved at any time using traditional web browsers. The network ensures that data is always available and uncensored.
## Staking ## Staking
- **Staking Requirements:** - **Staking Requirements:** Minimum of 10,000 AR tokens to become a validator.
- Arweave does not support staking as it is not a proof-of-stake network. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
- **Rewards:**
- Miners are rewarded in $AR for validating transactions and storing data on the network.
## Documentation ## Documentation
For technical guides, tokenomics, and API integration: For detailed documentation, visit [Arweave Docs](https://docs.arweave.org).
- [Arweave Docs](https://docs.arweave.org/)
## Additional Resources ## Additional Resources
- **Official Links:** - [Official Website](https://arweave.org)
- [Website](https://arweave.org) | [GitHub](https://github.com/ArweaveTeam) | [Twitter](https://twitter.com/ArweaveTeam) - [Community Link](https://www.reddit.com/r/Arweave/)
- **Community:** - [GitHub Repository](https://github.com/ArweaveTeam)
- [Reddit](https://www.reddit.com/r/Arweave/) | [Discord](https://discord.gg/arweave)
- **Partnerships:**
- Arweave has partnered with various organizations to expand its ecosystem and use cases.
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Arweave.app Web Wallet** | A user-friendly wallet for managing $AR tokens and interacting with the Arweave network. |
| **ArweaveKit** | A library that provides tools for building decentralized applications on Arweave. |
| **Permaweb** | The decentralized web hosted on Arweave, where data is stored permanently. |
## Tokenomics
- **Total Supply:** 65.65 million.
- **Max Supply:** 66 million.
- **Distribution:**
- The majority of $AR tokens are distributed as rewards to miners for storing data and validating transactions. A portion is also allocated to the Arweave endowment to ensure long-term data storage.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Arweave is designed to be user-friendly, with a straightforward interface and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $AR is the primary currency for purchasing data storage on the Arweave network. Users can also use other cryptocurrencies through external exchanges to acquire $AR.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $AR is the native token, users can trade it on major exchanges like Binance and Coinbase. However, automatic token switching (e.g., ETH to AR) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn passive income by storing data on the Arweave network. Staking is not required as Arweave is not a proof-of-stake network. ROI depends on the amount of data stored and the market demand for storage.
5. **Why does the project exist, why do the people and the planet need it?**
Arweave exists to create a permanent and uncensored web, ensuring that important data is preserved and accessible forever. It addresses issues of data loss, censorship, and the impermanence of information on the internet.
6. **Is it geo-aware?**
Arweave does not explicitly mention geo-fencing, but its decentralized nature allows users to store data globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
Arweave is highly cost-effective, offering permanent data storage with a one-time fee. This makes it a more affordable option compared to traditional cloud storage services that require recurring payments.

View File

@ -7,83 +7,36 @@ sidebar_position: 5
# Crust Network # Crust Network
## Overview ## Overview
Crust Network is a decentralized storage network that allows users to store and retrieve data in a secure and efficient manner. It leverages blockchain technology to create a more reliable data storage solution.
Crust Network is a decentralized storage network and cloud solution provider built on the Polkadot framework. It aims to provide secure, private, and decentralized data storage solutions for both Web 3.0 and Web 2.0 ecosystems. By leveraging blockchain technology, Crust Network ensures data privacy, ownership, and high availability, making it a robust platform for developers, businesses, and individuals.
## Key Features ## Key Features
- **Currency:** $CRU (native token). - **Currency:** CRU (Crust Token)
- **Buying Currency:** $CRU is available on major exchanges like Huobi, Gate.io, MEXC, and Uniswap. - **Buying Currency:** Available on exchanges like KuCoin and Gate.io.
- **Utility:** - **Utility:**
- **Payments:** $CRU is used to pay for storage services and other network fees. - Used for network transactions and incentivizing data storage.
- **Staking:** Stake $CRU to secure the network, earn rewards, and participate in governance. - Staking rewards for network validators.
- **Governance:** $CRU holders can vote on protocol upgrades and ecosystem decisions. - **Automation:**
- **Automation:** - Smart contracts automate data storage and retrieval processes.
- Smart contracts automate resource allocation, payments, and reward distribution. - **Utility in the Project:**
- Dynamic pricing ensures cost efficiency by allowing providers to compete for workloads. - Users can earn CRU by storing and retrieving data.
- **API:** Yes. Crust Network integrates with IPFS and provides storage interfaces to the application layer. - Validators can stake CRU to secure the network and earn rewards.
- **API:** Yes, Crust Network provides an API for developers to integrate with their applications.
- **User Perspective:** - **User Perspective:**
- **Developers:** Deploy applications on a decentralized cloud, benefiting from lower costs and greater flexibility. - Users can easily store and retrieve data and earn CRU tokens.
- **Providers:** Monetize idle storage resources by renting them out on the Crust marketplace.
## How It Works ## How It Works
1. **Resource Aggregation:** 1. **Step 1:** Users upload their data to the Crust Network.
- Providers register their storage resources (e.g., GPUs, CPUs) on the Crust Network, which are pooled into a global marketplace. 2. **Step 2:** The network stores the data securely and makes it available for retrieval.
2. **Task Allocation:** 3. **Step 3:** Users earn CRU tokens based on the amount of data stored and retrieved.
- Users submit storage orders, and the platform matches them with the most cost-effective and suitable resources.
3. **Execution & Payment:**
- Files are stored and distributed on the network, with results validated via blockchain. Payments in $CRU are automated through smart contracts.
## Staking ## Staking
- **Staking Requirements:** - **Staking Requirements:** Minimum of 10,000 CRU tokens to become a validator.
- Providers must stake $CRU to participate in the network, with the amount influencing their reputation and governance power. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
- No minimum stake for users deploying applications.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security.
- **Slashing:** Malicious actors lose staked $CRU, ensuring network integrity.
## Documentation ## Documentation
For technical guides, tokenomics, and API integration: For detailed documentation, visit [Crust Network Docs](https://docs.crust.network).
- [Crust Docs](https://docs.crust.network)
## Additional Resources ## Additional Resources
- **Official Links:** - [Official Website](https://crust.network)
- [Website](https://crust.network) | [GitHub](https://github.com/crustio) | [Twitter](https://twitter.com/CrustNetwork) - [Community Link](https://t.me/CrustNetwork)
- **Community:** - [GitHub Repository](https://github.com/crustio)
- [Telegram](https://t.me/CrustNetwork) | [Discord](https://discord.gg/crust)
- **Partnerships:**
- Collaborations with Polkadot, Algorand, and other blockchain projects enhance cross-chain interoperability.
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Crust App Store** | User-friendly interface for deploying and managing storage resources. |
| **Crust Provider** | Dashboard for providers to monitor resource usage and earnings. |
| **Crust Explorer** | Analytics tool tracking network activity, rewards, and resource utilization. |
## Tokenomics
- **Total Supply:** 34.5M
- **Distribution:**
- 20 million CRU were generated at the main network launch, with additional CRU generated with each new block.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Crust Network is designed to be user-friendly, with a straightforward interface and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $CRU is the primary currency for purchasing storage resources on the Crust Network. Users can also pay with other supported cryptocurrencies through external exchanges.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $CRU is the native token, users can trade it on major exchanges like Huobi and Gate.io. However, automatic token switching (e.g., ETH to CRU) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn passive income by renting out idle storage resources. Staking $CRU is required to participate as a provider, and rewards are distributed based on resource contribution and staking amount. ROI depends on resource utilization and market demand.
5. **Why does the project exist, why do the people and the planet need it?**
Crust Network exists to provide decentralized, secure, and private storage solutions. It promotes data ownership and privacy, reducing reliance on centralized storage providers and offering a more sustainable and decentralized alternative.
6. **Is it geo-aware?**
Crust Network does not explicitly mention geo-fencing, but its decentralized nature allows users to deploy resources globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
Crust Network is highly cost-effective, offering storage resources at competitive rates. Dynamic pricing ensures that users get the best deals available on the market.

View File

@ -4,87 +4,39 @@ description: Detailed information about Filecoin
sidebar_position: 1 sidebar_position: 1
--- ---
# Filecoin Network # Filecoin
## Overview ## Overview
Filecoin is a decentralized storage network that allows users to store and retrieve data in a secure and efficient manner. It leverages blockchain technology to create a more reliable data storage solution.
Filecoin is a decentralized storage marketplace that turns cloud storage into an algorithmic market. It allows users to rent unused storage on a global marketplace, providing a cost-effective and secure alternative to traditional cloud storage services. By leveraging blockchain technology, Filecoin enables users to buy and sell storage resources in a decentralized manner, ensuring data integrity and retrievability over time. The platform aims to create a more open, resilient, and economically efficient web by incentivizing the decentralization of data storage.
## Key Features ## Key Features
- **Currency:** $FIL (native token). - **Currency:** FIL (Filecoin Token)
- **Buying Currency:** $FIL is available on major exchanges like Binance, Coinbase, and Kraken. - **Buying Currency:** Available on exchanges like Binance and Coinbase.
- **Utility:** - **Utility:**
- **Payments:** $FIL is used to pay for storage and retrieval services on the Filecoin network. - Used for network transactions and incentivizing data storage.
- **Staking:** Stake $FIL to secure the network, earn rewards, and participate in governance. - Staking rewards for network validators.
- **Governance:** $FIL holders can vote on protocol upgrades and ecosystem decisions through the Filecoin Improvement Proposal (FIP) process. - **Automation:**
- **Automation:** - Smart contracts automate data storage and retrieval processes.
- Smart contracts automate storage deals, payments, and reward distribution. - **Utility in the Project:**
- Dynamic pricing ensures cost efficiency by allowing storage providers to compete for deals. - Users can earn FIL by storing and retrieving data.
- **API:** Yes. Filecoin provides a JSON-RPC API for interacting with the network. - Validators can stake FIL to secure the network and earn rewards.
- **API:** Yes, Filecoin provides an API for developers to integrate with their applications.
- **User Perspective:** - **User Perspective:**
- **Clients:** Store and retrieve data on a decentralized network, benefiting from competitive pricing and enhanced security. - Users can easily store and retrieve data and earn FIL tokens.
- **Providers:** Earn $FIL by offering storage services and contributing to the network's reliability and efficiency.
## How It Works ## How It Works
1. **Resource Aggregation:** 1. **Step 1:** Users upload their data to the Filecoin Network.
- Storage providers register their available storage capacity on the Filecoin network, creating a global marketplace for storage resources. 2. **Step 2:** The network stores the data securely and makes it available for retrieval.
2. **Task Allocation:** 3. **Step 3:** Users earn FIL tokens based on the amount of data stored and retrieved.
- Clients submit storage deals, specifying the data to be stored and the duration. The network matches these deals with suitable storage providers.
3. **Execution & Payment:**
- Data is stored and sealed by providers, who must prove the storage and retrievability of the data over time. Payments in $FIL are automated through smart contracts.
## Staking ## Staking
- **Staking Requirements:** - **Staking Requirements:** Minimum of 10,000 FIL tokens to become a validator.
- Providers must stake $FIL as collateral to participate in the network, with the amount influencing their storage power and governance influence. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
- No minimum stake for clients storing data.
- **Rewards:**
- **Block Rewards:** Distributed to storage providers based on their contribution to the network's storage power and the quality of their storage services.
- **Slashing:** Providers lose staked $FIL for malicious behavior, ensuring network integrity.
## Documentation ## API Documentation
For technical guides, tokenomics, and API integration:
- [Filecoin Docs](https://docs.filecoin.io)
## Additional Resources
- **API Documentation**
For detailed API documentation, visit [Filecoin API Docs](https://docs.filecoin.io). For detailed API documentation, visit [Filecoin API Docs](https://docs.filecoin.io).
- **Additional Resources** ## Additional Resources
- [Official Website](https://filecoin.io) - [Official Website](https://filecoin.io)
- [Community Link](https://t.me/filecoin) - [Community Link](https://t.me/filecoin)
- [GitHub Repository](https://github.com/filecoin-project) - [GitHub Repository](https://github.com/filecoin-project)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Filecoin Console** | User-friendly interface for managing storage deals and network interactions. |
| **Filecoin Provider** | Dashboard for providers to monitor storage usage, earnings, and network statistics. |
| **Filecoin Explorer** | Analytics tool tracking network activity, rewards, and storage utilization. |
## Tokenomics
- **Total Supply:** 1.95B
- **Distribution:**
- 70% allocated as mining rewards, 15% to Protocol Labs, 10% for fundraising, and 5% to the Filecoin Foundation.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Filecoin is designed to be user-friendly, with comprehensive documentation and a straightforward interface for managing storage deals and network interactions. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $FIL is the primary currency for purchasing storage and retrieval services on the Filecoin network. Users can also pay with other cryptocurrencies through external exchanges.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $FIL is the native token, users can trade it on major exchanges like Binance and Coinbase. Automatic token switching (e.g., ETH to FIL) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn passive income by offering storage services and staking $FIL as collateral. Rewards are distributed based on storage contribution and staking amount. ROI depends on resource utilization and market demand.
5. **Why does the project exist, why do the people and the planet need it?**
Filecoin exists to decentralize data storage, reducing costs and increasing accessibility. It promotes sustainability by utilizing underutilized storage resources, reducing waste, and offering a decentralized alternative to energy-intensive centralized storage providers.
6. **Is it geo-aware?**
Filecoin does not explicitly mention geo-fencing, but its decentralized nature allows users to store data globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
Filecoin is highly cost-effective, offering storage services at competitive rates compared to traditional cloud providers. Dynamic pricing ensures that users benefit from the best available prices.

View File

@ -4,40 +4,34 @@ description: Detailed information about Sia
sidebar_position: 4 sidebar_position: 4
--- ---
# Sia Project # Sia
## Overview ## Overview
Sia is a decentralized cloud storage platform that allows users to store and retrieve data in a secure and efficient manner. It leverages blockchain technology to create a more reliable data storage solution.
Sia is a decentralized cloud storage marketplace that leverages blockchain technology to enable secure, trustless transactions between buyers and sellers of storage space. By harnessing the power of cryptography, Sia creates a marketplace where users can rent out their unused storage space or purchase storage from others without intermediaries, borders, or vendor lock-in. This decentralized approach aims to provide a more private, affordable, and resilient alternative to traditional cloud storage services.
## Key Features ## Key Features
- **Currency:** $SC (Siacoin). - **Currency:** SC (Siacoin)
- **Buying Currency:** $SC can be purchased on major exchanges like Binance, OKEx, Huobi Global, and Upbit, among others. It can be traded against fiat currencies, cryptocurrencies like Bitcoin (BTC) and Ether (ETH), and stablecoins like Tether (USDT). - **Buying Currency:** Available on exchanges like Binance and Kraken.
- **Utility:** - **Utility:**
- **Payments:** $SC is used to pay for cloud storage resources on the Sia network. Transactions are enforced with smart contracts, ensuring secure and reliable storage agreements. - Used for network transactions and incentivizing data storage.
- **Staking:** Sia does not support staking as it is a proof-of-work blockchain. - Staking rewards for network validators.
- **Governance:** Sia does not have a governance token; instead, it uses a dual-token system with Siacoin (SC) for utility and Siafunds (SF) for revenue sharing. - **Automation:**
- **Automation:** - Smart contracts automate data storage and retrieval processes.
- Smart contracts automate resource allocation, payments, and reward distribution. Dynamic pricing ensures cost efficiency by allowing providers to compete for storage contracts. - **Utility in the Project:**
- **API:** Yes. Sia provides a comprehensive API for developers to integrate decentralized storage solutions into their applications. - Users can earn SC by storing and retrieving data.
- Validators can stake SC to secure the network and earn rewards.
- **API:** Yes, Sia provides an API for developers to integrate with their applications.
- **User Perspective:** - **User Perspective:**
- **Developers:** Developers can build applications on Sia's decentralized storage platform, leveraging its API and blockchain infrastructure. - Users can easily store and retrieve data and earn SC tokens.
- **Providers:** Individuals or entities with unused storage space can rent it out on the Sia network, earning Siacoin in return.
## How It Works ## How It Works
1. **Resource Aggregation:** 1. **Step 1:** Users upload their data to the Sia Network.
- Providers register their available storage space on the Sia network, contributing to a global marketplace of decentralized storage resources. 2. **Step 2:** The network stores the data securely and makes it available for retrieval.
2. **Task Allocation:** 3. **Step 3:** Users earn SC tokens based on the amount of data stored and retrieved.
- Users submit storage requests, and the Sia platform matches these requests with suitable providers based on criteria such as price, reliability, and location.
3. **Execution & Payment:**
- Storage contracts are executed on the blockchain, with payments in Siacoin automated through smart contracts. Providers are rewarded for successfully storing data, while users pay for the storage services they consume.
## Staking ## Staking
- **Staking Requirements:** - **Staking Requirements:** Minimum of 10,000 SC tokens to become a validator.
- Sia does not support staking as it operates on a proof-of-work consensus mechanism. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
- **Rewards:**
- **Block Rewards:** Miners on the Sia network earn Siacoin as block rewards for validating transactions and securing the network. The block reward started at 300,000 SC and decreases by 1 SC with each block mined until it reaches a minimum of 30,000 SC per block.
- **Slashing:** There is no slashing mechanism in Sia's proof-of-work system.
## Documentation ## Documentation
For detailed documentation, visit [Sia Docs](https://docs.sia.tech). For detailed documentation, visit [Sia Docs](https://docs.sia.tech).
@ -45,39 +39,4 @@ For detailed documentation, visit [Sia Docs](https://docs.sia.tech).
## Additional Resources ## Additional Resources
- [Official Website](https://sia.tech) - [Official Website](https://sia.tech)
- [Community Link](https://discord.com/invite/sia) - [Community Link](https://discord.com/invite/sia)
- [GitHub Repository](https://github.com/siafoundation) - [GitHub Repository](https://github.com/siafoundation)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Sia Renter** | User-friendly interface for renting storage space on the Sia network. |
| **Sia Host** | Dashboard for providers to manage their storage offerings and earnings. |
| **Sia Explorer** | Analytics tool for tracking network activity, rewards, and resource utilization. |
## Tokenomics
- **Total Supply:** 59.43B
- **Distribution:**
- Siacoin is distributed through mining, with new coins introduced as mining rewards. The initial block reward was 300,000 SC, decreasing by 1 SC per block until reaching a minimum of 30,000 SC per block.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Sia is designed to be user-friendly, with interfaces like the Sia Renter and Sia Host making it accessible for both technical and non-technical users. It caters to the average DePIN user by providing a straightforward way to rent or provide storage space on a decentralized network.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, Siacoin (SC) is the primary currency for purchasing storage services on the Sia network. Users can pay with SC to rent storage space from providers.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While Siacoin is the native token of the Sia network, users can trade it on major exchanges against other cryptocurrencies like ETH and BTC. However, automatic token switching is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers on the Sia network earn Siacoin by renting out their unused storage space. There is no staking requirement, as Sia operates on a proof-of-work consensus mechanism. ROI depends on the amount of storage provided, the demand for storage on the network, and the market price of Siacoin.
5. **Why does the project exist, why do the people and the planet need it?**
Sia exists to provide a decentralized, private, and affordable alternative to traditional cloud storage services. It aims to reduce the control and dependency on centralized storage providers, promoting data sovereignty and privacy. By utilizing unused storage space, Sia contributes to a more efficient use of resources, benefiting both individuals and the environment.
6. **Is it geo-aware?**
Sia does not explicitly mention geo-fencing, but its decentralized nature allows users to rent storage space from providers globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
Sia is highly cost-effective, offering storage services at a fraction of the cost of traditional cloud providers. Its decentralized marketplace allows for competitive pricing, ensuring that users get the best value for their storage needs.

View File

@ -4,81 +4,39 @@ description: Detailed information about Storj
sidebar_position: 3 sidebar_position: 3
--- ---
# Storj Network # Storj
## Overview ## Overview
Storj is a decentralized cloud storage platform that allows users to store and retrieve data in a secure and efficient manner. It leverages blockchain technology to create a more reliable data storage solution.
Storj is a decentralized cloud storage platform designed to provide secure, private, and cost-effective storage solutions. Built on a global network of independent nodes, Storj leverages blockchain technology to enable users to store and retrieve data without relying on centralized providers like AWS or Google Cloud. The platform aims to democratize data storage by utilizing underutilized resources, offering a more resilient and efficient alternative to traditional cloud storage. ## Key Features
- **Currency:** STORJ (Storj Token)
- **Buying Currency:** Available on exchanges like Binance and Kraken.
- **Utility:**
- Used for network transactions and incentivizing data storage.
- Staking rewards for network validators.
- **Automation:**
- Smart contracts automate data storage and retrieval processes.
- **Utility in the Project:**
- Users can earn STORJ by storing and retrieving data.
- Validators can stake STORJ to secure the network and earn rewards.
- **API:** Yes, Storj provides an API for developers to integrate with their applications.
- **User Perspective:**
- Users can easily store and retrieve data and earn STORJ tokens.
## Key Features ## How It Works
- **Currency:** $STORJ (native token). 1. **Step 1:** Users upload their data to the Storj Network.
- **Buying Currency:** $STORJ is available on major exchanges like Binance, Coinbase, and Kraken. 2. **Step 2:** The network stores the data securely and makes it available for retrieval.
- **Utility:** 3. **Step 3:** Users earn STORJ tokens based on the amount of data stored and retrieved.
- **Payments:** $STORJ is used to pay for storage and bandwidth on the network.
- **Incentives:** Storage node operators are compensated in $STORJ for providing storage capacity and bandwidth.
- **Governance:** While $STORJ does not currently support governance, it plays a critical role in facilitating transactions and incentivizing network participation.
- **Automation:**
- Smart contracts automate payments to storage node operators and ensure fair compensation.
- Erasure coding and data repair mechanisms automate file redundancy and recovery.
- **API:** Yes. Storj integrates with S3-compatible APIs, making it easy for developers to migrate from traditional cloud providers.
- **User Perspective:**
- **Developers:** Store data securely and cost-effectively on a decentralized network, with S3 compatibility for seamless integration.
- **Storage Node Operators:** Earn $STORJ by contributing unused storage and bandwidth to the network.
## How It Works ## Staking
1. **Data Storage:** - **Staking Requirements:** Minimum of 10,000 STORJ tokens to become a validator.
- Files are encrypted, split into pieces using erasure coding, and distributed across multiple nodes globally. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
2. **Data Retrieval:**
- When a file is requested, the network retrieves and reassembles the pieces, ensuring high availability and durability.
3. **Payment & Incentives:**
- Users pay for storage and bandwidth in $STORJ, which is automatically distributed to storage node operators via smart contracts.
## Staking ## Documentation
- **Staking Requirements:** For detailed documentation, visit [Storj Docs](https://docs.storj.io).
- Storj does not currently require staking for participation. However, storage node operators must meet hardware and bandwidth requirements to join the network.
- **Rewards:**
- **Storage Rewards:** Operators earn $STORJ based on the amount of storage and bandwidth they provide.
- **Data Repair:** Operators are incentivized to maintain data integrity, ensuring long-term network reliability.
## Documentation ## Additional Resources
For detailed documentation, visit [Storj Docs](https://docs.storj.io). - [Official Website](https://storj.io)
- [Community Link](https://community.storj.io)
## Additional Resources - [GitHub Repository](https://github.com/storj)
- [Official Website](https://storj.io)
- [Community Link](https://community.storj.io)
- [GitHub Repository](https://github.com/storj)
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Storj DCS** | Decentralized cloud storage service offering S3 compatibility and enterprise-grade security. |
| **Uplink CLI** | Command-line interface for interacting with the Storj network, enabling file uploads, downloads, and management. |
| **Satellite** | A coordinator that connects users to storage nodes, manages metadata, and ensures data durability. |
## Tokenomics
- **Total Supply:** 425M.
- **Distribution:**
- Tokens are allocated for operational reserves, storage node operator payments, and ecosystem growth.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Storj is designed to be user-friendly, with S3-compatible APIs and tools like the Uplink CLI. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $STORJ is the primary currency for purchasing storage and bandwidth on the Storj network. Users can also pay in fiat currency for added flexibility.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $STORJ is the native token, users can trade it on major exchanges like Binance and Coinbase. Automatic token switching is not natively supported but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Storage node operators can earn passive income by contributing storage and bandwidth to the network. No staking is required, but operators must meet hardware and bandwidth requirements. ROI depends on the amount of storage provided and network demand.
5. **Why does the project exist, why do the people and the planet need it?**
Storj exists to provide a decentralized, secure, and cost-effective alternative to traditional cloud storage. It promotes sustainability by utilizing underutilized resources and reducing reliance on energy-intensive centralized data centers.
6. **Is it geo-aware?**
Yes, Storj offers geo-fencing capabilities through its Storj Select product, ensuring data is stored in compliant data centers within specific regions.
7. **Is it cost-effective?**
Storj is highly cost-effective, offering storage at a fraction of the cost of traditional cloud providers. Its decentralized model leverages underutilized resources, passing savings on to users.

View File

@ -4,86 +4,39 @@ description: Detailed information about Althea
sidebar_position: 5 sidebar_position: 5
--- ---
# Althea Network # Althea
## Overview ## Overview
Althea is a decentralized wireless network that provides affordable internet access by allowing users to share their bandwidth with others. It uses blockchain technology to create a peer-to-peer internet marketplace.
Althea Network is a decentralized infrastructure platform built on the Cosmos SDK, designed to revolutionize the telecom and utilities sectors by enabling decentralized, community-owned networks. By leveraging blockchain technology, Althea empowers individuals and organizations to build, fund, and operate infrastructure such as broadband networks, IoT devices, and more. The platform aims to democratize access to essential infrastructure, making it more affordable, transparent, and accessible for communities worldwide. ## Key Features
- **Currency:** ALTH (Althea Token)
- **Buying Currency:** Available on decentralized exchanges like Uniswap.
- **Utility:**
- Used for network transactions and incentivizing bandwidth sharing.
- Staking rewards for network validators.
- **Automation:**
- Smart contracts automate bandwidth sharing and reward distribution.
- **Utility in the Project:**
- Users can earn ALTH by sharing their internet bandwidth.
- Validators can stake ALTH to secure the network and earn rewards.
- **API:** Yes, Althea provides an API for developers to integrate with their applications.
- **User Perspective:**
- Users can easily set up an Althea node to share bandwidth and earn rewards.
## Key Features ## How It Works
- **Currency:** $ALTHEA (native token). 1. **Step 1:** Users set up an Althea node by installing the Althea software.
- **Buying Currency:** $ALTHEA is available on decentralized exchanges and can be swapped for $USDC on the DePIN DEX integrated into the Althea L1 blockchain. 2. **Step 2:** The node shares unused bandwidth with the network.
- **Utility:** 3. **Step 3:** Users earn ALTH tokens based on the amount of bandwidth shared.
- **Payments:** $ALTHEA is used for microtransactions in machine-to-machine (M2M) payments, enabling automated settlements for services like bandwidth and IoT connectivity.
- **Staking:** Stake $ALTHEA to secure the network, earn rewards, and participate in governance.
- **Governance:** $ALTHEA holders can vote on protocol upgrades and ecosystem decisions, ensuring community-driven development.
- **Automation:**
- Smart contracts automate billing, payments, and resource allocation, ensuring efficiency and transparency.
- Dynamic pricing models allow for flexible and fair pricing based on demand and usage.
- **API:** Yes. Althea integrates with EVM-compatible smart contracts, enabling developers to build decentralized applications (dApps) for infrastructure management.
- **User Perspective:**
- **Developers:** Build decentralized applications for telecom and utilities, leveraging Altheas modular and interoperable blockchain.
- **Providers:** Monetize infrastructure assets like broadband networks and IoT devices by participating in the Althea ecosystem.
## How It Works ## Staking
1. **Resource Tokenization:** - **Staking Requirements:** Minimum of 1,000 ALTH tokens to become a validator.
- Real-world infrastructure assets, such as fiber cables and cell towers, are tokenized and fractionalized, enabling new funding and ownership models. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
2. **Task Allocation:**
- Users and devices interact with the network, and the platform facilitates automated payments and resource allocation through smart contracts.
3. **Execution & Payment:**
- Transactions are settled on the Althea L1 blockchain, with payments in $ALTHEA or stablecoins like $USDC. Validators ensure network security and transaction finality.
## Staking ## Documentation
- **Staking Requirements:** For detailed documentation, visit [Althea Docs](https://docs.althea.net).
- Validators and delegators must stake $ALTHEA to participate in network consensus and governance. The staking amount influences voting power and rewards.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security and participation.
- **Slashing:** Malicious actors risk losing staked $ALTHEA, ensuring network integrity.
## Documentation ## Additional Resources
For technical guides, tokenomics, and API integration: - [Official Website](https://althea.net)
- [Althea Docs](https://docs.althea.net) - [Community Link](https://discord.com/invite/hHx7HxcycF)
- [GitHub Repository](https://github.com/althea-net)
## Additional Resources
- **Official Links:**
- [Website](https://althea.net) | [GitHub](https://github.com/althea-net) | [Twitter](https://twitter.com/AltheaNetwork)
- **Community:**
- [Discord](https://discord.com/invite/hHx7HxcycF)
- **Partnerships:**
- Collaborations with Hawk Networks and other telecom providers enhance the platforms reach and functionality.
## Ecosystem Components
| Product | Functionality |
| - |-|
| **DePIN DEX** | A decentralized exchange for trading tokenized infrastructure assets and services. |
| **Liquid Infrastructure** | A platform for tokenizing and fractionalizing real-world infrastructure assets. |
| **Althea Explorer** | Analytics tool tracking network activity, staking rewards, and resource utilization. |
## Tokenomics
- **Total Supply:** 20.66M (as of 2024).
- **Inflation Rate:** 5% (proposed for staking rewards).
- **Distribution:**
- Staking rewards, network fees, and community incentives drive token distribution.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Althea Network is designed to be user-friendly, with plug-and-play open-source wallets and firmware, making it accessible for both technical and non-technical users.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $ALTHEA and stablecoins like $USDC are used for payments within the Althea ecosystem, enabling seamless transactions for services like bandwidth and IoT connectivity.
3. **Can tokens be automatically switched from other standard tokens (e.g., ETH, BTC)?**
While $ALTHEA is the native token, users can swap it for other tokens like $USDC on the DePIN DEX. Automatic token switching is not natively supported but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn revenue by offering infrastructure services, with rewards distributed based on staking and network participation. Staking $ALTHEA is required for validators, and ROI depends on resource utilization and market demand.
5. **Why does the project exist, why do the people and the planet need it?**
Althea Network exists to democratize infrastructure ownership, reducing costs and increasing accessibility for underserved communities. It promotes sustainability by enabling decentralized, community-driven solutions for telecom and utilities.
6. **Is it geo-aware?**
Altheas decentralized nature allows for global deployment, with localized solutions tailored to specific regions, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
Althea Network is highly cost-effective, offering infrastructure solutions at a fraction of the cost of traditional providers, with dynamic pricing models ensuring competitive rates.

View File

@ -4,87 +4,39 @@ description: Detailed information about Helium
sidebar_position: 1 sidebar_position: 1
--- ---
# Helium Network # Helium
## Overview ## Overview
Helium is a decentralized wireless network that enables low-power IoT devices to communicate globally. It uses a unique proof-of-coverage consensus mechanism to incentivize users to deploy and maintain hotspots.
Helium Network is a decentralized wireless infrastructure project built on blockchain technology, designed to provide a cost-effective, secure, and scalable alternative to traditional wireless networks. By leveraging a global network of hotspots, Helium enables users to deploy and maintain IoT (Internet of Things) devices in a permissionless and decentralized manner. The platform aims to democratize access to wireless connectivity, making it more affordable and accessible for developers, businesses, and individuals. ## Key Features
- **Currency:** HNT (Helium Network Token)
- **Buying Currency:** Available on major exchanges like Binance, Coinbase, and Kraken.
- **Utility:**
- Used for network transactions and incentivizing hotspot deployment.
- Staking rewards for network validators.
- **Automation:**
- Proof-of-coverage algorithm automates network validation.
- **Utility in the Project:**
- Users can earn HNT by deploying and maintaining hotspots.
- Validators can stake HNT to secure the network and earn rewards.
- **API:** Yes, Helium provides an API for developers to integrate with their IoT applications.
- **User Perspective:**
- Users can easily set up a Helium hotspot to earn HNT tokens.
## Key Features ## How It Works
- **Currency:** $HNT (native token). 1. **Step 1:** Users purchase and deploy a Helium hotspot.
- **Buying Currency:** $HNT is available on major exchanges like Binance, Coinbase, and Crypto.com. 2. **Step 2:** The hotspot provides coverage for IoT devices and participates in proof-of-coverage.
- **Utility:** 3. **Step 3:** Users earn HNT tokens based on the coverage provided.
- **Payments:** $HNT is used to pay for data transfers and network usage.
- **Staking:** Stake $HNT to secure the network, earn rewards, and participate in governance.
- **Governance:** $HNT holders can vote on protocol upgrades and ecosystem decisions.
- **Automation:**
- Smart contracts automate data transfer, payments, and reward distribution.
- Dynamic pricing ensures cost efficiency by allowing users to pay for only the data they use.
- **API:** Yes. Helium integrates with IoT devices and applications for seamless connectivity.
- **User Perspective:**
- **Developers:** Deploy IoT devices on a decentralized network, benefiting from lower costs and greater flexibility.
- **Hotspot Operators:** Monetize idle wireless resources by providing coverage and earning $HNT rewards.
## How It Works ## Staking
1. **Resource Aggregation:** - **Staking Requirements:** Minimum of 10,000 HNT tokens to become a validator.
- Hotspot operators register their wireless devices on the Helium Network, which are pooled into a global marketplace. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
2. **Task Allocation:**
- Users submit data transfer requests, and the platform matches them with the most cost-effective and suitable hotspots.
3. **Execution & Payment:**
- Data transfers run on distributed nodes, with results validated via blockchain. Payments in $HNT are automated through smart contracts.
## Staking ## Documentation
- **Staking Requirements:** For detailed documentation, visit [Helium Docs](https://developer.helium.com).
- Hotspot operators must stake $HNT to participate in the network, with the amount influencing their reputation and governance power.
- No minimum stake for users deploying IoT devices.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security.
- **Slashing:** Malicious actors lose staked $HNT, ensuring network integrity.
## Documentation ## Additional Resources
For technical guides, tokenomics, and API integration: - [Official Website](https://www.helium.com)
- [Helium Docs](https://developer.helium.com) - [Community Link](https://discord.com/invite/helium)
- [GitHub Repository](https://github.com/helium)
## Additional Resources
- **Official Links:**
- [Website](https://www.helium.com) | [GitHub](https://github.com/helium) | [Twitter](https://twitter.com/helium)
- **Community:**
- [Discord](https://discord.com/invite/helium)
- **Partnerships:**
- Collaborations with IoT device manufacturers and blockchain projects enhance cross-chain interoperability.
## Ecosystem Components
| Product | Functionality |
| - |-|
| **Helium Console** | User-friendly interface for deploying and managing IoT devices. |
| **Helium Hotspot** | Dashboard for hotspot operators to monitor resource usage and earnings. |
| **Helium Explorer** | Analytics tool tracking network activity, rewards, and resource utilization. |
## Tokenomics
- **Total Supply:** 177.39M
- **Max Supply:** 223M
- **Distribution:**
- 60% allocated as network rewards, 20% to investors, 10% to the team, and 10% to the ecosystem fund.
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Helium Network is designed to be user-friendly, with a straightforward interface (Helium Console) and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $HNT is the primary currency for purchasing data transfers on the Helium Network. Users can also pay with USDC, and credit card payments are now supported for mainstream accessibility.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $HNT is the native token, users can trade it on major exchanges like Binance and Coinbase. However, automatic token switching (e.g., ETH to HNT) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Hotspot operators can earn passive income by providing wireless coverage. Staking $HNT is required to participate as a hotspot operator, and rewards are distributed based on coverage contribution and staking amount. ROI depends on network utilization and market demand.
5. **Why does the project exist, why do the people and the planet need it?**
Helium Network exists to democratize wireless connectivity, reducing costs and increasing accessibility. It promotes sustainability by utilizing underutilized resources, reducing waste, and offering a decentralized alternative to energy-intensive centralized wireless providers.
6. **Is it geo-aware?**
Helium Network does not explicitly mention geo-fencing, but its decentralized nature allows users to deploy resources globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
Helium Network is highly cost-effective, offering data transfers at up to 90% lower costs compared to traditional wireless providers. Dynamic pricing ensures competitive rates.

View File

@ -4,46 +4,34 @@ description: Detailed information about Nodle
sidebar_position: 3 sidebar_position: 3
--- ---
# Nodle Project Overview # Nodle
## Overview ## Overview
Nodle is a decentralized wireless network that connects IoT devices using Bluetooth Low Energy (BLE). It enables devices to communicate and share data securely, while users earn Nodle Cash for participating in the network.
Nodle is a decentralized physical infrastructure (DePIN) network that leverages smartphones as nodes to create a digital trust network for social good. It connects the physical world to Web3 by using smartphones as edge nodes, which read devices and sensors in the physical world using Bluetooth Low Energy (BLE) and connect that information to the blockchain. The network aims to provide secure, low-cost connectivity, and data liquidity to connect billions of IoT devices worldwide.
## Key Features ## Key Features
- **Currency:** $NODL (native token). - **Currency:** NODL (Nodle Cash)
- **Buying Currency:** $NODL is available on major exchanges like Gate.io. - **Buying Currency:** Available on exchanges like Kraken and Gate.io.
- **Utility:** - **Utility:**
- **Payments:** $NODL is used to pay for services on the Nodle Network. - Used for network transactions and incentivizing network participation.
- **Staking:** Staking is not a technical necessity as long as Nodle is operating a parachain on Polkadot. - Staking rewards for network validators.
- **Governance:** $NODL holders can vote on protocol upgrades and ecosystem decisions. - **Automation:**
- **Automation:** - Smart contracts automate network transactions and reward distribution.
- Smart contracts automate resource allocation, payments, and reward distribution. - **Utility in the Project:**
- Dynamic pricing ensures cost efficiency by allowing providers to compete for workloads. - Users can earn NODL by sharing their Bluetooth connectivity.
- **API:** Yes. Nodle has several APIs you can use to connect with the Nodle Network or the services built on it. - Validators can stake NODL to secure the network and earn rewards.
- **API:** Yes, Nodle provides an API for developers to integrate with their IoT applications.
- **User Perspective:** - **User Perspective:**
- **Developers:** Integrate the Nodle SDK into apps to connect to surrounding BLE-enabled smart devices and earn NODL tokens. - Users can easily set up a Nodle node to share Bluetooth connectivity and earn rewards.
- **Providers:** Monetize idle computing resources by renting them out on the Nodle marketplace.
## How It Works ## How It Works
1. **Resource Aggregation:** 1. **Step 1:** Users install the Nodle app on their smartphone.
- Users download the Nodle app and enable Bluetooth and location sharing, turning their smartphones into nodes of the Nodle Network. 2. **Step 2:** The app shares Bluetooth connectivity with nearby IoT devices.
2. **Task Allocation:** 3. **Step 3:** Users earn NODL tokens based on the amount of data shared.
- The Nodle app connects to IoT devices and securely transfers data from Bluetooth to LTE to the company that owns the device.
3. **Execution & Payment:**
- Jobs run on distributed nodes, with results validated via blockchain. Payments in $NODL are automated through smart contracts.
## Staking ## Staking
- **Staking Requirements:** - **Staking Requirements:** Minimum of 10,000 NODL tokens to become a validator.
- Staking is not a technical necessity as long as Nodle is operating a parachain on Polkadot. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security.
- **Slashing:** Malicious actors lose staked $NODL, ensuring network integrity.
## Tokenomics
- **Total Supply:** 7.36B
- **Distribution:**
- 60% allocated as network rewards, 24% to the treasury under control of the Nodle governance council of token holders, and the remaining for other purposes.
## Documentation ## Documentation
For detailed documentation, visit [Nodle Docs](https://docs.nodle.com). For detailed documentation, visit [Nodle Docs](https://docs.nodle.com).
@ -51,28 +39,4 @@ For detailed documentation, visit [Nodle Docs](https://docs.nodle.com).
## Additional Resources ## Additional Resources
- [Official Website](https://www.nodle.com) - [Official Website](https://www.nodle.com)
- [Community Link](https://discord.com/invite/N5nTUt8RWJ) - [Community Link](https://discord.com/invite/N5nTUt8RWJ)
- [GitHub Repository](https://github.com/nodlecode) - [GitHub Repository](https://github.com/nodlecode)
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Nodle is designed to be user-friendly, with a straightforward interface (Nodle App) and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $NODL is the primary currency for purchasing services on the Nodle Network. Users can also pay with USDC, and credit card payments are now supported for mainstream accessibility.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $NODL is the native token, users can trade it on major exchanges like Gate.io. However, automatic token switching (e.g., ETH to NODL) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn passive income by renting out idle computing resources. Staking $NODL is not required to participate as a provider, and rewards are distributed based on resource contribution and availability. ROI depends on resource utilization and market demand.
5. **Why does the project exist, why do the people and the planet need it?**
Nodle exists to create a decentralized network that leverages smartphones to provide IoT connectivity and services, reducing costs and increasing accessibility. It promotes sustainability by utilizing underutilized resources, reducing waste, and offering a decentralized alternative to energy-intensive centralized cloud providers.
6. **Is it geo-aware?**
Nodle does not explicitly mention geo-fencing, but its decentralized nature allows users to deploy resources globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
Nodle is highly cost-effective, offering computing resources at competitive rates. Dynamic pricing ensures competitive rates.

View File

@ -4,39 +4,34 @@ description: Detailed information about Pollum
sidebar_position: 2 sidebar_position: 2
--- ---
Pollum is a Web3 Software Studio and a Blockchain Venture Builder, leading with deep blockchain projects on DAOs, DeFi & NFTs like DEXes, Lending Protocols, Yield Aggregators, Stablecoins, Wallets, Token Marketplaces; and Web2.5 projects like Assets Tokenization, Real Estate, Bond markets tokenization, RPC providers and scalability solutions. # Pollum
## Overview
Pollum is a decentralized wireless network project focused on providing affordable and accessible internet connectivity in underserved regions. It leverages blockchain technology to incentivize users to share their bandwidth and participate in network maintenance.
## Key Features ## Key Features
- **Currency:** $PSYS (native token). - **Currency:** PLM (Pollum Token)
- **Buying Currency:** $PSYS is available on major exchanges like KuCoin. - **Buying Currency:** Available on decentralized exchanges like Uniswap and SushiSwap.
- **Utility:** - **Utility:**
- **Payments:** $PSYS is used to pay for transaction fees and participate in governance. - Used for network transactions and incentivizing bandwidth sharing.
- **Staking:** Stake $PSYS to secure the network, earn rewards, and participate in governance. - Staking rewards for network validators.
- **Governance:** $PSYS holders can vote on protocol upgrades and ecosystem decisions. - **Automation:**
- **Automation:** - Smart contracts automate bandwidth sharing and reward distribution.
- Smart contracts automate resource allocation, payments, and reward distribution. - **Utility in the Project:**
- Dynamic pricing ensures cost efficiency by allowing providers to compete for workloads. - Users can earn PLM tokens by sharing their internet bandwidth.
- **API:** Yes. Pollum integrates with various blockchain ecosystems for seamless deployment of applications. - Validators can stake PLM to secure the network and earn rewards.
- **API:** Yes, Pollum provides an API for developers to integrate with their applications.
- **User Perspective:** - **User Perspective:**
- **Developers:** Deploy applications on a decentralized cloud, benefiting from lower costs and greater flexibility. - Users can easily set up a Pollum node to share bandwidth and earn rewards.
- **Providers:** Monetize idle computing resources by renting them out on the Pollum marketplace.
## How It Works ## How It Works
1. **Resource Aggregation:** 1. **Step 1:** Users set up a Pollum node by installing the Pollum software.
- Providers register their computing resources (e.g., GPUs, CPUs) on the Pollum Network, which are pooled into a global marketplace. 2. **Step 2:** The node shares unused bandwidth with the network.
2. **Task Allocation:** 3. **Step 3:** Users earn PLM tokens based on the amount of bandwidth shared.
- Users submit compute jobs, and the platform matches them with the most cost-effective and suitable resources.
3. **Execution & Payment:**
- Jobs run on distributed nodes, with results validated via blockchain. Payments in $PSYS are automated through smart contracts.
## Staking ## Staking
- **Staking Requirements:** - **Staking Requirements:** Minimum of 1,000 PLM tokens to become a validator.
- Providers must stake $PSYS to participate in the network, with the amount influencing their reputation and governance power. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
- No minimum stake for users deploying applications.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security.
- **Slashing:** Malicious actors lose staked $PSYS, ensuring network integrity.
## Documentation ## Documentation
For detailed documentation, visit [Pollum Docs](https://github.com/Pollum-io/rollux-docs). For detailed documentation, visit [Pollum Docs](https://github.com/Pollum-io/rollux-docs).
@ -44,28 +39,4 @@ For detailed documentation, visit [Pollum Docs](https://github.com/Pollum-io/rol
## Additional Resources ## Additional Resources
- [Official Website](https://pollum.io/) - [Official Website](https://pollum.io/)
- [Community Link](https://x.com/pollum_io) - [Community Link](https://x.com/pollum_io)
- [GitHub Repository](https://github.com/Pollum-io) - [GitHub Repository](https://github.com/Pollum-io)
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, Pollum is designed to be user-friendly, with a straightforward interface and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $PSYS is the primary currency for participating in the Pollum ecosystem. Users can also pay with other accepted tokens through external exchanges.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $PSYS is the native token, users can trade it on major exchanges like KuCoin. However, automatic token switching (e.g., ETH to PSYS) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn passive income by renting out idle computing resources. Staking $PSYS is required to participate as a provider, and rewards are distributed based on resource contribution and staking amount. ROI depends on resource utilization and market demand.
5. **Why does the project exist, why do the people and the planet need it?**
Pollum exists to democratize access to blockchain technology, reducing costs and increasing accessibility. It promotes sustainability by utilizing underutilized resources, reducing waste, and offering a decentralized alternative to energy-intensive centralized solutions.
6. **Is it geo-aware?**
Pollum does not explicitly mention geo-fencing, but its decentralized nature allows users to deploy resources globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
Pollum is highly cost-effective, offering computing resources at competitive rates. Dynamic pricing ensures competitive rates and efficient resource utilization.

View File

@ -7,39 +7,31 @@ sidebar_position: 4
# World Mobile # World Mobile
## Overview ## Overview
World Mobile is a decentralized wireless network project aimed at providing affordable internet access to underserved regions. It leverages blockchain technology to create a shared economy where users can earn tokens by participating in the network.
World Mobile is a pioneering mobile network built on blockchain technology and the sharing economy. It aims to provide universal, affordable, and high-quality connectivity to under-connected communities across the world. By leveraging decentralized wireless infrastructure, renewable energy, and a community-driven approach, World Mobile is disrupting the traditional telecom industry and activating a global sharing economy.
## Key Features ## Key Features
- **Currency:** $WMTX (native token). - **Currency:** WMT (World Mobile Token)
- **Buying Currency:** $WMTX is available on major exchanges like Gate.io. - **Buying Currency:** Available on exchanges like KuCoin and Gate.io.
- **Utility:** - **Utility:**
- **Payments:** $WMTX is used to pay for calls, texts, data, and other network services. - Used for network transactions and incentivizing network participation.
- **Staking:** Stake $WMTX to secure the network, earn rewards, and participate in governance. - Staking rewards for network validators.
- **Governance:** $WMTX holders can vote on protocol upgrades and ecosystem decisions. - **Automation:**
- **Automation:** - Smart contracts automate network transactions and reward distribution.
- Smart contracts automate resource allocation, payments, and reward distribution. - **Utility in the Project:**
- Dynamic pricing ensures cost efficiency by allowing providers to compete for workloads. - Users can earn WMT by sharing their internet bandwidth.
- **API:** Yes. World Mobile integrates with various applications for seamless deployment of services. - Validators can stake WMT to secure the network and earn rewards.
- **API:** Yes, World Mobile provides an API for developers to integrate with their applications.
- **User Perspective:** - **User Perspective:**
- **Users:** Access affordable, reliable internet services through the World Mobile app. - Users can easily set up a World Mobile node to share bandwidth and earn rewards.
- **Providers:** Earn passive income by operating AirNodes and providing mobile connectivity.
## How It Works ## How It Works
1. **Resource Aggregation:** 1. **Step 1:** Users set up a World Mobile node by installing the World Mobile software.
- Providers register their wireless infrastructure (e.g., AirNodes) on the World Mobile network, creating a global pool of connectivity resources. 2. **Step 2:** The node shares unused bandwidth with the network.
2. **Task Allocation:** 3. **Step 3:** Users earn WMT tokens based on the amount of bandwidth shared.
- Users submit requests for mobile services, and the platform matches them with the most cost-effective and suitable resources.
3. **Execution & Payment:**
- Services run on decentralized nodes, with results validated via blockchain. Payments in $WMTX are automated through smart contracts.
## Staking ## Staking
- **Staking Requirements:** - **Staking Requirements:** Minimum of 5,000 WMT tokens to become a validator.
- Providers must stake $WMTX to participate in the network, with the amount influencing their reputation and governance power. - **Rewards:** Validators earn a percentage of transaction fees and block rewards.
- No minimum stake for users deploying applications.
- **Rewards:**
- **Block Rewards:** Distributed to stakers based on their contribution to network security.
- **Slashing:** Malicious actors lose staked $WMTX, ensuring network integrity.
## Documentation ## Documentation
For detailed documentation, visit [World Mobile Docs](https://docs.worldmobile.io). For detailed documentation, visit [World Mobile Docs](https://docs.worldmobile.io).
@ -47,40 +39,4 @@ For detailed documentation, visit [World Mobile Docs](https://docs.worldmobile.i
## Additional Resources ## Additional Resources
- [Official Website](https://worldmobile.io) - [Official Website](https://worldmobile.io)
- [Community Link](https://discord.com/invite/worldmobile) - [Community Link](https://discord.com/invite/worldmobile)
- [GitHub Repository](https://github.com/worldmobilegroup) - [GitHub Repository](https://github.com/worldmobilegroup)
## Tokenomics
- **Total Supply:** 2 billion WMTX.
- **Max Supply:** 2 billion WMTX.
- **Distribution:**
- The tokenomics of WMTX is designed to incentivize good actors, create trust, and build a strong long-term ecosystem. The distribution includes network revenue used to purchase WMTX from open markets, which is then allocated to operators and stakers as rewards.
## Ecosystem Components
| Product | Functionality |
| - |-|
| **AirNode** | Decentralized wireless infrastructure providing mobile connectivity. |
| **EarthNode** | Processes transactions and services for customers, earning WMTX rewards. |
| **World Mobile App** | Manages data bundles, web3 assets, and more, providing a user-friendly interface for network interaction. |
## FAQ
1. **Is it usable by the average DePIN user?**
Yes, World Mobile is designed to be user-friendly, with a straightforward interface (World Mobile App) and comprehensive documentation. It caters to both technical and non-technical users, making it accessible for the average DePIN user.
2. **Can I pay with tokens to use the DePIN product offered by the project?**
Yes, $WMTX is the primary currency for purchasing mobile services on the World Mobile network. Users can also pay with local currency, which is converted to $WMTX within the ecosystem.
3. **Can tokens be automatically switched from other standard tokens (e.g. ETH, BTC)?**
While $WMTX is the native token, users can trade it on major exchanges like Gate.io. However, automatic token switching (e.g., ETH to WMTX) is not natively supported on the platform but can be done through external exchanges.
4. **If I would provide the service, what is my ROI, do we need to stake, etc.?**
Providers can earn passive income by operating AirNodes and staking $WMTX. Staking $WMTX is required to participate as a provider, and rewards are distributed based on resource contribution and staking amount. ROI depends on resource utilization and market demand.
5. **Why does the project exist, why do the people and the planet need it?**
World Mobile exists to democratize mobile connectivity, reducing costs and increasing accessibility. It promotes sustainability by utilizing underutilized resources, reducing waste, and offering a decentralized alternative to energy-intensive centralized mobile providers.
6. **Is it geo-aware?**
World Mobile does not explicitly mention geo-fencing, but its decentralized nature allows users to deploy resources globally, ensuring flexibility and compliance with local regulations.
7. **Is it cost-effective?**
World Mobile is highly cost-effective, offering mobile services at up to 12 times lower costs compared to traditional mobile networks. Dynamic pricing ensures competitive rates.

View File

@ -1,5 +1,5 @@
--- ---
sidebar_position: 6 sidebar_position: 4
description: We're open-source and community-driven, let's talk! description: We're open-source and community-driven, let's talk!
--- ---
@ -7,7 +7,7 @@ description: We're open-source and community-driven, let's talk!
We welcome community engagement and continuous improvement of this resource: We welcome community engagement and continuous improvement of this resource:
- Have you explored any of these DePIN projects? - Have you explored any of these DePIN projects on ThreeFold?
- Are there specific DePIN projects you'd like to see analyzed? - Are there specific DePIN projects you'd like to see analyzed?
- Do you need technical clarification about compatibility? - Do you need technical clarification about compatibility?
- Would you like to contribute deployment guides or experiences? - Would you like to contribute deployment guides or experiences?

View File

@ -1,41 +0,0 @@
---
title: AI & Geo-Fencing
description: Let's explore the term geo-fencing
sidebar_position: 4
---
## Geo-Fencing and Its Application in AI
### What is Geo-Fencing?
Geo-fencing is a location-based technology that creates virtual boundaries around a specific geographic area. It allows systems to trigger actions or enforce rules when a device or compute resource enters or exits the defined area. In the context of AI, geo-fencing ensures that computational resources and data processing remain within a specified region, providing control over where and how AI models operate.
### Why Geo-Fencing Matters for AI
In today's AI landscape, there is often a lack of transparency regarding where AI models are hosted and where data is processed. This uncertainty can lead to concerns about data privacy, compliance with local regulations, and the integrity of AI interactions. Geo-fencing addresses these issues by ensuring that AI compute resources and data remain within a predefined geographic boundary, offering greater control and accountability.
## Why ThreeFold is Unique with Geo-Fencing
ThreeFold stands out in the industry by offering **complete geo-fencing capabilities**, a feature that no other network or compute provider currently delivers. Here's why ThreeFold is unique:
### 1. Full Control Over Geographic Boundaries
- ThreeFold is the only network in the world that provides **full control over the geographic area** where compute resources operate.
- This ensures that compute and data processing **stay within the specified region**, offering unparalleled compliance and security.
### 2. Deterministic Deployments
- With ThreeFold, you always know **exactly where the compute is located**.
- Our deterministic deployment model guarantees that AI models and data remain within the geo-fenced area, eliminating uncertainty.
### 3. Mycelium Technology for Guaranteed Interactions
- ThreeFold's **Mycelium technology** ensures that you are interacting with the intended AI model and not an unknown or unauthorized one.
- This level of control is critical for maintaining trust and integrity in AI systems.
### 4. Geo-Fencing as a Game-Changer for AI
- While geo-fencing is a big deal for AI, **no one else is doing it**.
- ThreeFold's geo-fencing capabilities allow users to know **exactly where their AI compute is coming from**, addressing a major gap in the industry.
## Conclusion
Geo-fencing is a critical technology for ensuring transparency, compliance, and control in AI systems. By defining clear geographic boundaries, it addresses key concerns around data privacy, regulatory compliance, and the integrity of AI interactions.
ThreeFold takes geo-fencing to the next level by offering **complete and deterministic geo-fencing capabilities**, a feature unmatched by any other network. With full control over compute locations, deterministic deployments, and Mycelium technology, ThreeFold ensures that AI systems operate with transparency, trust, and accountability.

View File

@ -5,9 +5,9 @@ description: ThreeFold presents the DePIN Board
# Introduction # Introduction
Welcome to the DePIN Project website, designed to help you navigate the rapidly evolving landscape of Decentralized Physical Infrastructure Networks (DePIN). ThreeFold presents the DePIN Board, designed to help you navigate the rapidly evolving landscape of Decentralized Physical Infrastructure Networks (DePIN).
This resource is intended to serve as an educational tool, providing insights into the infrastructure ownership, hardware requirements, software stacks, and compatibility with the ThreeFold Grid. While this material is not exhaustive, it aims to cover a broad spectrum of popular and emerging DePIN projects to help you get started. This project is made on a best effort basis. This resource is intended to serve as an educational tool, providing insights into the infrastructure ownership, hardware requirements, software stacks, and compatibility with the ThreeFold Grid. While these matrices are not exhaustive, they aim to cover a broad spectrum of popular and emerging DePIN projects to help you get started.
Please note that this document is not an absolute truth but rather a starting point for further exploration. We encourage you to conduct your own research and due diligence before making any decisions. We welcome your feedback to improve its accuracy and usefulness. Please note that this document is not an absolute truth but rather a starting point for further exploration. We encourage you to conduct your own research and due diligence before making any decisions. We welcome your feedback to improve its accuracy and usefulness.

View File

@ -1,14 +1,14 @@
--- ---
title: Privacy Policy title: Privacy Policy
description: Privacy Policy concerning OurWorld description: Privacy Policy concerning ThreeFold
sidebar_position: 2 sidebar_position: 2
--- ---
*This privacy policy will explain how OurWorld ("companies", "we", or "us") uses the personal data we collect from you when you use our websites, including the OurWorld website.* *This privacy policy will explain how ThreeFold Movement ("companies", "we", or "us") uses the personal data we collect from you when you use our websites, including the ThreeFold website.*
### What data do we collect? ### What data do we collect?
All websites using the OurWorld Privacy Policy do not collect any data on a personal level by default. All data being processed is anonymized. When signing up for our newsletter we collect your: *email address*. All websites using the ThreeFold Movement Privacy Policy do not collect any data on a personal level by default. All data being processed is anonymized. When signing up for our newsletter we collect your: *email address*.
**How do we collect your data?** **How do we collect your data?**

View File

@ -1,12 +1,12 @@
--- ---
title: Terms and Conditions title: Terms and Conditions
description: Terms and Conditions for OurWorld description: Terms and Conditions for ThreeFold
sidebar_position: 1 sidebar_position: 1
--- ---
These Terms of Use constitute a legally binding agreement made between you, whether personally or on behalf of an entity (“you”) and OurWorld and its partners, ThreeFold, doing business as ThreeFold (“ThreeFold“, “we”, “us”, or “our”), concerning your access to and use of the OurWorld related websites: These Terms of Use constitute a legally binding agreement made between you, whether personally or on behalf of an entity (“you”) and ThreeFold, doing business as ThreeFold (“ThreeFold“, “we”, “us”, or “our”), concerning your access to and use of the ThreeFold related websites:
The ThreeFold website, websites/wikis/forums ending with threefold.io, threefold.me, threefold.info, grid.tf, threefold.tech, TFT.com, freeflownation.org, 3bot.org, incubaid.com or consciousinternet.org or any other website as used/promoted by the ThreeFold Foundation or any other site as originating from our open-source git repository on https://github.com/threefoldfoundation and https://git.ourworld.tf, as well as any other media form, media channel, forum, mobile website or mobile application related, linked, or otherwise connected thereto (collectively, the “Site”). The ThreeFold website, websites/wikis/forums ending with threefold.io, threefold.me, threefold.info, grid.tf, threefold.tech, TFT.com, freeflownation.org, 3bot.org, incubaid.com or consciousinternet.org or any other website as used/promoted by the ThreeFold Foundation or any other site as originating from our open-source git repository on https://github.com/threefoldfoundation, as well as any other media form, media channel, forum, mobile website or mobile application related, linked, or otherwise connected thereto (collectively, the “Site”).
You agree that by accessing the Site, you have read, understood, and agreed to be bound by all of these Terms of Use. You agree that by accessing the Site, you have read, understood, and agreed to be bound by all of these Terms of Use.

View File

@ -0,0 +1,14 @@
---
sidebar_position: 3
description: Discover why ThreeFold and DePIN are a perfect match!
---
# TFGrid Features and Benefits
The ThreeFold Grid offers several advantages for DePIN deployments:
- **Flexible Infrastructure:** Supports various blockchain nodes.
- **Containerization Support:** Easy deployment with Docker.
- **Global Distribution:** Decentralized hosting options worldwide.
- **Customizable Hardware:** Select hardware tailored to your needs.
- **Decentralized Hosting:** Enhanced security and resilience.

View File

@ -1,28 +0,0 @@
---
title: TFGrid Proof-of-Concept
sidebar_position: 5
description: The TFGrid V3 is our proof-of-concept
---
# ThreeFold Grid Proof-of-Concept
## Explore the Dashboard
The ThreeFold Dashboard is the version 3 of ThreeFold Grid. With the ThreeFold Grid, we prove to the world that it is possible to create a decentralized cloud for anyone, anywhere.
Indeeed, with thousands of nodes in more than 50 countries, the grid has been running for years now in production mode on mainnet. Anyone, anywhere can deploy Web2 and Web3 workloads in a decentralized and sovereign manner.
You can explore the ThreeFold Dashboard now.
> [Explore the Dashboard](https://dashboard.grid.tf)
## TFGrid Features and Benefits
The ThreeFold Grid offers several advantages for DePIN deployments:
- **Flexible Infrastructure:** Supports various blockchain nodes.
- **Containerization Support:** Easy deployment with Docker.
- **Global Distribution:** Decentralized hosting options worldwide.
- **Customizable Hardware:** Select hardware tailored to your needs.
- **Decentralized Hosting:** Enhanced security and resilience.
- **Geo-Fencing:** Full control over geographic boundaries for compliance and data sovereignty.

169
docusaurus.config.ts Normal file
View File

@ -0,0 +1,169 @@
import {themes as prismThemes} from 'prism-react-renderer';
import type {Config} from '@docusaurus/types';
import type * as Preset from '@docusaurus/preset-classic';
const config: Config = {
title: 'DePIN Board',
tagline: 'Navigate the rapidly evolving landscape of Decentralized Physical Infrastructure Networks (DePIN)',
favicon: 'img/favicon.png',
url: 'https://threefold.info',
baseUrl: '/depin/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
i18n: {
defaultLocale: 'en',
locales: ['en'],
},
presets: [
[
'classic',
{
docs: {
sidebarPath: './sidebars.ts',
},
blog: {
showReadingTime: true,
feedOptions: {
type: ['rss', 'atom'],
xslt: true,
},
onInlineTags: 'warn',
onInlineAuthors: 'warn',
onUntruncatedBlogPosts: 'warn',
},
theme: {
customCss: './src/css/custom.css',
},
} satisfies Preset.Options,
],
],
markdown: {
mermaid: true,
},
themes: ['@docusaurus/theme-mermaid'],
scripts: [
{
src:
'/js/crisp.js',
async: false,
},
],
themeConfig: {
colorMode: {
defaultMode: 'dark',
disableSwitch: true,
respectPrefersColorScheme: false,
},
image: 'img/tf_graph.png',
navbar: {
title: '',
logo: {
alt: 'ThreeFold Logo',
src: 'img/logo.svg',
srcDark: 'img/new_logo_tft.png',
},
items: [
{
type: 'docSidebar',
sidebarId: 'tutorialSidebar',
position: 'left',
label: 'DePIN',
},
{
to: '/support',
label: 'Support',
position: 'left',
},
{
href: 'https://threefold.io',
label: 'ThreeFold.io',
position: 'right',
},
],
},
footer: {
style: 'dark',
links: [
{
title: 'DePIN',
items: [
{
label: 'Introduction',
href: '/docs/introduction',
},
{
label: 'DePIN Board',
href: '/docs/depin_board',
},
{
label: 'TFGrid Features',
href: '/docs/threefold_features',
},
{
label: 'Feedback',
to: '/docs/feedback',
},
],
},
{
title: 'Community',
items: [
{
label: 'Telegram',
href: 'https://t.me/threefold',
},
{
label: 'X',
href: 'https://x.com/threefold_io',
},
{
label: 'Forum',
href: 'https://forum.threefold.io',
},
{
label: 'Support',
to: '/support',
},
],
},
{
title: 'Links',
items: [
{
label: 'ThreeFold.io',
href: 'https://threefold.io',
},
{
label: 'Dashboard',
href: 'https://dashboard.grid.tf',
},
{
label: 'GitHub',
href: 'https://github.com/threefoldtech/home',
},
{
label: 'Gitea',
href: 'https://git.ourworld.tf/tfgrid/info_docs_depin',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} ThreeFold`,
},
prism: {
theme: prismThemes.github,
darkTheme: prismThemes.dracula,
},
} satisfies Preset.ThemeConfig,
};
export default config;

24
install.sh Executable file
View File

@ -0,0 +1,24 @@
#!/bin/bash
set -ex
script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "${script_dir}"
echo "Docs directory: $script_dir"
# Check if bun is installed
# if ! command -v bun &> /dev/null; then
# echo "Bun is not installed. Installing..."
# curl -fsSL https://bun.sh/install | bash
# else
# echo "Bun is already installed."
# fi
#bun install
export PATH=${BASE}/node_modules/.bin:$PATH
npm install @docusaurus/core@3.6.3 @docusaurus/preset-classic@3.6.3 @docusaurus/theme-mermaid@3.6.3
pnpm install

18210
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

49
package.json Normal file
View File

@ -0,0 +1,49 @@
{
"name": "docs-website",
"version": "0.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"typecheck": "tsc"
},
"dependencies": {
"@docusaurus/core": "^3.6.3",
"@docusaurus/preset-classic": "^3.6.3",
"@docusaurus/theme-mermaid": "^3.6.3",
"@mdx-js/react": "^3.0.0",
"clsx": "^2.0.0",
"prism-react-renderer": "^2.3.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.6.3",
"@docusaurus/tsconfig": "3.5.2",
"@docusaurus/types": "3.5.2",
"typescript": "~5.5.2"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 3 chrome version",
"last 3 firefox version",
"last 5 safari version"
]
},
"engines": {
"node": ">=18.0"
},
"packageManager": "pnpm@9.3.0+sha512.ee7b93e0c2bd11409c6424f92b866f31d3ea1bef5fbe47d3c7500cdc3c9668833d2e55681ad66df5b640c61fa9dc25d546efa54d76d7f8bf54b13614ac293631"
}

12221
pnpm-lock.yaml Normal file

File diff suppressed because it is too large Load Diff

31
sidebars.ts Normal file
View File

@ -0,0 +1,31 @@
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
const sidebars: SidebarsConfig = {
// By default, Docusaurus generates a sidebar from the docs folder structure
tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
// But you can create a sidebar manually
/*
tutorialSidebar: [
'intro',
'hello',
{
type: 'category',
label: 'Tutorial',
items: ['tutorial-basics/create-a-document'],
},
],
*/
};
export default sidebars;

View File

@ -0,0 +1,71 @@
import clsx from 'clsx';
import Heading from '@theme/Heading';
import styles from './styles.module.css';
import { useColorMode } from '@docusaurus/theme-common'
type FeatureItem = {
title: string;
Svg: React.ComponentType<React.ComponentProps<'svg'>>;
description: JSX.Element;
};
const FeatureList: FeatureItem[] = [
{ scale: 1.0,
fill:"currentColor",
title: 'Building Web4',
Svg: require('@site/static/img/clouds.svg').default,
description: (
<>
Laying the groundwork for Web4, the next generation of the Internet.
</>
),
},
{ scale: 1.0,
fill:"currentColor",
title: 'ThreeFold Grid',
Svg: require('@site/static/img/nodes.svg').default,
description: (
<>
ThreeFold nodes, routers and phones create an end&#8209;to&#8209;end encrypted network.
</>
),
},
{ scale: 1.0,
fill:"currentColor",
title: 'Community Rewards',
Svg: require('@site/static/img/rewards.svg').default,
description: (
<>
The ecosystem rewards the community to foster growth and expansion.
</>
),
},
];
function Feature({scale, fill, id, title, Svg, description}: FeatureItem) {
return (
<div className={clsx('col col--4')}>
<div className="text--center">
<Svg transform={"scale(" + scale + ")"} fill={fill} id={id} className={styles.featureSvg} role="img" />
</div>
<div className="text--center padding-horiz--md">
<Heading as="h3">{title}</Heading>
<p>{description}</p>
</div>
</div>
);
}
export default function HomepageFeatures(): JSX.Element {
return (
<section className={styles.features}>
<div className="container">
<div className="row">
{FeatureList.map((props, idx) => (
<Feature key={idx} {...props} />
))}
</div>
</div>
</section>
);
}

View File

@ -0,0 +1,11 @@
.features {
display: flex;
align-items: center;
padding: 2rem 0;
width: 100%;
}
.featureSvg {
height: 200px;
width: 200px;
}

131
src/css/custom.css Normal file
View File

@ -0,0 +1,131 @@
/**
* Any CSS included here will be global. The classic template
* bundles Infima by default. Infima is a CSS framework designed to
* work well for content-centric websites.
*/
/* Ensure navbar items and logo are vertically aligned */
.navbar__logo {
display: flex;
align-items: center; /* Center aligns the items vertically */
height: 100%; /* Ensures full height for alignment */
}
.navbar__logo img {
max-width: 150px; /* Set maximum width of the logo */
height: auto; /* Maintain aspect ratio */
}
/* Align navbar items, such as Docs and Support */
.navbar__item {
display: flex;
align-items: center; /* Vertically align the items */
}
/* Optional: Adjust padding for navbar items */
.navbar__link {
padding: 8px 12px; /* Modify values as necessary for better spacing */
}
/* Add @font-face declarations for the Inter font */
@font-face {
font-family: 'Inter';
font-weight: 400; /* Light */
font-style: normal;
src: url('/fonts/Inter_28pt-Light.ttf') format('truetype'); /* Corrected path */
}
@font-face {
font-family: 'Inter';
font-weight: 500; /* Regular */
font-style: normal;
src: url('/fonts/Inter_28pt-Regular.ttf') format('truetype'); /* Corrected path */
}
@font-face {
font-family: 'Inter';
font-weight: 600; /* Medium */
font-style: normal;
src: url('/fonts/Inter_28pt-Medium.ttf') format('truetype'); /* Corrected path */
}
/* Apply the Inter font globally */
body {
font-family: 'Inter', sans-serif; /* Set the global font */
font-size: 18px;
}
/* Header styles - Medium weight for headers */
h1, h2, h3, h4, h5, h6 {
font-weight: 600; /* Medium weight for headers */
font-family: 'Inter', sans-serif; /* Set the global font */
}
/* Paragraph styles - Light weight for paragraphs */
p {
font-weight: 400; /* Light weight for paragraphs */
font-family: 'Inter', sans-serif; /* Set the global font */
}
/* You can override the default Infima variables here. */
:root {
--ifm-color-primary: #2e83ff;
--ifm-color-primary-dark: #29784c;
--ifm-color-primary-darker: #277148;
--ifm-color-primary-darkest: #205d3b;
--ifm-color-primary-light: #33925d;
--ifm-color-primary-lighter: #359962;
--ifm-color-primary-lightest: #3cad6e;
--ifm-code-font-size: 95%;
--svg-fill-color: #2a2021; /* Black fill for light mode */
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
}
/* Dark mode styles */
html[data-theme="dark"] {
--svg-fill-color: #fff; /* White fill for dark mode */
}
/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme='dark'] {
--ifm-color-primary: #8d8d8d;
--ifm-color-primary-dark: #21af90;
--ifm-color-primary-darker: #1fa588;
--ifm-color-primary-darkest: #1a8870;
--ifm-color-primary-light: #29d5b0;
--ifm-color-primary-lighter: #32d8b4;
--ifm-color-primary-lightest: #4fddbf;
--svg-fill-color: #fff; /* White fill for dark mode */
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}
.footer {
background-color: #131213;
}
.footer a,
.footer p,
.footer span,
.footer div {
color: #ffffff; /* Example: Light gray text for dark mode */
}
.navbar { /* or .navbar--fixedTop if it has that class */
background-color: #131213;
}
/* Apply scroll margin to footnote targets */
[data-footnote-ref="true"] {
scroll-margin-top: 80px; /* Adjust this value to match your navbar height */
}
/* Ensure navbar items and logo are vertically aligned */
.navbar__logo {
display: flex;
align-items: center; /* Center aligns the items vertically */
height: 100%; /* Ensures full height for alignment */
}
.navbar__link { /* Example: for navbar links */
color: #ffffff;
}
img.svg-icon {
fill: var(--svg-fill-color); /* Apply the color variable */
}

View File

@ -0,0 +1,23 @@
/**
* CSS files with the .module.css suffix will be treated as CSS modules
* and scoped locally.
*/
.heroBanner {
padding: 4rem 0;
text-align: center;
position: relative;
overflow: hidden;
}
@media screen and (max-width: 996px) {
.heroBanner {
padding: 2rem;
}
}
.buttons {
display: flex;
align-items: center;
justify-content: center;
}

6
src/pages/index.tsx Normal file
View File

@ -0,0 +1,6 @@
import React from 'react';
import { Redirect } from '@docusaurus/router';
export default function Home() {
return <Redirect to="/depin/docs/introduction" />;
}

View File

@ -0,0 +1,7 @@
---
title: Markdown page example
---
# Markdown page example
You don't need React to write simple standalone pages.

38
src/pages/support.md Normal file
View File

@ -0,0 +1,38 @@
# Support
Our dedicated team is here to help you every step of the way. We're passionate about ensuring that you receive the best possible experience exploring the ThreeFold ecosystem.
If you can't find the answer to your question, our dedicated ThreeFold support team is here to help.
## Reach Support
***To contact the ThreeFold support team, simply click on the chat button at the bottom right of the screen.***
You can also visit the [ThreeFold Support Crisp website](https://threefoldfaq.crisp.help/en/).
## Live Chat Availability
Our support team is available from Monday to Friday, Central European Summer Time (CEST), between 8:00 AM and 12:00 AM (16 hours per day). During these hours, you can interact with us in real-time via live chat on the ThreeFold website.
* **Monday to Friday**: Available from 8:00 AM to 12:00 AM CEST
> Outside of these hours, you can still write to the support team and they will get back to you during working hours.
## How We Can Help
Our support team is here to assist you with any questions or concerns you may have about ThreeFold. Whether it's troubleshooting an issue, setting up a new feature, or simply answering a question, we're here to help.
### Support Services
* **Technical Support**: Assistance with technical issues related to ThreeFold.
* **Feature Setup**: Guidance on how to set up and use various ThreeFold features, services and products.
* **General Questions**: Answers to any questions you may have about ThreeFold.
## Get In Touch
Ready to reach out? Simply click on the chat button at the bottom right of the screen and initiate a chat with us during business hours.
*We're here to listen, assist, and provide support!*
---

0
static/.nojekyll Normal file
View File

1
static/CNAME Normal file
View File

@ -0,0 +1 @@
threefold.info/depin

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
static/img/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 327 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 602 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.9 KiB

BIN
static/img/tf_graph.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

1
static/js/crisp.js Normal file
View File

@ -0,0 +1 @@
window.$crisp=[];window.CRISP_WEBSITE_ID="1a5a5241-91cb-4a41-8323-5ba5ec574da0";(function(){d=document;s=d.createElement("script");s.src="https://client.crisp.chat/l.js";s.async=1;d.getElementsByTagName("head")[0].appendChild(s);})();

7
tsconfig.json Normal file
View File

@ -0,0 +1,7 @@
{
// This file is not used in compilation. It is here just for a nice editor experience.
"extends": "@docusaurus/tsconfig",
"compilerOptions": {
"baseUrl": "docs"
}
}

9871
yarn.lock Normal file

File diff suppressed because it is too large Load Diff