Skip to content

Commit 289ba88

Browse files
committed
adds rest of webapps description
1 parent c51504d commit 289ba88

9 files changed

Lines changed: 132 additions & 97 deletions

File tree

astro.config.mjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ export default defineConfig({
7070
{ label: "Torus Portal", slug: "web-apps/torus-portal" },
7171
{ label: "Torus Allocator", slug: "web-apps/torus-allocator" },
7272
{ label: "Torus Wallet", slug: "web-apps/torus-wallet" },
73-
{ label: "Torus Bridge", slug: "web-apps/torus-bridge" },
7473
{ label: "Torus DAO", slug: "web-apps/torus-dao" },
7574
],
7675
},

src/content/docs/concepts/network-overview.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ Weights provide an expressive format for granularly representing the relative va
5252

5353
<CardGrid>
5454
<LinkCard
55-
title="Agent basics"
56-
href="/agents/what-is-a-agent"
55+
title="Concepts"
56+
href="/getting-started/concepts"
5757
description="Learn about the basic concepts of agents."
5858
/>
5959
<LinkCard
60-
title="DAO Basics"
61-
href="/concepts/torus-dao"
60+
title="Governance & DAO"
61+
href="/concepts/governance-dao"
6262
description="Learn the DAO model basics in Torus."
6363
/>
6464
</CardGrid>

src/content/docs/getting-started/setup-wallet.mdx

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,22 @@ For further assistance, you can access detailed tutorials and user guides on the
5555

5656
By following these steps, you can effectively set up and start using your SubWallet to manage, receive, and send assets across multiple blockchain networks, ensuring a secure and efficient digital asset management experience.
5757

58-
## CLI
58+
#### Related Topics
5959

6060
<CardGrid>
61-
<LinkCard href="/cli/key-management" title="Key Operations in CLI" />
62-
<LinkCard
63-
href="/cli/balance-operations"
64-
title=" Balance Operations in CLI"
61+
<LinkCard
62+
title="Key Operations in CLI"
63+
href="/cli/key-management"
64+
description="Learn how to manage your keys in CLI"
65+
/>
66+
<LinkCard
67+
title="Balance Operations in CLI"
68+
href="/cli/balance-operations"
69+
description="Learn how to manage your balance in CLI"
70+
/>
71+
<LinkCard
72+
title="Torus Wallet"
73+
href="/web-apps/torus-wallet"
74+
description="Learn how to manage your wallet in the web app"
6575
/>
6676
</CardGrid>

src/content/docs/v05/permissions.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ The enforcement system creates a sophisticated bridge between on-chain permissio
6565
<CardGrid>
6666
<LinkCard
6767
title="Control Space"
68-
href="/advanced/control-space"
68+
href="/v05/control-space"
6969
description="Understand how control space enables capability instantiation."
7070
/>
7171
<LinkCard
7272
title="Capability Permissions"
73-
href="/advanced/capability-permissions"
73+
href="/v05/capability-permissions"
7474
description="Learn how agents use capability permissions for access controls."
7575
/>
7676
<LinkCard

src/content/docs/web-apps/torus-allocator.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ Total weight allocation must equal 100% or 0%. You can diversify across multiple
5858
- Submit changes through Allocation Menu
5959
- Previous allocations are automatically replaced
6060

61+
#### Related Topics
62+
6163
<CardGrid>
6264
<LinkCard
6365
title="Torus Portal"

src/content/docs/web-apps/torus-bridge.mdx

Lines changed: 0 additions & 44 deletions
This file was deleted.
Lines changed: 57 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,80 @@
11
---
22
title: How to Use Torus DAO
3-
description: Complete guide to participating in Torus DAO governance and voting.
3+
description: Guide to participating in governance, voting on proposals, and managing whitelist applications.
44
---
55

6-
import { Aside, Card, CardGrid, Code, Tabs, TabItem, LinkCard } from "@astrojs/starlight/components";
6+
import { Aside, CardGrid, LinkCard } from "@astrojs/starlight/components";
77

