Skip to content

Commit be8950b

Browse files
Sipherrad2520
andauthored
Dev (#24)
* Update links and content structure for goal leaders in documentation; add new sections for emission proposals and root agents * Add links to emission proposals in start-here documents, enhancing guidance for governance and network economics adjustments * Update emission-proposals.mdx * Update create-emission-proposal.mdx --------- Co-authored-by: rad2520 <84401808+rad2520@users.noreply.github.com>
2 parents 8e9c748 + 0324b3b commit be8950b

17 files changed

Lines changed: 191 additions & 23 deletions

File tree

astro.config.mjs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ export default defineConfig({
6363
label: "Goal Leaders",
6464
collapsed: false,
6565
items: [
66-
{ label: "Root Agents", slug: "explanations/root-agents/root-agents" },
66+
{ label: "Root Agents", slug: "explanations/goal-leaders/root-agents" },
67+
{ label: "Emission Proposals", slug: "explanations/goal-leaders/emission-proposals" },
6768
],
6869
},
6970
],
@@ -99,7 +100,8 @@ export default defineConfig({
99100
label: "Goal Leaders",
100101
collapsed: false,
101102
items: [
102-
{ label: "Become a Root Agent", slug: "how-to-guides/root-agents/become-a-root-agent" },
103+
{ label: "Become a Root Agent", slug: "how-to-guides/goal-leaders/become-a-root-agent" },
104+
{ label: "Create Emission Proposal", slug: "how-to-guides/goal-leaders/create-emission-proposal" },
103105
],
104106
},
105107
],

src/content/docs/explanations/builders/agent-editing.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ This balances blockchain immutability with the flexibility needed for comprehens
3535

3636
- **[Agent Registration](https://docs.torus.network/explanations/builders/agent-registration/)** - Initial agent creation and ownership establishment
3737
- **[Demand Signaling](https://docs.torus.network/explanations/builders/demand-signaling/)** - How agents coordinate through signals
38-
- **[Root Agents](https://docs.torus.network/explanations/root-agents/root-agents/)** - Special considerations for DAO-approved agents
38+
- **[Root Agents](https://docs.torus.network/explanations/goal-leaders/goal-leaders/)** - Special considerations for DAO-approved agents
3939

4040
<Aside type="tip" title="Ready to Update Your Agent?">
4141
Follow our [step-by-step guide to edit your agent](https://docs.torus.network/how-to-guides/builders/edit-your-agent/) for practical instructions.

src/content/docs/explanations/builders/agent-registration.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Agent metadata is stored off-chain via IPFS but referenced on-chain through cont
4444

4545
### Related Concepts
4646

47-
- **[Root Agents](https://docs.torus.network/explanations/root-agents/root-agents/)** - Agents that receive emissions directly
47+
- **[Root Agents](https://docs.torus.network/explanations/goal-leaders/root-agents/)** - Agents that receive emissions directly
4848
- **[Permission System](https://docs.torus.network/explanations/v05/permissions/)** - How agents interact and delegate authority
4949
- **[Governance & DAO](https://docs.torus.network/explanations/v05/governance-dao/)** - Understanding DAO decision-making processes
5050

src/content/docs/explanations/builders/demand-signaling.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ If you are using a different schema, fully specify it.
3333
### Related Concepts
3434

3535
- **[Agent Registration](https://docs.torus.network/explanations/builders/agent-registration/)** - How agents become discoverable
36-
- **[Root Agents](https://docs.torus.network/explanations/root-agents/root-agents/)** - Agents with direct emission access
36+
- **[Root Agents](https://docs.torus.network/explanations/goal-leaders/goal-leaders/)** - Agents with direct emission access
3737
- **[Agent Server Setup](https://docs.torus.network/explanations/builders/agent-server/)** - Recommended endpoint interface examples
3838
- **[Tokenomics](https://docs.torus.network/getting-started/tokenomics/)** - Understanding emission mechanisms
3939

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
---
2+
title: Emission Proposals
3+
description: Understanding emission proposals, how they work, and their role in managing Torus network incentives and economics.
4+
---
5+
6+
import {
7+
Aside,
8+
Card,
9+
CardGrid,
10+
Code,
11+
Steps,
12+
Tabs,
13+
TabItem,
14+
} from "@astrojs/starlight/components";
15+
16+
Emission proposals can adapt the token emission rate and distribution across different coponents of the protocol.
17+
18+
These proposals allow the community to adapt the macro-economics of the network based on the network's context and external conditions. They can shift both the rate of emissions, and how those emissions are distributed between agents, allocator dividends and the protocol treasury.
19+
20+
<Aside type="tip">
21+
**Emission proposals require community consensus** through the governance voting process, ensuring that changes to network economics reflect the collective will of TORUS stakeholders.
22+
</Aside>
23+
24+
## How Emission Proposals Work
25+
26+
Emission proposals allow TORUS stakeholders to configure 3 key percentage parameters:
27+
28+
### Core Parameters
29+
30+
The three parameters control two separate distribution pools:
31+
32+
**Burn Distribution (up to 100% total):**
33+
- **Recycling Percentage**: Portion of emissions that is recycled
34+
- **Treasury Percentage**: Portion allocated to the protocol treasury
35+
36+
The remaining % of emissions is distributed to the network.
37+
38+
*Note: Recycling Percentage + Treasury Percentage can be up to 100% total (e.g., 60% combined is valid)*
39+
40+
**Incentive Distribution (up to 100% total):**
41+
- **Incentives Ratio**: The incentive distribution ratio between agents and stake allocator dividends
42+
43+
### Proposal conditions
44+
45+
For a proposal to pass, it must meet two requirements:
46+
- **Majority Support**: More than 50% of votes must be positive
47+
- **Participation Threshold**: Total votes must exceed 10% of all TORUS staked in the network + it must be at least 2 days old
48+
49+
50+
## Related Concepts
51+
52+
- **[Governance & DAO](https://docs.torus.network/explanations/v05/governance-dao/)** - Understanding the broader DAO framework
53+
- **[Tokenomics](https://docs.torus.network/getting-started/tokenomics/)** - How TORUS token economics work
54+
- **[Permission System](https://docs.torus.network/explanations/v05/permissions/)** - How governance permissions enable proposal creation
55+
56+
<Aside type="tip" title="Ready to Create a Proposal?">
57+
Follow our [emission proposal guide](https://docs.torus.network/how-to-guides/goal-leaders/create-emission-proposal/) to learn the step-by-step process.
58+
</Aside>

src/content/docs/explanations/root-agents/root-agents.mdx renamed to src/content/docs/explanations/goal-leaders/root-agents.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ Successful applicants demonstrate credible execution, active community participa
3535
- **[Tokenomics](https://docs.torus.network/getting-started/tokenomics/)** - How Root Agents access and use network emissions
3636

3737
<Aside type="tip" title="Ready to Apply?">
38-
Follow our [step-by-step application guide](https://docs.torus.network/how-to-guides/root-agents/become-a-root-agent/) to submit your Root Agent application.
38+
Follow our [step-by-step application guide](https://docs.torus.network/how-to-guides/goal-leaders/become-a-root-agent/) to submit your Root Agent application.
3939
</Aside>

src/content/docs/explanations/start-here.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ Understanding how agent systems work within Torus:
4545

4646
Understanding governance and leadership systems:
4747

48-
- [Root Agents](https://docs.torus.network/explanations/root-agents/root-agents/) — DAO approval process and direct emission access
48+
- [Root Agents](https://docs.torus.network/explanations/goal-leaders/root-agents/) — DAO approval process and direct emission access
49+
- [Emission Proposals](https://docs.torus.network/explanations/goal-leaders/emission-proposals/) — How to adjust network economics through governance
4950

5051
---
5152

src/content/docs/getting-started/concepts.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ The system operates as one fractal super-swarm, which is composed of one emergen
1212
Swarms are subgraphs, and can form at any position in the hypergraph.
1313

1414
The Torus hypergraph emerges from and aligns back to the stake root, tethering the system to the interests of stake.
15-
Torus aligns towards the central point of stake, while stake is decentralized representing the system as a whole, effectively aligning it to itself.
15+
Torus aligns towards the central point of stake, while stake is decentralized, representing the system as a whole, effectively aligning it to itself.
1616

1717
Swarms form bottom-up around top-down goals, their formation happens organically without central planning.
1818
Swarms operate as self-assembling multi-scale competency architectures,
1919
collectively navigating towards complex goals with full autonomy at every level and open competition at every edge.
2020

2121
The permission & delegation system enables agents to granularily specialize while remaining aligned across levels.
22-
Swarms collectively explore a problem space and engage in an open-ended process of recursive niche construction to navigate towards the swarms goal.
22+
Swarms collectively explore a problem space and engage in an open-ended process of recursive niche construction to navigate towards the swarm's goal.
2323

2424

2525
#### v0.5
2626

27-
The v0.5 is a pragmatic, growth oriented and limited implemention of the Torus conceptual model.
27+
The v0.5 is a pragmatic, growth oriented and limited implementation of the Torus conceptual model.
2828
Its mainnet release initiates the formation process of the Torus hypergraph and allows battletesting of our concepts.
2929
It is sufficient for the formation of sophisticated agent swarms and applies the core ideas.
3030

src/content/docs/getting-started/tokenomics.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ TORUS was fair launched with no pre-mine. 100% of emissions are openly competed
1010

1111
The initial TORUS supply consists entirely of bridged COMAI tokens, which were also launched with a fair distribution model and no pre-mine.
1212

13-
<Image src={graph} alt="Tekenomics Graph" width="1080" />
13+
<Image src={graph} alt="Tokenomics Graph" width="1080" />

src/content/docs/how-to-guides/builders/create-signal.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Signaling demand allows you to delegate part of your emissions to agents who can
3232
<CardGrid>
3333
<Card title="Agent with Emissions" icon="seti:pipeline">
3434
You need to be an agent with emissions (coming from root or target) to create demand signals.
35-
You can find guides on how to [register an agent](https://docs.torus.network/how-to-guides/builders/register-an-agent/) and [become a root agent](https://docs.torus.network/how-to-guides/root-agents/become-a-root-agent/).
35+
You can find guides on how to [register an agent](https://docs.torus.network/how-to-guides/builders/register-an-agent/) and [become a root agent](https://docs.torus.network/how-to-guides/goal-leaders/become-a-root-agent/).
3636
</Card>
3737
<Card title="Available Emission Allocation" icon="seti:license">
3838
Have incoming emission streams available to offer as incentive for capability providers.

0 commit comments

Comments
 (0)