Skip to content

Commit 87fcbbc

Browse files
committed
init
0 parents  commit 87fcbbc

File tree

303 files changed

+34033
-0
lines changed

Some content is hidden

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

303 files changed

+34033
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Deploy Docusaurus site to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- master # Change this if your branch is not main
7+
8+
jobs:
9+
build-and-deploy:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v2
14+
15+
- name: Set up Node.js
16+
uses: actions/setup-node@v2
17+
with:
18+
node-version: "20"
19+
20+
- name: Install dependencies
21+
run: npm install
22+
23+
- name: Build Docusaurus site
24+
run: npm run build
25+
26+
- name: Deploy to GitHub Pages
27+
uses: peaceiris/actions-gh-pages@v3
28+
with:
29+
github_token: ${{ secrets.GITHUB_TOKEN }}
30+
publish_dir: ./build

.gitignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Dependencies
2+
/node_modules
3+
4+
# Production
5+
/build
6+
7+
# Generated files
8+
.docusaurus
9+
.cache-loader
10+
11+
# Misc
12+
/archive
13+
.DS_Store
14+
.env.local
15+
.env.development.local
16+
.env.test.local
17+
.env.production.local
18+
19+
npm-debug.log*
20+
yarn-debug.log*
21+
yarn-error.log*

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[cary0x.github.io](https://cary0x.github.io)
2+
3+
I am going to smash my commits to this repo to prevent and wipe the history from time to time.

docs/_category_.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"label": "Docs",
3+
"position": 1,
4+
"link": {
5+
"description": "abc."
6+
}
7+
}

docs/address_poison.png

179 KB
Loading

docs/flywheel.md

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
---
2+
title: Flywheel
3+
sidebar_position: 2
4+
---
5+
6+
# Pond0x Flywheel and Ecosystem
7+
8+
Note that this page is heavily speculative. DYOR and send me corrections as new information comes out.
9+
10+
Also note that I purposely left out Mining and the Magma Engine. Very little is known about what the Proof of Work mining is accomplishing, what the Magma Engine is doing, and why creating/validating hashes on our computers is rewarded so heavily.
11+
12+
## Introduction: The Flywheel Concept
13+
14+
The **flywheel** is a metaphor for the Pond0x ecosystem. In mechanics, a flywheel stores rotational energy, spinning faster and faster as more energy is added. Similarly, the Pond0x flywheel accelerates as more participants invest, generating increasingly significant rewards for the entire ecosystem.
15+
16+
The idea is simple:
17+
1. Users contribute mining power, wPond, and other assets to the ecosystem.
18+
2. These contributions generate returns and rewards.
19+
3. Participants reinvest their rewards, further fueling the system.
20+
21+
This compounding effect encourages continuous growth, creating a sustainable loop of **increased investment** and **amplified rewards**. The more participants engage and reinvest, the faster the flywheel spins, benefiting everyone.
22+
23+
---
24+
25+
## Key Components of the Flywheel
26+
27+
### 1. Swap Rewards
28+
- Users can swap tokens directly within the Pond0x ecosystem.
29+
- **Incentives**: Swapping within the ecosystem generates rewards, eliminating the need for users to seek external alternatives.
30+
- This keeps liquidity circulating within Pond0x, strengthening the flywheel.
31+
32+
---
33+
34+
### 2. Burning
35+
- "Burning" in Pond0x means **locking tokens into the ecosystem**, symbolizing a permanent commitment.
36+
- **Purpose**:
37+
- Increases a user's **luck** for rewards.
38+
- Elevates the status of a token to **leader status**, becoming the reward for mining and spawning.
39+
- **Impact**: Encourages users to "burn" their preferred tokens to boost its influence and incentivize others to follow.
40+
41+
---
42+
43+
### 3. Spawning
44+
- **Mechanism**: Spawning trades wPond for the **leader token** selected from burning.
45+
- **Value Proposition**: Users receive a greater expected value from the leader token compared to the wPond they submit.
46+
- **Impact on the Flywheel**:
47+
- Promotes reinvestment into the ecosystem.
48+
- Increases demand for both wPond and leader tokens.
49+
50+
---
51+
52+
### 4. Pondwater Locking
53+
- Users can lock **wPond (Pondwater)** for up to **49 weeks**, generating a **stream of SOL rewards**.
54+
- Locked wPond is pooled into yield-generating strategies, including:
55+
- **Liquidity Pool Feeds**: Earn swap fees.
56+
- **External Yield Sources**: Participate in lending protocols and vault strategies.
57+
- **External Vaults**: Access sophisticated investment tools for auto-compounded returns.
58+
- **Advantages of Collective Locking**:
59+
- Aggregated funds negotiate better returns than individual locks.
60+
- Reduced fees through economies of scale.
61+
- Users receive **100% of the additional yield**, minus ecosystem costs.
62+
63+
---
64+
65+
## Summary
66+
The Pond0x ecosystem operates as a **self-reinforcing flywheel**:
67+
1. **Swap rewards** keep liquidity within the system.
68+
2. **Burning** locks tokens and elevates leader tokens, encouraging greater participation.
69+
3. **Spawning** trades wPond for leader tokens, offering greater value and sustaining demand.
70+
4. **Pondwater locking** pools funds to generate significant SOL rewards, incentivizing long-term commitments.
71+
72+
Each component works together, ensuring that as more users invest, rewards increase, further motivating reinvestment. This virtuous cycle grows the ecosystem, delivering greater benefits to all participants.
73+
74+
By focusing on **continuous reinvestment and collective rewards**, Pond0x transforms user engagement into a powerful mechanism for sustainable growth.

docs/guides/_category_.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"label": "Guides",
3+
"position": 2,
4+
"link": {
5+
"description": "5 minutes to learn the most important Docusaurus concepts."
6+
}
7+
}

docs/guides/allicons.png

540 KB
Loading

docs/guides/checkin/_category_.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"label": "Check In",
3+
"link": {
4+
"description": ""
5+
}
6+
}
56.9 KB
Loading

0 commit comments

Comments
 (0)