Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@ make tests
```

### Changelogs
**0.8.5**
* Added NEOK/USDT and ORAI/USDT spot markets to the mainnet .ini file

**0.8.4**
* Added methods to SpotMarket, DerivativeMarket and BianaryOptionMarket to translate chain prices and quantities to human-readable format.

Expand Down
26 changes: 26 additions & 0 deletions pyinjective/denoms_mainnet.ini
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,24 @@ min_display_price_tick_size = 9.999999999999999e-05
min_quantity_tick_size = 10000000
min_display_quantity_tick_size = 0.1

[0xe8fe754e16233754e2811c36aca89992e35951cfd61376f1cbdc44be6ac8d3fb]
description = 'Mainnet Spot NEOK/USDT'
base = 18
quote = 6
min_price_tick_size = 0.0000000000000001
min_display_price_tick_size = 9.999999999999999e-05
min_quantity_tick_size = 100000000000000000
min_display_quantity_tick_size = 0.1

[0xa04adeed0f09ed45c73b344b520d05aa31eabe2f469dcbb02a021e0d9d098715]
description = 'Mainnet Spot ORAI/USDT'
base = 6
quote = 6
min_price_tick_size = 0.0001
min_display_price_tick_size = 9.999999999999999e-05
min_quantity_tick_size = 100000
min_display_quantity_tick_size = 0.1

[0x4ca0f92fc28be0c9761326016b5a1a2177dd6375558365116b5bdda9abc229ce]
description = 'Mainnet Derivative BTC/USDT PERP'
base = 0
Expand Down Expand Up @@ -680,3 +698,11 @@ decimals = 8
[NBLA]
peggy_denom = factory/inj1d0zfq42409a5mhdagjutl8u6u9rgcm4h8zfmfq/nbla
decimals = 6

[NEOK]
peggy_denom = ibc/F6CC233E5C0EA36B1F74AB1AF98471A2D6A80E2542856639703E908B4D93E7C4
decimals = 18

[ORAI]
peggy_denom = ibc/C20C0A822BD22B2CEF0D067400FCCFB6FAEEE9E91D360B4E0725BD522302D565
decimals = 6
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
EMAIL = "achilleas@injectivelabs.com"
AUTHOR = "Injective Labs"
REQUIRES_PYTHON = ">=3.9"
VERSION = "0.8.4"
VERSION = "0.8.5"

REQUIRED = [
"aiohttp",
Expand Down