Overview
A full-featured diagram editor built on DrawIO with Arkiv blockchain storage integration. Create flowcharts, network diagrams, and technical drawings while storing them permanently on-chain with cryptographic security and decentralized access.
How it uses Golem DB
// Save diagram to Arkiv blockchain
const diagramData = {
title: 'Network Architecture',
author: 'user@example.com',
content: mxUtils.getXml(graph.getModel()),
isPublic: true,
description: 'Company network topology'
};
const response = await fetch('/api/diagrams/export', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(diagramData)
});
const result = await response.json();
console.log('Stored on-chain with ID:', result.id);