Skip to content

Commit 17ea1c2

Browse files
committed
docs: _
1 parent 62eaa4e commit 17ea1c2

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,17 @@ cargo run -p v_exchanges --example binance_market
4646
- [crypto-botters](<https://github.com/negi-grass/crypto-botters>), from where I stole the entire `generic-api-client` (as `v_exchanges_api_generics`).
4747
- [binance-rs](<https://github.com/wisespace-io/binance-rs>), which provided a cheat-sheet for so many binance interactions and best-practices on testing.
4848

49+
## Conventions
50+
Purely usage guidance, writing for myself to standardise interfacing with the library across my projects wherever possible.
51+
List acronyms / other conventions that are preferred when interfacing with the library.
52+
53+
### Exchange names
54+
Binance: `bn`
55+
Bybit: `bb`
56+
Bitflyer: `bf`
57+
Coincheck: `ch`
58+
59+
4960

5061
<br>
5162

v_exchanges/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
pub extern crate v_exchanges_adapters as adapters;
2+
13
pub mod core;
24

35
pub mod binance;

0 commit comments

Comments
 (0)