Skip to content

/network/tech-stack

Tech-Stack

Built for real money at real speed. From event to action to settlement in seconds with auditability and privacy by default.

Ebenen
04
layer · graph

Graph-Engine

Advanced graph database capabilities with temporal queries, spatial relationships, and sophisticated algorithms for financial network analysis.

  1. 01

    Temporale Abfragen

    Query graph state at any point in time using PoH timestamps

    MATCH (m:Member)-[r:VALIDATES]->(t:Transaction)
    WHERE r.timestamp >= datetime('2024-01-01')
      AND r.pohSlot > 123456789
    RETURN m, r, t
    ORDER BY r.pohSlot DESC
  2. 02

    Räumliche Beziehungen

    Berechnung geografischer und netzwerkbasierter Nähe

    MATCH (m1:Member)-[:LOCATED_IN]->(c1:Country),
    	  (m2:Member)-[:LOCATED_IN]->(c2:Country)
    WHERE distance(c1.coordinates, c2.coordinates) < 1000
    RETURN m1, m2, distance(c1.coordinates, c2.coordinates) as km
  3. 03

    Graph-Algorithmen

    Kürzester Pfad, Community-Erkennung und Zentralitätsmaße

    CALL gds.shortestPath.dijkstra.stream('arbitrage-graph', {
      sourceNode: id(startCurrency),
      targetNode: id(endCurrency),
      relationshipWeightProperty: 'exchangeRate'
    })
    YIELD sourceNode, targetNode, path, totalCost