A GRPC server that provides summarised L1 Market data of multiple crypto exchanges.
- binance
- okx
cargo run --release --bin server -- -p PORT -t TOKEN-PAIR
-p
port to run the server on. default: 7777-t
token pair for which to fetch the MD of. default: ETH-USDT
cargo run --release --bin server -- -p 7777 -t ETH-USDT
The data from the server can be seen through the sample client provided in this repo.
cargo run --release --bin client -p PORT
-p
the port to connect to. default: 7777
cargo run --release --bin client -p 7777