-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: hide rps and show blockchain integration app (#82)
- Loading branch information
1 parent
d2afee3
commit 0591ad4
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
docs/06-tutorials/07-awesome-projects/02-demo-blockchain-integration.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
id: demo-blockchain-integration | ||
title: Private DAO | ||
--- | ||
|
||
An example application that connects to Calimero Proxy Contract and allows | ||
creating proposals, voting on them, and executing the approved proposals. | ||
|
||
<div style={{display: 'flex', justifyContent: 'center', margin: '2rem' }}> | ||
```mermaid | ||
graph TD | ||
A[Application] -->|Connects to| B[Calimero Proxy Contract] | ||
B -->|Handles| C[Proposals] | ||
C -->|Create| D[New Proposals] | ||
C -->|Approve| E[Proposal Voting] | ||
C -->|Delete| J[Delete Proposal] | ||
E -->|Check Votes| F{Required Votes Met?} | ||
F -->|Yes| G[Execute Proposal] | ||
G -->|Perform Actions| H[Blockchain Operations] | ||
F -->|No| I[Store Vote Count] | ||
``` | ||
</div> | ||
|
||
Full source code is available in our GitHub | ||
[repository](https://github.com/calimero-network/demo-blockchain-integrations). |
File renamed without changes.