Go to file
microwavedcola1 4a2f0e26da fix key loading
Signed-off-by: microwavedcola1 <microwavedcola@gmail.com>
2021-09-24 13:56:27 +02:00
mango-service-v3 fix key loading 2021-09-24 13:56:27 +02:00
py update docs 2021-09-23 22:42:56 +02:00
.gitignore update 2021-09-23 22:34:23 +02:00
README.md update readme 2021-09-24 09:27:11 +02:00

README.md

Introduction

REST API Service for mango markets version 3, and some simple clients and examples.

Aim

Aimed to follow spec as close as possible to popular exchanges like ftx, etc.

Motivation

Traders should be able to bring their existing tools to mango markets.

Note

REST Service requires user to run a local copy with his/her own private key. An alternative approach which is known and was not taken is to prepare solana transactions in a centrally hosted REST API Service and send back to client for signing with his wallet.

Documentation

See https://microwavedcola1.github.io/mango-service-v3/#tag/default

Directory structure

.
├── README.md
├── mango-service-v3 - REST API Service for mango markets version 3
└── py               - python3 client for above REST API Service

Contributing

See Todos

Todos

Small

losely sorted in order of importance/priority

  • rpc node related issues
    • how to ensure that order has been placed or definitely not placed?
    • off chain services might use other nodes, mixing data from various nodes, what if one node is behind?
  • missing endpoints
    • stop loss,
    • market orders
    • modify order
    • funding rates
    • withdraw
    • funding payments
  • advanced order types e.g. split
  • populate still undefined fields in various endpoints
  • cache various mango related things which change infrequently like e.g. spot+perp markets, placed orders for user, etc.
  • identify which endpoints are still slow, comparison with ftx, you can use https://ftx.com/latency-stats to see how long your orders are taking to get through FTXs engines (usually ~50ms), or just measure the time it takes a response to be received for your request for round trip time. FTX CLI isnt focussed on being the absolute fastest, so you wont be competing with HFT firms. FTX recommends AWS Tokyo as your trading instance base for the lowest latencies.
  • todos sprinkled over code
  • when null vs when undefined as return field value,- doublecheck for every endpoint/dto
  • serum-history might be decomissioned, seek replacement
  • how often to load/reload certain mango things e.g. account, cache, rootbanks, etc.?
  • technical debt
    • cleanup tsconfig.json
    • add pre commit tools e.g. husky/pre-commit for code formatting and linting

Large

Community feedback