Skip to content

/network/tech-stack

Stos technologiczny

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

Warstwy
04
layer · graph

Silnik grafowy

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

  1. 01

    Zapytania czasowe

    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

    Relacje przestrzenne

    Obliczenia bliskości geograficznej i sieciowej

    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

    Algorytmy grafowe

    Najkrótsza ścieżka, wykrywanie społeczności i miary centralności

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