From 798c7608d48bdb182c57121a8b76f175f2774240 Mon Sep 17 00:00:00 2001 From: abel Date: Wed, 29 Nov 2023 23:34:39 -0300 Subject: [PATCH] (feat) Synchronized markets and tokens config files to add SOL/USDT spot market --- README.md | 3 +++ pyinjective/denoms_mainnet.ini | 9 +++++++++ pyproject.toml | 2 +- 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2856de6f..c3b8f8e3 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,9 @@ poetry run pytest -v ``` ### Changelogs +**0.9.10** +* Synchronized markets and tokens config files to add SOL/USDT spot market + **0.9.9** * Synchronized markets and tokens config files to add USDY/USDT and WHALE/USDT spot markets diff --git a/pyinjective/denoms_mainnet.ini b/pyinjective/denoms_mainnet.ini index f3c372ac..af10f0b2 100644 --- a/pyinjective/denoms_mainnet.ini +++ b/pyinjective/denoms_mainnet.ini @@ -574,6 +574,15 @@ min_display_price_tick_size = 0.00001 min_quantity_tick_size = 10000000 min_display_quantity_tick_size = 10 +[0xac938722067b1dfdfbf346d2434573fb26cb090d309b19af17df2c6827ceb32c] +description = 'Mainnet Spot SOL/USDT' +base = 8 +quote = 6 +min_price_tick_size = 0.0001 +min_display_price_tick_size = 0.01 +min_quantity_tick_size = 1000000 +min_display_quantity_tick_size = 0.01 + [0x4ca0f92fc28be0c9761326016b5a1a2177dd6375558365116b5bdda9abc229ce] description = 'Mainnet Derivative BTC/USDT PERP' base = 0 diff --git a/pyproject.toml b/pyproject.toml index ec25d603..504da194 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "injective-py" -version = "0.9.9" +version = "0.9.10" description = "Injective Python SDK, with Exchange API Client" authors = ["Injective Labs "] license = "Apache-2.0"