8-
Learn how to participate in Torus DAO governance, vote on proposals, and shape the future of the network.
8+
[Torus DAO](https://dao.torus.network/) is the governance interface for participating in network decisions, voting on proposals, and managing agent whitelisting.
99

10-
## Overview
10+
## Interface Overview
1111

12-
The Torus DAO is the decentralized governance system that allows community members to participate in network decisions, vote on proposals, and manage the treasury.
12+
The DAO page has three main sections:
1313

14-
**Key Features:**
15-
- Vote on governance proposals
16-
- Submit new proposals
17-
- Manage treasury funds
18-
- Participate in network parameter changes
19-
- Review and approve whitelist applications
14+
**Proposals**: View and vote on governance proposals, create new proposals
2015

21-
## Getting Started
16+
**DAO Dashboard**: Network metrics, agent health monitoring, DAO member applications
2217

23-
[Content to be added - detailed explanation of Torus DAO]
18+
**Whitelist Applications**: Review agent whitelist applications, submit new applications
2419

25-
## Creating Proposals
20+
## [Whitelist Applications](https://dao.torus.network/whitelist-applications)
2621

27-
[Content to be added - how to submit governance proposals]
22+
**Viewing Applications**: Browse all whitelist applications (approved, rejected, expired) with search functionality
2823

29-
## Whitelist Applications
24+
**Creating Applications**:
25+
1. Click "Shape the Network" button
26+
2. Select "Whitelist an Agent" from dropdown
27+
3. Fill application form
28+
4. Submit application
3029

31-
[Content to be added - how to review and make a whitelist application]
30+
<Aside type="note">
31+
A valid Discord account is required to apply for whitelist.
32+
</Aside>
3233

33-
## Treasury
34+
## [DAO Dashboard](https://dao.torus.network/dao-dashboard)
3435

35-
[Content to be added - how treasury proposals work]
36+
The dashboard contains three tabs:
3637

38+
**Dashboard Tab**: Network overview including:
39+
- Total registered agents
40+
- Number of whitelisted agents
41+
- Applied penalties count
42+
- DAO applications count
43+
- Agent health statistics
44+
45+
**Agent Health Tab**:
46+
- List all agents with health status
47+
- Search for specific agents
48+
- Filter by health status
49+
- View penalty percentages (penalized agents receive reduced emissions)
50+
51+
**DAO Applications Tab**:
52+
- View applicants for DAO membership
53+
- DAO members can vote on whitelist applications and penalties
54+
55+
## [Proposals](https://dao.torus.network/proposals)
56+
57+
**Viewing Proposals**: Browse all created governance proposals
58+
59+
**Creating Proposals**:
60+
1. Click "Shape the Network" button
61+
2. Select "Create a Proposal" from dropdown
62+
3. Fill proposal form with details
63+
4. Submit for community voting
64+
65+
**Voting**: DAO members can vote to approve/reject proposals and manage network parameters
66+
67+
#### Related Topics
3768

3869
<CardGrid>
3970
<LinkCard
40-
title="Governance & DAO Concepts"
71+
title="Governance & DAO"
4172
href="/concepts/governance-dao"
42-
description="Understand the governance structure and DAO mechanics."
73+
description="Understand governance structure and voting mechanics"
74+
/>
75+
<LinkCard
76+
title="Register a Root Agent"
77+
href="/agents/apply-root-agent"
78+
description="Learn about the root agent application process"
4379
/>
4480
</CardGrid>

src/content/docs/web-apps/torus-portal.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Quick guide to navigating and using the Torus Portal interface for
55

66
import { Aside, CardGrid, LinkCard } from "@astrojs/starlight/components";
77

8-
Torus Portal is the web interface for managing permissions and capabilities. Use it to create delegations, register capabilities, and coordinate with other agents.
8+
[Torus Portal](https://portal.torus.network/) is the web interface for managing permissions and capabilities. Use it to create delegations, register capabilities, and coordinate with other agents.
99

1010
## Interface Overview
1111

@@ -61,6 +61,8 @@ For Capability concepts, see [Capability Permissions](../v05/capability-permissi
6161
Always check dependency warnings before deleting capabilities - you cannot delete capabilities with active delegations.
6262
</Aside>
6363

64+
#### Related Topics
65+
6466
<CardGrid>
6567
<LinkCard
6668
title="Emission Permissions"
Lines changed: 49 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,78 @@
11
---
22
title: How to Use Torus Wallet
3-
description: Complete guide to managing your TORUS tokens and interacting with the network.
3+
description: Guide to managing TORUS tokens, staking, and bridging through the web wallet.
44
---
55

6-
import { Aside, Card, CardGrid, Code, Tabs, TabItem, LinkCard } from "@astrojs/starlight/components";
6+
import { Aside, CardGrid, LinkCard } from "@astrojs/starlight/components";
77

8+
[Torus Wallet](https://wallet.torus.network/) is the web interface for managing your TORUS tokens. Use it to send tokens, stake on allocators, and bridge between networks.
89

9-
Learn how to use the Torus Wallet to manage your tokens, stake, transfer funds, and interact with Torus.
10+
## Interface Overview
1011

11-
## Overview
12+
The wallet has three main sections:
1213

13-
The Torus Wallet is your gateway to Torus, allowing you to manage TORUS tokens, stake on agents, and participate in network activities.
14+
**Wallet**: Send tokens and view transaction history
1415

15-
**Key Features:**
16-
- Send and receive TORUS tokens
17-
- Stake tokens on agents
18-
- View transaction history
16+
**Staking**: Stake/unstake tokens, move stake between allocators, check APY forecasts
1917

20-
## Getting Started
18+
**Bridge**: Bridge tokens between Torus, Torus EVM, and Base networks
2119

22-
[Content to be added - wallet setup and connection]
20+
## [Wallet Operations](https://wallet.torus.network)
2321

24-
## Managing Tokens
22+
**Send Tokens**:
23+
1. Enter recipient address
24+
2. Specify amount to send
25+
3. Confirm and sign transaction
2526

26-
[Content to be added - how to send, receive, and manage TORUS tokens]
27+
**Transaction History**: View all past transactions with details and status
2728

28-
## Staking Operations
29+
## [Staking Operations](https://wallet.torus.network/staking)
2930

30-
[Content to be added - how to stake and unstake tokens on agents]
31+
**Stake Tokens**:
32+
1. Choose allocator from available list
33+
2. Enter stake amount
34+
3. Confirm staking transaction
3135

32-
## Transaction History
36+
**Unstake Tokens**:
37+
1. Select existing stake to unstake
38+
2. Enter amount to unstake
39+
3. Confirm unstaking transaction
3340

34-
[Content to be added - how to view and export transaction history]
41+
**Move Stake**: Transfer stake from one allocator to another
3542

43+
**APY Forecast**: View estimated annual percentage yield for staking
44+
45+
46+
## [Bridge Operations](https://bridge.torus.network)
47+
48+
**Supported Routes**:
49+
- Torus ↔ Torus EVM
50+
- Torus EVM ↔ Base
51+
- Base ↔ Torus EVM
52+
53+
**Bridge Process**:
54+
1. Select source and destination networks
55+
2. Enter amount to bridge
56+
3. Confirm bridge transaction
57+
4. Wait for cross-chain confirmation
58+
59+
60+
<Aside type="note">
61+
Bridge transactions may take several minutes to complete due to cross-chain processing times.
62+
</Aside>
63+
64+
65+
#### Related Topics
3666

3767
<CardGrid>
3868
<LinkCard
3969
title="Setup Wallet"
4070
href="/getting-started/setup-wallet"
41-
description="Learn how to set up your wallet initially."
71+
description="Initial wallet setup and configuration"
4272
/>
4373
<LinkCard
4474
title="Balance Operations"
4575
href="/cli/balance-operations"
46-
description="CLI commands for advanced balance operations."
76+
description="CLI commands for advanced operations"
4777
/>
4878
</CardGrid>

0 commit comments

Comments
 (0)