Skip to content

Commit

Permalink
chore: hide rps and show blockchain integration app (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
MatejVukosav authored Dec 22, 2024
1 parent d2afee3 commit 0591ad4
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
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).

0 comments on commit 0591ad4

Please sign in to comment.