Dev docs +

This commit is contained in:
koalasat
2025-06-27 17:32:51 +02:00
parent 6851f3bdba
commit 89c0fcade5
3 changed files with 18 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 288 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 131 KiB

View File

@ -17,3 +17,19 @@ The `Federation` stores information from all available coordinators. A `Coordina
<div align="center">
<img src="/development/assets/federation.png" width="500px">
</div>
### Coordinator
A `Coordinator` contains the main data obtained from its main API endpoints: `/api/book`, `/api/limits` and `/api/info` and provides functions for any necesary API call on this matter.
<div align="center">
<img src="/development/assets/coordinator.png" width="300px">
</div>
### Order
An `Order` contains the details obtained from the coordinator hosting it and all necessary functions to interact with it. The client also has the concept of `MakerForm`, which is none other than the necessary data for order creation before it is sent to the selected coordinator.
<div align="center">
<img src="/development/assets/order.png" width="300px">
</div>