Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/add pyth usdt perp mainnet market #270

Merged
merged 2 commits into from
Nov 20, 2023
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 @@ -78,6 +78,9 @@ poetry run pytest -v
```

### Changelogs
**0.9.7**
* Added PYTH/USDT PERP market info in mainnet metadata ini file

**0.9.6**
* Synchronized denom ini files with Indexer information for mainnet, testnet and devnet to include TALIS/INJ and KUJI/USDT markets

Expand Down
9 changes: 9 additions & 0 deletions pyinjective/denoms_mainnet.ini
Original file line number Diff line number Diff line change
Expand Up @@ -682,6 +682,15 @@ min_display_price_tick_size = 0.001
min_quantity_tick_size = 0.1
min_display_quantity_tick_size = 0.1

[0x887beca72224f88fb678a13a1ae91d39c53a05459fd37ef55005eb68f745d46d]
description = 'Mainnet Derivative PYTH/USDT PERP'
base = 0
quote = 6
min_price_tick_size = 100
min_display_price_tick_size = 0.0001
min_quantity_tick_size = 1
min_display_quantity_tick_size = 1

[AAVE]
peggy_denom = peggy0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9
decimals = 18
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "injective-py"
version = "0.9.6"
version = "0.9.7"
description = "Injective Python SDK, with Exchange API Client"
authors = ["Injective Labs <[email protected]>"]
license = "Apache-2.0"
Expand Down
Loading